Aiwg steward
Provide provider capability awareness and route commands by answering what the current provider supports natively vs must emulate
git clone https://github.com/jmagly/aiwg
T=$(mktemp -d) && git clone --depth=1 https://github.com/jmagly/aiwg "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.agents/skills/steward" ~/.claude/skills/jmagly-aiwg-steward && rm -rf "$T"
.agents/skills/steward/SKILL.mdsteward
You provide provider capability awareness and intelligent command routing. You read the canonical capability matrix to answer what the current provider supports natively, what must be emulated, and which command achieves a given goal on the active platform.
Triggers
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
- "what can this provider do" → capabilities for current provider
- "is X supported here" → feature check for current provider
- "how do I do X" (in provider context) → routing advice
- "what command handles Y" → find subcommand
Trigger Patterns Reference
| Pattern | Example | Action |
|---|---|---|
| Current provider capabilities | "what does my provider support" | |
| Named provider capabilities | "what does Cursor support" | |
| All providers | "show the full capability matrix" | |
| Feature check | "does my provider support agent teams" | |
| Routing lookup | "which providers support cron" | |
Behavior
When triggered:
-
Identify the subcommand:
— show what a provider supports, optionally filtered by featurecapabilities
— show which providers support a capability and how to invoke itfind
-
Detect provider context (for
withoutcapabilities
):--provider- Check
env →CLAUDE_CODE_VERSIONclaude-code - Check
env →CODEX_API_KEYcodex - Check
project directory →.cursor/cursor - Fall back to
for authoritative detectionaiwg runtime-info
- Check
-
Run the appropriate command:
# Current provider capabilities (auto-detected) aiwg steward capabilities # Named provider aiwg steward capabilities --provider copilot # Check specific feature on current provider aiwg steward capabilities --feature agent_teams # Full matrix — all providers, all features aiwg steward capabilities --all # Find providers that support a capability aiwg steward find --capability cron -
Interpret and surface routing advice:
- Native support: report the native tool or mechanism
- Emulated support: show the
command that emulates the featureaiwg - No support: report clearly and suggest the nearest alternative
Capability Matrix Source
The authoritative source is
agentic/code/providers/capability-matrix.yaml. Key features tracked:
| Feature | Description |
|---|---|
| Scheduled/recurring task execution |
| Native multi-agent team orchestration |
| Background task dispatch |
| Model Context Protocol server support |
| Hook-based behavior scripts |
| Multi-session orchestration () |
Examples
Example 1: Check current provider
User: "What does my provider support?"
Extraction: Capabilities request, no provider specified — auto-detect
Action:
aiwg steward capabilities
Response: "You are on claude-code. Native support: agent_teams, tasks, mcp, cron. Emulated via aiwg: behaviors (via hooks), mission_control (via
aiwg mc)."
Example 2: Feature-specific check
User: "Does my provider support agent teams natively?"
Extraction: Feature check —
agent_teams on current provider
Action:
aiwg steward capabilities --feature agent_teams
Response: "agent_teams on claude-code: Native (uses Claude Code's built-in Task tool). No emulation needed."
Example 3: Cross-provider lookup
User: "Which providers support cron natively?"
Extraction:
find subcommand for cron capability
Action:
aiwg steward find --capability cron
Response:
cron support across providers: claude-code: native codex: emulated via aiwg-scheduler copilot: emulated via aiwg-scheduler cursor: emulated via aiwg-scheduler factory: native opencode: emulated via aiwg-scheduler warp: emulated via aiwg-scheduler windsurf: emulated via aiwg-scheduler openclaw: emulated via aiwg-scheduler
Example 4: Full matrix
User: "Show me the capability matrix for all providers"
Extraction:
capabilities --all
Action:
aiwg steward capabilities --all
Response: Formatted table of all 9 providers x all 6 features, with native/emulated/unsupported indicators.
Clarification Prompts
If the user's intent is ambiguous:
- "Are you asking about the provider you're currently using, or a specific provider?"
- "Should I check all features or a specific one?"
References
- @$AIWG_ROOT/src/cli/handlers/steward.ts — Steward command handler
- @$AIWG_ROOT/agentic/code/providers/capability-matrix.yaml — Authoritative capability matrix
- @$AIWG_ROOT/docs/cli-reference.md — CLI reference