agentic/code/addons/aiwg-utils/skills/aiwg-guide/SKILL.md
Contextual AIWG help — explains current version features, answers how-to questions, routes live queries to the steward
npx skillsauth add jmagly/aiwg aiwg-guideInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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 |
| 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:
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."
data-ai
Report which research-corpus radar sidecars are overdue for refresh. Computes staleness (days since last refresh vs the cadence window) for every radar, sorted most-overdue-first. Runs via `aiwg corpus radar-status`.
data-ai
Aggregate research-corpus radar sidecars into a corpus or per-cluster freshness report — totals, overdue count, per-cluster / per-GRADE / per-trajectory breakdowns, an overdue table, and per-radar rationale snippets. Runs via `aiwg corpus radar-report`.
testing
Scaffold radar/freshness sidecars for research-corpus REFs. Pulls title/authors from the citation sidecar and GRADE from the analysis doc, defaults the refresh cadence from GRADE and the cluster from a corpus-local map, and stamps documentation/radar/REF-XXX-radar.md. Runs via `aiwg corpus radar-init`.
data-ai
Compute an entity's publication trajectory — per-year paper counts, topic drift, hot-streak detection (≥3 consecutive A-grade years), and career phase. Runs via `aiwg corpus profile-temporal`.