用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jmagly/aiwg --skill aiwg-init命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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
| name | aiwg-init |
| namespace | aiwg |
| platforms | ["all"] |
| description | Initialize AIWG configuration for an existing project by creating .aiwg/aiwg.config with provider and script entries |
You initialise AIWG configuration for an existing project by creating .aiwg/aiwg.config with provider registry entries and custom script definitions.
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
.aiwg/aiwg.config| Pattern | Example | Action |
|---|---|---|
| Default init | "aiwg init" | Run aiwg init with defaults |
| Interactive | "init aiwg interactively" | Run aiwg init --interactive |
| Provider flag | "init aiwg for copilot" | Run aiwg init --provider copilot |
| Config check | "do I have an aiwg config?" | Read .aiwg/aiwg.config |
When triggered:
Distinguish from new:
init adds AIWG configuration to an existing project — it does not create a new project directory or the full .aiwg/ subdirectory tree..aiwg/ directory at all, suggest aiwg new . instead.Extract arguments:
--interactive requested? If so, ask which providers to configure and which scripts to register.--provider given? Pre-fill that entry in the registry.--interactive absent? Write a minimal config with the detected provider.Run the appropriate command:
# Default: write minimal config, auto-detect provider
aiwg init
# Interactive: guided wizard for providers and scripts
aiwg init --interactive
# Pre-configure a specific provider
aiwg init --provider copilot
What the command creates — .aiwg/aiwg.config with:
providers block: list of configured provider names and their deploy pathsscripts block: named shell commands for use with aiwg runReport the result — confirm path written and show the generated config summary.
User: "aiwg init"
Extraction: No flags, auto-detect provider (claude-code)
Action:
aiwg init
Response: "Created .aiwg/aiwg.config with provider claude-code pre-configured. No scripts registered yet. Use aiwg init --interactive to add providers or scripts, or edit the file directly."
User: "Set up AIWG config interactively"
Extraction: Interactive flag required
Action:
aiwg init --interactive
Response: Wizard prompts for providers to enable and scripts to register, then writes .aiwg/aiwg.config. Confirms: "Configured 2 providers (claude-code, copilot) and 3 scripts (test, lint, deploy). Config written to .aiwg/aiwg.config."
User: "Init aiwg config for GitHub Copilot"
Extraction: Provider copilot specified
Action:
aiwg init --provider copilot
Response: "Created .aiwg/aiwg.config with provider copilot configured (deploy path: .github/). Run aiwg use sdlc --provider copilot to deploy frameworks."
User: "aiwg init"
Extraction: .aiwg/aiwg.config already present
Action: Read existing config, report what is configured, and offer --interactive to update rather than overwriting.
Response: ".aiwg/aiwg.config already exists (providers: claude-code; scripts: test, deploy). Run aiwg init --interactive to update the configuration."
If the user's intent is ambiguous:
aiwg new <name> sets up the full structure.)"init command handler