Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

axiom-design公理设计

Agent Skill

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

总安装

3,090

周安装

125

GitHub Stars

873

下载量

970
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/charleswiltgen/axiom --skill axiom-design

简介

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化,适合让 Agent 生成 UI 方案或检查视觉一致性。

  • 适用于 HIG 合规性审查、Liquid Glass 效果实现、SF Symbols 使用及跨版本设计适配等前端设计场景。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令添加指定技能,需结合原始 README 进一步确认具体用法。
  • 使用时需结合现有品牌和设计系统,避免仅堆砌装饰元素;涉及真实页面改动时应通过截图或浏览器预览检查表现。
  • axiom-design 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Design & HIG

You MUST use this skill for ANY visual design, HIG compliance, Liquid Glass, SF Symbols, typography, or app composition work.

Quick Reference

Symptom / TaskReference
Design decisions, HIG compliance, colors, backgroundsSee skills/hig.md
Semantic colors, custom color patterns, material stylesSee skills/hig-ref.md
Liquid Glass effects, adoption, migration from blur effectsSee skills/liquid-glass.md
App-wide Liquid Glass adoption, backward compatibilitySee skills/liquid-glass-ref.md
SF Symbols rendering modes, effects, animationsSee skills/sf-symbols.md
SF Symbols API signatures, UIKit equivalents, availabilitySee skills/sf-symbols-ref.md
San Francisco fonts, text styles, Dynamic Type, trackingSee skills/typography-ref.md
App entry points, auth flows, root view switching, scene lifecycleSee skills/app-composition.md

Decision Tree

digraph design {
    start [label="Design task" shape=ellipse];
    what [label="What do you need?" shape=diamond];

    start -> what;
    what -> "skills/hig.md" [label="design decision,\nHIG compliance,\ncolor/background choice"];
    what -> "skills/hig-ref.md" [label="semantic color API,\ncustom color code,\nmaterial style details"];
    what -> "skills/liquid-glass.md" [label="Liquid Glass effects,\nmigrate from blur,\nRegular vs Clear"];
    what -> "skills/liquid-glass-ref.md" [label="app-wide Liquid Glass plan,\nplatform differences,\nbackward compat"];
    what -> "skills/sf-symbols.md" [label="rendering mode choice,\nsymbol effects/animations,\ncustom symbols"];
    what -> "skills/sf-symbols-ref.md" [label="SF Symbols API syntax,\nUIKit equivalents,\navailability matrix"];
    what -> "skills/typography-ref.md" [label="font selection,\nDynamic Type,\ntext styles, tracking"];
    what -> "skills/app-composition.md" [label="@main entry point,\nauth flow, root view,\nscene lifecycle"];
}
  1. Design decision / HIG compliance / choosing colors or backgrounds? → skills/hig.md 1a. Need semantic color API, custom color code, or material style details? → skills/hig-ref.md
  2. Liquid Glass effects / migrating from blur / Regular vs Clear variant? → skills/liquid-glass.md 2a. Planning app-wide Liquid Glass adoption / platform differences / backward compatibility? → skills/liquid-glass-ref.md
  3. SF Symbols rendering mode / symbol effects / custom symbols? → skills/sf-symbols.md 3a. Need SF Symbols API syntax / UIKit equivalents / availability check? → skills/sf-symbols-ref.md
  4. Font selection / Dynamic Type / text styles / tracking / leading? → skills/typography-ref.md
  5. App entry point / auth flow / root view switching / scene lifecycle? → skills/app-composition.md
  6. SwiftUI view implementation? → /skill axiom-swiftui
  7. TextKit / rich text editing / Writing Tools? → /skill axiom-uikit
  8. Accessibility compliance (VoiceOver, contrast, touch targets)? → /skill axiom-accessibility
  9. Audit UI for Liquid Glass adoption? → liquid-glass-auditor (Agent)
  10. CarPlay app design, categories, driver-distraction rules? → /skill axiom-media (carplay-hig.md)

Platform-specific HIG

  • watchOS design (glanceable UI, watchOS 10 navigation) → See axiom-watchos (skills/design-for-watchos.md)

Conflict Resolution

design vs swiftui: When building UI:

  1. Use design FIRST — Decide what to build (colors, materials, typography, layout intent) before how to build it.
  2. Then use swiftui — Implement the design decision in SwiftUI code.

design vs accessibility: When choosing colors or typography:

  • Color contrast or Dynamic Type compliance? → use accessibility
  • Which semantic color or text style to pick? → use design

design (liquid-glass) vs swiftui: When implementing Liquid Glass:

  • What Liquid Glass is, when to use Regular vs Clear, migration strategy → use design (skills/liquid-glass.md)
  • SwiftUI code for .glassEffect() modifier → use design (skills/liquid-glass-ref.md), then swiftui for surrounding view code

design (app-composition) vs swiftui: When structuring app architecture:

  • @main entry, auth state machine, root view switching, scene lifecycle → use design (skills/app-composition.md)
  • NavigationStack, NavigationSplitView, tab structure → use swiftui

