用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jmagly/aiwg --skill install-plugin命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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 | install-plugin |
| platforms | ["all"] |
| description | Install Claude Code marketplace plugins or route local/Git wrappers through the supported package workflow |
You install a Claude Code marketplace plugin. In AIWG vocabulary, a plugin is a delivery wrapper around an extension, addon, or framework, not a separate content type. You handle registry lookup, download, and local deployment.
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
| Pattern | Example | Action |
|---|---|---|
| Install plugin | "install plugin sdlc@aiwg" | Run aiwg install-plugin sdlc@aiwg |
| Add plugin | "add plugin voice@aiwg" | Run aiwg install-plugin voice@aiwg |
| Plugin install | "plugin install marketing@aiwg" | Run aiwg install-plugin marketing@aiwg |
| Claude Code plugin | "install claude code plugin utils" | Run aiwg install-plugin utils@aiwg |
| Dry run | "show me what installing sdlc would do" | Run aiwg install-plugin sdlc@aiwg --dry-run |
| Specific version | "install sdlc version 2026.3.0" | Run aiwg install-plugin sdlc@aiwg@2026.3.0 |
| Local wrapper | "install this local plugin wrapper" | Run aiwg install <path> --dry-run, then aiwg use <plugin-id> |
| Git wrapper | "install this plugin Git URL" | Run aiwg install <git-url> --dry-run, then aiwg use <plugin-id> |
When triggered:
Extract intent:
@scope)Run the appropriate command:
# Install from AIWG marketplace (default scope)
aiwg install-plugin sdlc@aiwg
aiwg install-plugin voice@aiwg
aiwg install-plugin marketing@aiwg
aiwg install-plugin utils@aiwg
# Install a specific version
aiwg install-plugin sdlc@aiwg@2026.3.0
# Preview what would be installed
aiwg install-plugin sdlc@aiwg --dry-run
# Force reinstall even if already installed
aiwg install-plugin sdlc@aiwg --force
# Standalone local/Git wrappers use the package installer, not the legacy
# manifest-only install-plugin backend.
aiwg install ./path/to/wrapper --dry-run
aiwg install https://example.invalid/owner/wrapper.git --dry-run
aiwg use <plugin-id>
Report the result — name the installed marketplace wrapper and confirm which agents, skills, commands, and rules were deployed and where.
| Package | Payload | Use Case |
|---|---|---|
sdlc@aiwg | 58 agents, 42 commands, SDLC workflows | Full software development lifecycle |
voice@aiwg | Voice profiles, soul system | Content style and persona management |
marketing@aiwg | Marketing agents, campaigns, media | Marketing operations framework |
utils@aiwg | Core utility skills and rules | Foundational cross-framework utilities |
.claude/agents/.claude/commands/.claude/skills/.claude/rules/User: "Install the SDLC plugin"
Extraction: Plugin name is sdlc, scope is aiwg
Action:
aiwg install-plugin sdlc@aiwg
Response: "Installed sdlc@aiwg v2026.3.15. Deployed 58 agents to .claude/agents/, 42 commands to .claude/commands/, 12 skills to .claude/skills/, 33 rules to .claude/rules/."
User: "What would installing the voice plugin add?"
Extraction: Dry-run for voice plugin
Action:
aiwg install-plugin voice@aiwg --dry-run
Response: "Dry run — voice@aiwg v2026.3.15 would add: 6 voice profiles to .claude/skills/voices/, 4 soul system skills, 2 rules. No changes made."
User: "The SDLC plugin seems broken, reinstall it"
Extraction: Force reinstall of sdlc
Action:
aiwg install-plugin sdlc@aiwg --force
Response: "Force reinstalled sdlc@aiwg. All 58 agents and 42 commands redeployed cleanly."
If the plugin name is ambiguous:
sdlc@aiwg? Run aiwg catalog list to see all available plugins."