traceability-matrix-generator

traceability-matrix-generator is a skill for Claude Code, Codex from ArabelaTso/Skills-4-SE. It costs 106 tokens per session (4,461 once invoked), scanned A, original, Apache-2.0.

A tool that maps requirements to design documents and the source code that implements them. A traceability matrix is a table for checking that each requirement is covered throughout development.

In plain words
What is it for?
Collect requirements, designs, API specifications, schemas, and code references into a development-lifecycle coverage report.
Why use it?
It exposes missing implementations or tests, unrelated code, and the effect of changing a requirement, while supporting audits and compliance work.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Collect requirements, designs, API specifications, schemas, and code references into a development-lifecycle coverage report.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arabelatso/skills-4-se/traceability-matrix-generator
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.

Any agent
npx skills add ArabelaTso/Skills-4-SE --skill traceability-matrix-generator
Clone the repo
git clone --depth 1 https://github.com/ArabelaTso/Skills-4-SE

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 traceability-matrix-generator

README.md
[![agentmods](https://agentmods.dev/badge/skills/arabelatso/skills-4-se/traceability-matrix-generator/github.svg)](https://agentmods.dev/skills/arabelatso/skills-4-se/traceability-matrix-generator)
Your own site
<a href="https://agentmods.dev/skills/arabelatso/skills-4-se/traceability-matrix-generator"><img src="https://agentmods.dev/badge/skills/arabelatso/skills-4-se/traceability-matrix-generator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for traceability-matrix-generator

Your own site · 80×15
<a href="https://agentmods.dev/skills/arabelatso/skills-4-se/traceability-matrix-generator"><img src="https://agentmods.dev/badge/skills/arabelatso/skills-4-se/traceability-matrix-generator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 106 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,461 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00106 $0.04461
Opus 5 $0.00053 $0.02230
Sonnet 5 $0.00021 $0.00892
Haiku 4.5 $0.00011 $0.00446

Measured 7d ago against content hash e113998edad7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

traceability-matrix-generator 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 7d 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.

skills/traceability-matrix-generator/SKILL.md · 693 lines

How it starts

The opening of the file, as written. The whole thing — 693 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Traceability Matrix Generator

Build comprehensive traceability matrices linking requirements → design → implementation across the software development lifecycle.

What is a Traceability Matrix?

A traceability matrix documents relationships between:

  • Requirements: What the system must do (user stories, specs, features)
  • Design: How the system will be structured (architecture, APIs, components)
  • Implementation: Where requirements are coded (functions, classes, modules)

Benefits:

  • Ensure all requirements are implemented
  • Identify missing implementations or tests
  • Support compliance and auditing
  • Track impact of requirement changes
  • Find orphaned code without requirements

Workflow

Step 1: Identify and Collect Artifacts

Gather all traceability sources from the project.

Requirements Sources:

  • requirements.md, REQUIREMENTS.txt
  • User story documents
  • Issue tracker exports (Jira, GitHub Issues)
  • Product requirement documents (PRDs)
  • Feature specifications

Design Sources:

  • DESIGN.md, architecture documents
  • API specifications (OpenAPI, Swagger)
  • Database schemas
  • UML diagrams, architecture diagrams
  • Design decision records (ADRs)

Implementation Sources:

  • Source code files (*.py, *.java, *.js, etc.)
  • Module docstrings
  • Function/class comments with requirement IDs
  • Configuration files

Checklist:

  • Locate requirements documents
  • Find design documentation
  • Identify source code directories
  • Check for existing ID/tagging conventions
  • Verify file access and permissions

Step 2: Extract Requirements

Parse requirements and assign unique identifiers.

Common Requirement Formats:

Markdown with IDs:

## REQ-001: User Authentication
The system shall allow users to log in with email and password.

## REQ-002: Password Reset
Users shall be able to reset forgotten passwords via email.

User Stories:

### US-123: As a user, I want to search products
So that I can find items quickly

**Acceptance Criteria:**
- Search box on homepage
- Results display in < 1 second
- Filter by category

Read the full file on GitHub · 693 lines

Files

What ships with it

2 files 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. 7d ago First seen · 693 lines · 106 tokens per session scan A e113998edad7

Subscribe to this mod's changes

traceability-matrix-generator is a skill published in the GitHub repository ArabelaTso/Skills-4-SE (251 stars, last pushed 20d ago), licensed Apache-2.0. It adds 106 tokens to every session and 4,461 once invoked, about $0.0005 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-09-03.

Related

Other skills, from other repositories

fedramp

Expert guidance for FedRAMP certification and compliance under CR26 (FedRAMP Consolidated Rules for 2026). Use this skill whenever a user asks about FedRAMP authorization, ATO (Authority to Operate), cloud security for federal government, NIST SP 800-53 controls, CSP compliance, or any of the core FedRAMP document…

Sushegaad/Claude-Skills-Governance-Risk-and-Compliance · 236 tokens

eu-cra

Expert EU Cyber Resilience Act (CRA) advisor for Regulation (EU) 2024/2847 — mandatory cybersecurity and vulnerability handling requirements for all products with digital elements (PDEs) sold in the EU. Use this skill for gap analysis, product classification (Default / Class I / Class II), conformity assessment route…

Sushegaad/Claude-Skills-Governance-Risk-and-Compliance · 133 tokens

aenderungsvorbehalt-308

Für Änderungsvorbehalt 308: ordnet Norm, Beweislast und Gegenargument; Ergebnis: Prüfprodukt mit Risiko und nächstem Schritt.

Klotzkette/claude-fuer-deutsches-recht · 41 tokens

agb-leasingvertrag-fortwirkung-schiedsklausel

Für AGB im Leasingvertrag Fortwirkung: ordnet Norm, Beweislast und Gegenargument; Ergebnis: Prüfprodukt mit Risiko und nächstem Schritt. Fachgebiet: AGB-Recht-Prüfer. Route: agb-leasingvertrag-fortwirkung-schiedsklausel.

Klotzkette/claude-fuer-deutsches-recht · 70 tokens

agb-und-cookie-einwilligung-dsgvo

Für AGB und Cookie Einwilligung DSGVO: ordnet Norm, Beweislast und Gegenargument; Ergebnis: Prüfprodukt mit Risiko und nächstem Schritt.

Klotzkette/claude-fuer-deutsches-recht · 44 tokens

nis2

EU NIS2 Directive (Directive (EU) 2022/2555) compliance advisor for essential and important entities: entity classification, Art. 21 risk management measures, Art. 23 incident reporting timelines (24h/72h/1 month), Art. 20 governance obligations, supply chain security (Art. 21(2)(d); coordinated risk assessments Art.…

Sushegaad/Claude-Skills-Governance-Risk-and-Compliance · 195 tokens