Token导航 LogoToken导航TokenDH.com
前端设计只读unknown未标认证来源可访问许可证需确认审计未展示

apple-designApple 设计

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

791

周安装

32

下载量

248
Local Agent

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:apple-design(Apple 设计)
来源仓库:https://smithery.ai
仓库路径:apple-design
安装命令:
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

用于辅助界面设计、视觉规范和交互体验优化,提供 Apple 设计语言指导。

  • 适合在 Local Agent 中生成 UI 方案、检查视觉一致性或改进组件层级。
  • 使用时需结合品牌规范和设计系统,避免堆砌装饰元素;页面改动应通过截图或预览验证效果。
  • 安装方式未知,建议核实来源仓库和实际功能后再使用。
  • apple-design 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Apple Design System

Create stunning, modern UI designs inspired by Apple's design language. This design system provides guidelines, components, and patterns for building clean, minimalist interfaces with attention to detail, smooth animations, and premium aesthetics.

When to Use This Skill

Use this skill when:

  • Designing portfolio websites or personal sites
  • Creating landing pages or product showcases
  • Implementing hero sections with visual impact
  • Building card-based layouts for projects or products
  • Adding glassmorphism or frosted glass effects
  • Implementing smooth, delightful animations
  • Creating dark mode compatible designs
  • Designing navigation bars, modals, or forms
  • Building contact forms or call-to-action sections
  • Working with modern CSS features (backdrop-filter, gradients, shadows)

Quick Start

1. Core Design Principles

Minimalism: Remove unnecessary elements, focus on content Typography: Large, bold headlines with system fonts Colors: Neutral base with strategic accent colors Spacing: 8px grid system with generous whitespace Effects: Glassmorphism, soft shadows, smooth animations Imagery: High-quality, properly sized images

📖 Detailed guide: design-principles.md

2. Color System

/* Light Mode */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f7;
  --text-primary: #1d1d1f;
  --text-secondary: #86868b;
  --accent-blue: #0071e3;
  --accent-green: #30d158;
  --border-color: rgba(0, 0, 0, 0.1);
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #000000;
    --bg-secondary: #1d1d1f;
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --accent-blue: #0a84ff;
    --border-color: rgba(255, 255, 255, 0.1);
  }
}

📖 Complete palette: color-system.md

3. Typography

/* System font stack */
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display',
             'Segoe UI', sans-serif;

/* Fluid responsive typography */
h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

📖 Typography system: typography-system.md

4. Spacing

Use 8px-based spacing scale:

:root {
  --space-2: 0.5rem;   /* 8px */
  --space-4: 1rem;     /* 16px */
  --space-6: 1.5rem;   /* 24px */
  --space-8: 2rem;     /* 32px */
  --space-12: 3rem;    /* 48px */
  --space-16: 4rem;    /* 64px */
  --space-24: 6rem;    /* 96px */
}

Core Components

Hero Section

<section class="hero">
  <div class="hero-content">
    <h1 class="hero-title">
      Hi, I'm <span class="gradient-text">Your Name</span>
    </h1>
    <p class="hero-subtitle">Developer creating amazing experiences</p>
    <div class="hero-actions">
      <button class="btn btn-primary">View Work</button>
      <button class="btn btn-secondary">Contact</button>
    </div>
  </div>
</section>

Glass Card

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

Project Card

.project-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-secondary);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

Navigation Bar

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

Buttons

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 980px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
}

.btn-primary {
  background: var(--accent-blue);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 113, 227, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
  background: var(--accent-blue);
  color: white;
}

📖 All components: components-reference.md

Animations

Hover Effects

/* Lift effect */
.hover-lift {
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

/* Image zoom */
.image-zoom {
  transition: transform 600ms ease;
}

.card:hover .image-zoom {
  transform: scale(1.05);
}

Entrance Animations

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 600ms ease-out;
}

📖 Animation patterns: animation-guide.md

AI Assistant Instructions

When this skill is activated for Apple-inspired design:

1. Always Prioritize

  • Clean, minimalist aesthetics
  • Generous whitespace and breathing room
  • Smooth, delightful animations (300-600ms)
  • Dark mode compatibility
  • Responsive design (mobile-first)
  • Accessibility (WCAG AA minimum)

2. Component Creation Workflow

  1. Start with semantic HTML structure
  2. Apply modern CSS (flexbox, grid, custom properties)
  3. Add glassmorphism for cards and overlays where appropriate
  4. Implement hover states with subtle transitions
  5. Ensure dark mode support using CSS custom properties
  6. Test responsiveness at mobile, tablet, desktop breakpoints