design vs media (CarPlay): When designing for CarPlay:

  • General iOS HIG principles (colors, typography, Liquid Glass) → use design
  • CarPlay-specific rules (app categories, entitlement review, template-only UI, driver distraction, per-category design rules) → invoke axiom-media (skills/carplay-hig.md)
  • CarPlay rules are stricter than iOS HIG and enforced at entitlement review, not just App Store review.

Critical Patterns

HIG Quick Decisions (skills/hig.md):

  • Background color decision tree (media-focused vs standard)
  • Typography selection (headline vs body vs caption)
  • Color usage guidelines and when to use semantic vs custom colors
  • Design review checklist for HIG compliance

HIG Comprehensive Reference (skills/hig-ref.md):

  • All semantic colors with platform availability
  • Custom color patterns with dark mode support
  • Background hierarchy and material styles
  • Code examples for every color and background pattern

Liquid Glass (skills/liquid-glass.md):

  • What Liquid Glass is and how it differs from blur effects
  • Regular vs Clear variant selection
  • Migration strategy from pre-iOS 26 materials
  • Tinting, legibility, and adaptive behavior troubleshooting
  • Expert review criteria for Liquid Glass implementations

Liquid Glass Adoption (skills/liquid-glass-ref.md):

  • App-wide adoption planning (icons, controls, navigation, menus)
  • Platform-specific behavior (iOS, iPadOS, macOS, tvOS, watchOS)
  • Backward compatibility strategy for supporting pre-Liquid Glass
  • Accessibility compliance with Liquid Glass interfaces

SF Symbols (skills/sf-symbols.md):

  • Rendering mode selection (Monochrome, Hierarchical, Palette, Multicolor)
  • Symbol effect selection (Bounce, Pulse, Scale, Wiggle, Rotate, Breathe, Draw)
  • Custom symbol creation workflow
  • Troubleshooting effects not playing, weight mismatches

SF Symbols API (skills/sf-symbols-ref.md):

  • Exact API signatures for rendering modes and effects
  • UIKit/AppKit equivalents for every SwiftUI symbol API
  • Platform availability matrix
  • Configuration options (weight, scale, variable values)

Typography (skills/typography-ref.md):

  • San Francisco font system (Pro, Compact, Mono, New York)
  • Text styles with Dynamic Type scaling
  • Tracking and leading values
  • Internationalization considerations

App Composition (skills/app-composition.md):

  • @main entry point and root view patterns
  • Authentication state machine (login, onboarding, main)
  • Flicker-free root view switching
  • scenePhase lifecycle handling and state restoration

Anti-Rationalization

ThoughtReality
"I'll just pick colors that look good"Semantic colors adapt to dark mode, accessibility settings, and platform automatically. Custom colors need all of that manually. skills/hig.md has the decision tree.
"Liquid Glass is just a blur effect"Liquid Glass is a distinct material system with lensing, tinting, and adaptive behavior. Using .blur() instead creates a visually wrong result. skills/liquid-glass.md explains the difference.
"I know which SF Symbol rendering mode to use"The right mode depends on context (monochrome for toolbars, hierarchical for depth, palette for brand colors). skills/sf-symbols.md has the decision tree.
"I'll hardcode font sizes"Hardcoded sizes break Dynamic Type, violate HIG, and fail accessibility review. skills/typography-ref.md shows the text style system.
"I'll handle auth state with a boolean"A boolean can't represent login, onboarding, and main states without race conditions. skills/app-composition.md has the state machine pattern.
"Liquid Glass adoption means rewriting my whole UI"Most standard SwiftUI/UIKit components adopt automatically. Start by building with latest Xcode, then review. skills/liquid-glass-ref.md has the incremental strategy.
"I'll add the SF Symbol animation later"Symbol effects are the primary way users perceive interactive feedback. Shipping without them feels broken. skills/sf-symbols.md covers selection.
"I'll skip the design review, the code works"HIG compliance affects App Store review. Reviewers reject apps that feel wrong even if they function correctly. skills/hig.md has the review checklist.

Example Invocations

User: "Should I use a dark or light background?" -> Read: skills/hig.md

User: "What semantic color should I use for secondary text?" -> Read: skills/hig-ref.md

User: "How do I implement Liquid Glass in my app?" -> Read: skills/liquid-glass.md

User: "I need to plan Liquid Glass adoption across my whole app" -> Read: skills/liquid-glass-ref.md

User: "My SF Symbol is flat, I want it to have depth" -> Read: skills/sf-symbols.md

User: "What's the SwiftUI API for symbol effects?" -> Read: skills/sf-symbols-ref.md

User: "Which font should I use for body text?" -> Read: skills/typography-ref.md

User: "How do I switch between login and main screens?" -> Read: skills/app-composition.md

User: "Check my app's UI for HIG compliance" -> Read: skills/hig.md, then /skill axiom-accessibility for contrast/Dynamic Type

User: "I want my download button icon to animate" -> Read: skills/sf-symbols.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

35.11%
按下载量换算341

Claude

28.12%
按下载量换算273

Cursor

18.84%
按下载量换算183

Gemini CLI

8.85%
按下载量换算86

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills