tracing-requirements

tracing-requirements is a skill for Claude Code, Codex from qte77/claude-code-plugins. It costs 48 tokens per session (636 once invoked), scanned A, original, Apache-2.0.

A validator for requirement traceability: checking that system, product, and software requirements connect to one another and to code and tests. It compares database or document entries with tags in C code.

In plain words
What is it for?
Building a coverage matrix, finding orphaned code, checking requirement coverage, and identifying possible dead code.
Why use it?
It reveals missing implementations, code with no matching requirement, broken links between requirement levels, and untested requirements.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/qte77/claude-code-plugins/tracing-requirements
Any agent
npx skills add qte77/claude-code-plugins --skill tracing-requirements
Clone the repo
git clone --depth 1 https://github.com/qte77/claude-code-plugins

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for tracing-requirements

README.md
[![agentmods](https://agentmods.dev/badge/skills/qte77/claude-code-plugins/tracing-requirements.svg)](https://agentmods.dev/skills/qte77/claude-code-plugins/tracing-requirements)
Your own site
<a href="https://agentmods.dev/skills/qte77/claude-code-plugins/tracing-requirements"><img src="https://agentmods.dev/badge/skills/qte77/claude-code-plugins/tracing-requirements.svg" alt="Measured on agentmods" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 636 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00048 $0.00636
Opus 5 $0.00024 $0.00318
Sonnet 5 $0.00010 $0.00127
Haiku 4.5 $0.00005 $0.00064

Measured 3d ago against content hash c08c51a3126f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

tracing-requirements scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/embedded-dev/skills/tracing-requirements/SKILL.md · 76 lines

What it actually says

Requirement Traceability Validation

Target: $ARGUMENTS

Validate the full requirement hierarchy by reconciling the requirements source with code docstring tags.

References (MUST READ)

Read these before proceeding:

  • references/requirement-tagging.md@requirement/@parent/@test spec, reconciliation algorithm

Workflow

  1. Grep all C files for @requirement, @parent, and @test tags → build tag inventory

  2. Read requirements sourcedocs/requirements.md, CSV, or SQL dump

  3. Validate 3-level hierarchy:

    • Every SW-REQ has a @parent PRD-REQ
    • Every PRD-REQ traces to a SYS-REQ
    • No broken parent links
  4. Generate findings report with categories:

    • Unimplemented: SW-REQ in database but no @requirement tag in code
    • Orphaned code: @requirement tag in code but no matching DB entry
    • Broken parents: @parent references a non-existent PRD-REQ
    • Untested: SW-REQ without matching @test tag
    • Dead code candidates: Functions without any requirement tag
  5. Output coverage matrix:

    | Requirement | Code File:Line | Test ID | Status |
    |-------------|---------------|---------|--------|
    | SW-REQ-001  | src/emv.c:42  | TEST-001| OK     |
    | SW-REQ-002  | —             | —       | MISSING|
    

Output Format

# Traceability Report

## Summary
- Total SW-REQ: N
- Implemented: N (N%)
- Tested: N (N%)
- Orphaned code tags: N
- Broken parent links: N

## Unimplemented Requirements
...

## Orphaned Code
...

## Coverage Matrix
...

Rules

  • Scan all *.c and *.h files, not just src/
  • Report findings — do not auto-fix requirement files
  • Include file path and line number for every code finding
  • Sort coverage matrix by requirement ID
Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 76 lines · 48 tokens per session scan A c08c51a3126f

Subscribe to this mod's changes

tracing-requirements is a skill published in the GitHub repository qte77/claude-code-plugins (2 stars, last pushed 4d ago), licensed Apache-2.0. It adds 48 tokens to every session and 636 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

sql-queries

Generate SQL queries from natural language descriptions. Supports BigQuery, PostgreSQL, MySQL, and other dialects. Reads database schemas from uploaded diagrams or documentation. Use when writing SQL, building data reports, exploring databases, or translating business questions into queries.

phuryn/pm-skills · 55 tokens

setup-timescaledb-hypertables

Use this skill when creating database schemas or tables for Timescale, TimescaleDB, TigerData, or Tiger Cloud, especially for time-series, IoT, metrics, events, or log data. Use this to improve the performance of any insert-heavy table. Trigger when user asks to: Create or design SQL schemas/tables AND…

timescale/pg-aiguide · 219 tokens

seam-probe

This skill should be used when testing or debugging an embedded-runtime boundary exposed through a dynamically loaded C-ABI library or Unix-domain socket, including requests to inspect exports, exercise FFI callbacks, send framed messages, reproduce seam crashes or hangs, fuzz a boundary, or correlate probe output…

johnkozaris/jko-claude-plugins · 82 tokens

esp32-expert

This skill should be used for ESP32-specific hardware and runtime work in ESP-IDF, Arduino-ESP32, or PlatformIO projects: target/build detection, FreeRTOS tasks and ISRs, memory/DMA, peripherals, power, networking/security, OTA, crash diagnosis, and unattended reliability. Trigger on "debug this ESP32 crash", "review…

johnkozaris/jko-claude-plugins · 137 tokens

verdict

Architect-grade technology decision briefs — "which option should we pick, and why?" Takes a decision question (X vs Y vs Z for a stated context: library, database, framework, platform, buy-vs-build) plus your constraints, fans out parallel sub-agents to research each option's project health, community sentiment…

duthaho/skillhub · 201 tokens

elasticsearch

Interact with Elasticsearch and Kibana via REST API using curl. Use when querying, indexing, managing indices, checking cluster health, writing aggregations, deploying dashboards, or troubleshooting Elasticsearch. Requires cluster URL and API key. Covers: search (Query DSL), CRUD operations, index management…

NikiforovAll/claude-code-rules · 97 tokens