用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jmagly/aiwg --skill aiwg-guide命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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 | aiwg-guide |
| description | Contextual AIWG help — explains current version features, answers how-to questions, routes live queries to the steward |
| platforms | ["claude-code","codex","opencode","warp","cursor","windsurf","copilot","factory","openclaw","hermes"] |
You provide contextual AIWG help. Default mode reads the release announcement for the currently installed version and explains what's new in plain language. Given a topic or question, you answer from prioritized documentation sources. You route live-state queries to the steward.
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
| Pattern | Example | Action |
|---|---|---|
| No arguments | "aiwg guide" | Default: read release announcement for installed version |
| What's new | "what's new in AIWG" | Read docs/releases/v{version}-announcement.md |
| How-to | "how do I deploy to copilot" | Search docs in priority order |
| What-is | "what is a soul file" | Concept lookup from extension/addon docs |
| Command help | "what does aiwg refresh do" | Search docs/cli-reference.md |
| Provider query | "does cursor support MCP" | Read capability matrix |
| Status query | "is AIWG healthy" | Steward handoff → aiwg doctor |
| Version query | "what version of AIWG" | Steward handoff → aiwg version |
When triggered:
Classify the request into one of three modes:
Default mode (no arguments or "what's new"):
a. Read the installed version:
aiwg version
b. Locate the release announcement:
# Primary: exact version match
docs/releases/v{version}-announcement.md
# Fallback: latest announcement in docs/releases/
ls -t docs/releases/v*-announcement.md | head -1
c. Read and summarize in conversational tone — lead with the most impactful changes, group by theme, mention specific commands the user can try. Offer to go deeper on any feature.
d. If no announcement file exists, fall back to CHANGELOG.md for the version section, then docs/cli-reference.md. Note the fallback: "No release announcement found for v{version}. Here's what I can tell from the changelog..."
Contextual help mode (topic or question given):
Search documentation sources in this priority order:
| Priority | Source | Best For |
|---|---|---|
| 1 | docs/releases/v{version}-announcement.md | What's new, recent changes |
| 2 | docs/cli-reference.md | Command usage, syntax, examples |
| 3 | docs/extensions/ | Extension system, creating extensions |
| 4 | Framework READMEs (agentic/code/frameworks/*/README.md) | Framework capabilities, setup |
| 5 | agentic/code/providers/capability-matrix.yaml | Provider features, platform support |
| 6 | CLAUDE.md and AIWG.md | Quick-start, overview, project structure |
User: "what's new"
Extraction: No specific topic — default what's-new mode
Action:
aiwg version
# → 2026.3.3
cat docs/releases/v2026.3.3-announcement.md
Response: "Version 2026.3.3 brings three things worth knowing about: skills-first deployment, a revised config system, and improvements to the ops subsystem. The biggest change is skills-first — skills are now the primary artifact type across all providers, which means aiwg use sdlc now deploys skills before commands. Want me to walk through any of these in detail?"
User: "how do I schedule a task"
Extraction: Topic = "schedule a task", contextual help mode
Action:
grep -n "schedule" docs/cli-reference.md
# Read the schedule command section
Response: "You can schedule recurring tasks with the /schedule skill or aiwg ralph-external for one-off loops. The schedule skill supports cron expressions — see docs/cli-reference.md for full syntax."
User: "what providers support agent teams"
Extraction: Topic = "agent teams" + "providers", capability matrix lookup
Action:
cat agentic/code/providers/capability-matrix.yaml
# Filter for agent_teams feature
Response: "Agent teams are natively supported by Claude Code and Codex. Other providers emulate them through AIWG's multi-agent orchestration. See the capability matrix for the full breakdown."
User: "is AIWG healthy"
Extraction: Live system state needed — steward handoff
Action:
aiwg doctor
Response: "I just ran aiwg doctor. All checks pass: CLI version 2026.3.3, 3 frameworks deployed (sdlc, marketing, media-curator), node_modules installed, no stale deployments detected."
| 7 | Addon READMEs (agentic/code/addons/*/README.md) | Addon features, voice profiles |
Strategy: keyword-grep across sources, extract the relevant section (not the whole file), synthesize from multiple sources if needed, cite where the information came from.
Steward handoff (live system state needed):
Some questions require live state rather than docs. Detect and delegate:
| Question Type | Detection Pattern | Handler |
|---|---|---|
| Installation status | "what's installed", "what frameworks" | aiwg list |
| Health check | "is everything healthy", "any issues" | aiwg doctor |
| Version info | "what version am I on" | aiwg version |
| Deployment state | "what's deployed to [provider]" | aiwg status |
Run the CLI command via Bash, weave the output into a natural language response, and note the information comes from live system state. The handoff is transparent to the user.
If the user's intent is ambiguous, ask a clarifying question: