/mention-report
Generate traceability report from @-mentions
$ npx -y skills add jmagly/aiwg --skill mention-report --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/mention-report
Context preview
The summary Claude sees to decide when to auto-load this skill.
Generate traceability report from @-mentions
SKILL.md
mention-report.SKILL.mdnamespace: aiwg
name: mention-report
platforms: [all]
description: Generate traceability report from @-mentions
<!-- AIWG-SKILL-CALLOUT --> > **Skill access pattern (post-kernel-pivot, 2026.5+)** > > Skill names referenced in this document are AIWG skills, **not slash commands**. Most are not kernel-listed and cannot be invoked as `/skill-name` by the platform. Reach them via: > > ```bash > aiwg discover "<capability>" > aiwg show skill <name> > ``` > > Only kernel-listed skills (`aiwg-doctor`, `aiwg-refresh`, `aiwg-status`, `aiwg-help`, `use`, `steward`) are directly invokable as slash commands. See [skill-discovery rule](../../../addons/aiwg-utils/rules/skill-discovery.md).
@-Mention Traceability Report
Generate traceability report showing relationships between artifacts.
Usage
/mention-report # Markdown report to stdout
/mention-report --format json # JSON format
/mention-report --format csv # CSV for spreadsheets
/mention-report --output .aiwg/reports/traceability.md
Options
| Option | Default | Description | |--------|---------|-------------| | --target | . | Directory to analyze | | --format | md | Output format: md, json, csv | | --output | stdout | Write to file |
Report Sections
Requirements Coverage
## Requirements Coverage
| Requirement | Implemented | Tested | Documented |
|-------------|-------------|--------|------------|
| UC-001 | ✓ src/auth/ | ✓ test/auth/ | ✓ docs/ |
| UC-002 | ✓ src/api/ | ✗ | ✗ |
| UC-003 | ✗ | ✗ | ✗ |
Coverage: 67% implemented, 33% tested, 33% documented
Architecture Traceability
## Architecture Traceability
| ADR | Referenced By | Implementation |
|-----|---------------|----------------|
| ADR-001 | 3 files | src/db/ |
| ADR-002 | 5 files | src/auth/, src/api/ |
| ADR-003 | 1 file | src/cache/ |
Security Controls
## Security Control Coverage
| Control | Implementation | Verification |
|---------|----------------|--------------|
| AUTHN-001 | src/auth/middleware.ts | test/security/ |
| AUTHZ-001 | src/auth/permissions.ts | ✗ |
Dependency Graph
## Dependency Graph
UC-001 (User Authentication)
├── ADR-005-jwt-strategy.md
├── src/services/auth/
│ ├── login.ts
│ ├── logout.ts
│ └── refresh.ts
├── test/integration/auth/
└── docs/api/auth.md
JSON Format
{
"generated": "2025-01-15T10:30:00Z",
"summary": {
"total_mentions": 142,
"requirements": { "total": 15, "covered": 12 },
"adrs": { "total": 8, "referenced": 6 }
},
"traceability": [
{
"artifact": ".aiwg/requirements/UC-001.md",
"type": "requirement",
"referenced_by": ["src/auth/login.ts", "test/auth/login.test.ts"],
"coverage": { "implemented": true, "tested": true, "documented": true }
}
]
}CLI Equivalent
aiwg mention-report [--format md|json|csv] [--output <file>]
Related Commands
- `mention-wire` - Add @-mentions
- `mention-validate` - Validate @-mentions
- `check-traceability` - Full traceability verification
Generate report for: $ARGUMENTS
References
- @$AIWG_ROOT/agentic/code/addons/aiwg-utils/README.md — aiwg-utils addon overview
- @$AIWG_ROOT/docs/cli-reference.md — CLI reference for mention-report command
- @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/research-before-decision.md — Scan codebase before reporting
- @$AIWG_ROOT/agentic/code/frameworks/sdlc-complete/README.md — SDLC artifact structure for traceability reporting
Read more
namespace: aiwg name: mention-report platforms: [all] description: Generate traceability report from @-mentions
<!-- AIWG-SKILL-CALLOUT --> > **Skill access pattern (post-kernel-pivot, 2026.5+)** > > Skill names referenced in this document are AIWG skills, **not slash commands**. Most are not kernel-listed and cannot be invoked as `/skill-name` by the platform. Reach them via: > > ```bash > aiwg discover "<capability>" > aiwg show skill <name> > ``` > > Only kernel-listed skills (`aiwg-doctor`, `aiwg-refresh`, `aiwg-status`, `aiwg-help`, `use`, `steward`) are directly invokable as slash commands. See [skill-discovery rule](../../../addons/aiwg-utils/rules/skill-discovery.md).
@-Mention Traceability Report
Generate traceability report showing relationships between artifacts.
Usage
/mention-report # Markdown report to stdout /mention-report --format json # JSON format /mention-report --format csv # CSV for spreadsheets /mention-report --output .aiwg/reports/traceability.md
Options
| Option | Default | Description | |--------|---------|-------------| | --target | . | Directory to analyze | | --format | md | Output format: md, json, csv | | --output | stdout | Write to file |
Report Sections
Requirements Coverage
## Requirements Coverage | Requirement | Implemented | Tested | Documented | |-------------|-------------|--------|------------| | UC-001 | ✓ src/auth/ | ✓ test/auth/ | ✓ docs/ | | UC-002 | ✓ src/api/ | ✗ | ✗ | | UC-003 | ✗ | ✗ | ✗ | Coverage: 67% implemented, 33% tested, 33% documented
Architecture Traceability
## Architecture Traceability | ADR | Referenced By | Implementation | |-----|---------------|----------------| | ADR-001 | 3 files | src/db/ | | ADR-002 | 5 files | src/auth/, src/api/ | | ADR-003 | 1 file | src/cache/ |
Security Controls
## Security Control Coverage | Control | Implementation | Verification | |---------|----------------|--------------| | AUTHN-001 | src/auth/middleware.ts | test/security/ | | AUTHZ-001 | src/auth/permissions.ts | ✗ |
Dependency Graph
## Dependency Graph UC-001 (User Authentication) ├── ADR-005-jwt-strategy.md ├── src/services/auth/ │ ├── login.ts │ ├── logout.ts │ └── refresh.ts ├── test/integration/auth/ └── docs/api/auth.md
JSON Format
{
"generated": "2025-01-15T10:30:00Z",
"summary": {
"total_mentions": 142,
"requirements": { "total": 15, "covered": 12 },
"adrs": { "total": 8, "referenced": 6 }
},
"traceability": [
{
"artifact": ".aiwg/requirements/UC-001.md",
"type": "requirement",
"referenced_by": ["src/auth/login.ts", "test/auth/login.test.ts"],
"coverage": { "implemented": true, "tested": true, "documented": true }
}
]
}CLI Equivalent
aiwg mention-report [--format md|json|csv] [--output <file>]
Related Commands
- `mention-wire` - Add @-mentions
- `mention-validate` - Validate @-mentions
- `check-traceability` - Full traceability verification
Generate report for: $ARGUMENTS
References
- @$AIWG_ROOT/agentic/code/addons/aiwg-utils/README.md — aiwg-utils addon overview
- @$AIWG_ROOT/docs/cli-reference.md — CLI reference for mention-report command
- @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/research-before-decision.md — Scan codebase before reporting
- @$AIWG_ROOT/agentic/code/frameworks/sdlc-complete/README.md — SDLC artifact structure for traceability reporting
Multi-agent AI framework for Claude Code, Copilot, Cursor, Warp, and 6 more platforms 200+ agents, 109+ CLI commands, 400+ deployable agent/skill/command/rule artifacts, 8 core frameworks, 32 addons, and a 40-plugin Claude Code marketplace.
Repo: jmagly/aiwg
Other skills on aiwg.
- /agent-loop-ext
Crash-resilient external agent loop with state persistence and CI/CD integration
Open skill - /agent-loop
Detect requests for iterative autonomous agent loops and route to the appropriate loop executor
Open skill - /auto-test-execution
Automatically execute tests when code-generating agents modify source files, enforcing the execute-before-return pattern
Open skill - /cross-task-learner
Enable agent loops to learn from similar past tasks and share patterns across loops
Open skill - /debug-memory
Query and manage the executable feedback debug memory
Open skill - /execute-feedback
Execute tests on generated code and iterate until passing
Open skill