3. Styling Approach

  • Use CSS variables for all colors and spacing
  • Apply system font stack for typography
  • Implement soft shadows for depth (layered shadows)
  • Add smooth transitions with proper easing
  • Use clamp() for fluid typography
  • Follow 8px spacing grid consistently

4. Never Do

  • Use overly complex animations
  • Ignore responsive design
  • Sacrifice accessibility for aesthetics
  • Use outdated CSS patterns (floats,!important)
  • Forget dark mode considerations
  • Animate width/height (use transform instead)

5. For Portfolio Sites Specifically

  • Create impactful hero sections with large typography and gradients
  • Design project cards with image zoom on hover
  • Build clean navigation with blur effects
  • Implement smooth scroll reveal animations
  • Add contact forms with modern, accessible inputs
  • Use glassmorphism strategically for visual interest

6. Code Quality Standards

  • Write clean, well-commented code
  • Use modern CSS features (grid, clamp, custom properties)
  • Optimize for performance (GPU-accelerated properties only)
  • Follow accessibility guidelines (ARIA, keyboard navigation, focus states)
  • Provide both light and dark mode styles
  • Use semantic HTML elements

7. When Suggesting Designs

  • Provide complete, working code examples
  • Include both HTML/JSX and CSS
  • Show responsive variations (mobile, tablet, desktop)
  • Demonstrate hover/active states
  • Include accessibility considerations (focus states, ARIA labels)
  • Reference templates from the templates/ folder when applicable

8. Reference Documentation

When users need detailed information, direct them to:

9. Templates Available

Ready-to-use templates in ../../../.shared/skills/apple-design/templates/ folder:

  • hero-section.html - Full-screen hero with gradient
  • project-card.html - Project showcase cards with hover effects

Pre-built examples in ../../../.shared/skills/apple-design/examples/ folder:

  • color-palette.css - Complete color system with utilities
  • animations.css - Animation library with all patterns

Best Practices

Performance

  • ✅ Animate only transform and opacity
  • ✅ Use will-change sparingly
  • ✅ Optimize images (WebP, lazy loading)
  • ✅ Minimize backdrop-filter usage
  • ❌ Avoid animating width, height, top, left

Accessibility

  • ✅ Maintain 4.5:1 contrast ratio for text
  • ✅ Provide focus indicators (2px outline, 2px offset)
  • ✅ Use semantic HTML
  • ✅ Add ARIA labels for icon-only buttons
  • ✅ Respect prefers-reduced-motion
  • ✅ Minimum touch target: 44x44px

Responsive Design

  • ✅ Mobile-first approach
  • ✅ Use clamp() for fluid typography
  • ✅ Flexible grid layouts with auto-fit or auto-fill
  • ✅ Test on real devices
  • ✅ Breakpoints: 640px (sm), 768px (md), 1024px (lg), 1280px (xl)

Code Organization

  • ✅ Use CSS variables for theme values
  • ✅ Organize styles by component
  • ✅ Keep specificity low (avoid nesting > 3 levels)
  • ✅ Document complex calculations
  • ✅ Group related properties (positioning, box model, typography, visual)

Quick Reference

Shadow Scale

--shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 4px rgba(0,0,0,0.04);
--shadow-md: 0 4px 12px rgba(0,0,0,0.08);
--shadow-lg: 0 8px 24px rgba(0,0,0,0.08), 0 16px 32px rgba(0,0,0,0.08);
--shadow-xl: 0 24px 48px rgba(0,0,0,0.12);

Border Radius Scale

--radius-sm: 8px;
--radius-md: 12px;
--radius-lg: 16px;
--radius-xl: 20px;
--radius-2xl: 24px;
--radius-full: 9999px;

Animation Duration

--duration-fast: 150ms;    /* Micro-interactions */
--duration-base: 300ms;    /* Standard transitions */
--duration-slow: 500ms;    /* Complex animations */

Easing Functions

--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
--ease-out: cubic-bezier(0, 0, 0.2, 1);
--ease-in: cubic-bezier(0.4, 0, 1, 1);

Resources

Official Apple Resources

Useful Tools

Internal Documentation


Remember: Apple's design philosophy is about removing the unnecessary to let the essential shine. Every element should serve a purpose. Keep it simple, elegant, and focused on the user's needs.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Local Agent

94.19%
按下载量换算234

安全审计

暂无安全审计结果可展示。

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills