用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jmagly/aiwg --skill smith-agenticdef命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
WCAG accessibility analysis for color palettes including contrast ratios, compliance checking, and remediation suggestions. Use when user needs to verify colors meet accessibility standards.
Generate, analyze, compare, export, and suggest color palettes using color theory. Use when user asks about colors, palettes, color schemes, or needs help choosing colors for a project.
Research current color trends from Pantone, architecture, film, and design. Use when user asks about trending colors, popular palettes, or wants research-backed color inspiration.
基于 SOC 职业分类
正在显示 SKILL.md
| namespace | aiwg |
| name | smith-agenticdef |
| platforms | ["all"] |
| description | Generate or update the agentic environment definition for AgentSmith, SkillSmith, and CommandSmith |
| commandHint | {"argumentHint":"[--verify-only] [--update] [--interactive] [--guidance \"text\"]","allowedTools":"Read, Write, Glob, Bash","model":"haiku","category":"smithing","modelRole":"efficiency","modelTier":"economy"} |
Generate the agentic environment definition file that describes the platform's capabilities for creating agents, skills, and commands.
This command probes the current agentic platform and generates .aiwg/smiths/agentic-definition.yaml which is used by:
| Argument | Description |
|---|---|
--verify-only | Check existing definition without updating |
--update | Update existing definition with any changes |
Determine the agentic platform by checking for platform-specific directories:
Platform Detection Priority:
1. .claude/ → Claude Code
2. .factory/ → Factory AI
3. .github/agents/ → GitHub Copilot
4. .cursor/ → Cursor
5. .codex/ → OpenAI Codex
For Claude Code:
.claude/agents/ exists.claude/commands/ exists.claude/skills/ existsCheck platform configuration for supported models:
haiku - Fast, simple taskssonnet - Balanced (default)opus - Complex reasoningStandard tool set:
Create .aiwg/smiths/agentic-definition.yaml:
# Agentic Environment Definition
# Generated by /smith-agenticdef
# Last updated: {timestamp}
platform:
provider: claude
version: "{detected_version}"
detected_at: "{timestamp}"
agent_config:
models:
- haiku
- sonnet
- opus
default_model: sonnet
tools:
available:
- Read
- Write
- MultiEdit
- Bash
- Glob
- Grep
- WebFetch
- WebSearch
- Task
- TodoWrite
orchestration_default:
- Task
- Read
- Write
- Glob
- TodoWrite
skill_config:
supported: true
Ensure Smith directories exist:
mkdir -p .aiwg/smiths/agentsmith/specs
mkdir -p .aiwg/smiths/skillsmith/specs
mkdir -p .aiwg/smiths/commandsmith/specs
Create catalog files if they don't exist:
.aiwg/smiths/agentsmith/catalog.yaml.aiwg/smiths/skillsmith/catalog.yaml.aiwg/smiths/commandsmith/catalog.yamlAgentic Definition Generated
============================
Platform: Claude Code
Version: 2025.12
Agent Configuration:
Models: haiku, sonnet, opus
Tools: 10 available
Deployment: .claude/agents/
Skill Configuration:
Supported: Yes
Structure: directory/SKILL.md
Deployment: .claude/skills/
Command Configuration:
Supported: Yes
Categories: 5
Deployment: .claude/commands/
Files Created:
✓ .aiwg/smiths/agentic-definition.yaml
✓ .aiwg/smiths/agentsmith/catalog.yaml
✓ .aiwg/smiths/skillsmith/catalog.yaml
✓ .aiwg/smiths/commandsmith/catalog.yaml
With --verify-only, check existing definition:
Verifying Agentic Definition
============================
Definition: .aiwg/smiths/agentic-definition.yaml
Status: Valid
Platform Match: ✓ claude
Agent Paths: ✓ .claude/agents/ exists
Skill Paths: ✓ .claude/skills/ exists
Command Paths: ✓ .claude/commands/ exists
Catalogs:
AgentSmith: ✓ 0 artifacts
SkillSmith: ✓ 0 artifacts
CommandSmith: ✓ 0 artifacts
| Error | Resolution |
|---|---|
| No platform detected | Create .claude/ directory or specify platform |
| Missing deployment directory | Create directory or check permissions |
| Invalid existing definition | Use --update to regenerate |