plugins/utils/skills/runtime-info/SKILL.md
Display a comprehensive runtime environment report covering detected provider, available tools, AIWG version, and installed frameworks
npx skillsauth add jmagly/aiwg runtime-infoInstall 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 display a comprehensive runtime environment report — detected provider, available tools and permissions, AIWG version, installed frameworks, and relevant environment variables. Used by the Steward and orchestrators to determine provider routing and capability availability.
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
| Pattern | Example | Action |
|---------|---------|--------|
| Full report | "show runtime info" | Run aiwg runtime-info |
| Provider check | "which provider is active?" | Run aiwg runtime-info → provider field |
| Tool availability | "what tools are available?" | Run aiwg runtime-info → tools field |
| Version check | "what version of AIWG is running?" | Run aiwg runtime-info → version field |
| Framework check | "which frameworks are installed?" | Run aiwg runtime-info → frameworks field |
| Environment dump | "show environment variables" | Run aiwg runtime-info → env field |
When triggered:
Identify what the user wants:
Run the command:
# Full runtime report
aiwg runtime-info
# Machine-readable (for orchestration / Steward routing)
aiwg runtime-info --json
Extract and present the relevant section if the user asked about a specific aspect; present the full report otherwise.
The runtime-info report covers:
| Field | Description |
|-------|-------------|
| provider | Detected AI platform (claude-code, copilot, cursor, etc.) |
| aiwg_version | Installed AIWG version (CalVer) |
| node_version | Node.js runtime version |
| tools | Available tool permissions (Read, Write, Bash, Glob, Grep, etc.) |
| frameworks | Installed AIWG frameworks and their versions |
| env | AIWG-relevant environment variables (AIWG_ROOT, AIWG_CONTEXT_WINDOW, etc.) |
| platform | OS and architecture |
| cwd | Current working directory |
User: "Show runtime info"
Extraction: Full report, no specific field
Action:
aiwg runtime-info
Response:
Provider: claude-code
AIWG version: 2026.3.15
Node: v22.11.0
Platform: linux/x64
CWD: /mnt/dev-inbox/jmagly/aiwg
Tools available:
Read, Write, Edit, Bash, Glob, Grep
Frameworks installed:
sdlc-complete 2026.3.15
aiwg-utils 2026.3.15
Environment:
AIWG_ROOT=/mnt/dev-inbox/jmagly/aiwg
AIWG_CONTEXT_WINDOW=200000
User (Steward): "Which provider is active so I can route this deployment?"
Extraction: Provider field only
Action:
aiwg runtime-info --json
Response: "Active provider is claude-code. Use aiwg use sdlc --provider claude-code for deployment."
User: "Do I have Bash access in this environment?"
Extraction: Tools field
Action:
aiwg runtime-info --json
Response: "Yes — Bash is listed in available tools. You also have Read, Write, Edit, Glob, and Grep."
User: "What frameworks are installed?"
Extraction: Frameworks field
Action:
aiwg runtime-info
Response: "2 frameworks installed: sdlc-complete (2026.3.15), aiwg-utils (2026.3.15). Run aiwg list for full framework details."
If the user's intent is ambiguous:
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`.