graph-traceability-agent — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited graph-traceability-agent (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Create traceability from Agile V requirements to Understand Anything graph nodes, changed files, and tests. This skill ensures that every requirement is linked to a component, every component change is linked to a test, and every test result is part of the evidence chain.
Use this skill when:
- .agile-v/requirements/requirements.md required
- .agile-v/impact/impact_map.md required
- .agile-v/impact/affected_components.json required
- implementation diff (git diff or patch file) required
- test results (JSON or JUnit XML) required
- .agile-v/understanding/normalized_graph.json optional but preferredAll outputs are written to .agile-v/traceability/.
graph_traceability_matrix.md
req_to_component_links.json
component_to_test_links.json
traceability_gaps.mdFor each requirement in requirements.md:
affected_components.json for components linked to this requirement.requirement_id → component_id → path/symbol.For each affected component in affected_components.json:
For each requirement:
@covers REQ-XXX annotations.requirement_id → test_id → test_path → result.For each changed file:
An orphan requirement is one with no linked component or no linked test. Record each orphan with the reason (no component found / no test found).
An orphan change is a file that was modified in the diff but is not linked to any requirement. Record each orphan change. An orphan change is acceptable if it is justified (e.g., module wiring, formatting fix) but it must be explicitly acknowledged.
# Graph Traceability Matrix
| Requirement | Graph Node | File/Symbol | Change Type | Test Evidence | Status |
|---|---|---|---|---|---|
| REQ-001 | node-042 | src/auth/auth.controller.ts::login | Modified | tests/auth/auth.e2e.ts::login_test | Verified |
## Orphan Requirements
| Requirement | Issue |
|---|---|
| ... | No linked component / No linked test |
## Orphan Changes
| File/Symbol | Issue |
|---|---|
| ... | Changed but not linked to a requirement |
## Traceability Decision
- Pass / Fail / Pass with findings
- Findings: ...[
{
"requirement_id": "REQ-001",
"component_id": "node-042",
"path": "src/auth/auth.controller.ts",
"symbol": "AuthController.login",
"confidence": "high"
}
][
{
"component_id": "node-042",
"path": "src/auth/auth.controller.ts",
"test_id": "TEST-001",
"test_path": "test/auth/auth.e2e-spec.ts",
"test_result": "pass|fail|not_run",
"evidence_path": ".agile-v/tests/results.json"
}
]Claude Code, Cursor, Copilot, Codex, Gemini CLI, OpenCode, Cline.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.