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.
npx skills add nahisaho/katashiro --skill musubix-traceabilitygit clone --depth 1 https://github.com/nahisaho/katashiroWrote 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.
[](https://agentmods.dev/skills/nahisaho/katashiro/musubix-traceability)<a href="https://agentmods.dev/skills/nahisaho/katashiro/musubix-traceability"><img src="https://agentmods.dev/badge/skills/nahisaho/katashiro/musubix-traceability/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.
<a href="https://agentmods.dev/skills/nahisaho/katashiro/musubix-traceability"><img src="https://agentmods.dev/badge/skills/nahisaho/katashiro/musubix-traceability.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00041 | $0.00864 |
| Opus 5 | $0.00020 | $0.00432 |
| Sonnet 5 | $0.00008 | $0.00173 |
| Haiku 4.5 | $0.00004 | $0.00086 |
Grade A, and why
musubix-traceability 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 9d 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.
How it starts
The opening of the file, as written. The whole thing — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MUSUBIX Traceability Skill
This skill guides you through maintaining full traceability across the development lifecycle.
Overview
MUSUBIX enforces Article V - Traceability: Complete bidirectional tracing between:
Requirements (REQ-*) ↔ Design (DES-*) ↔ Tasks (TSK-*) ↔ Code ↔ Tests
Traceability Matrix
Creating a Traceability Matrix
# Traceability Matrix
| 要件ID | 設計ID | タスクID | コード | テスト |
|--------|--------|---------|--------|--------|
| REQ-AUTH-001 | DES-AUTH-001 | TSK-001 | src/auth/auth-service.ts | auth.test.ts |
| REQ-AUTH-002 | DES-AUTH-001 | TSK-002 | src/auth/token-manager.ts | token.test.ts |
CLI Commands
# Generate traceability matrix
npx musubix trace matrix
# Impact analysis for a specific requirement
npx musubix trace impact REQ-AUTH-001
# Validate all traceability links
npx musubix trace validate
Traceability in Code
Adding Traceability Comments
/**
* AuthService - 認証サービス
* @requirement REQ-AUTH-001
* @design DES-AUTH-001
* @task TSK-001
*/
export class AuthService {
/**
* ユーザー認証
* @requirement REQ-AUTH-001
*/
async authenticate(credentials: Credentials): Promise<Result<Token, AuthError>> {
// Implementation
}
}
Test Traceability
/**
* @requirement REQ-AUTH-001
* @design DES-AUTH-001
*/
describe('AuthService', () => {
describe('authenticate', () => {
it('should return token for valid credentials', async () => {
// Test implementation
});
});
});
Impact Analysis
When a requirement changes, identify all affected artifacts:
flowchart LR
REQ[REQ-AUTH-001<br/>変更] --> DES[DES-AUTH-001<br/>設計]
DES --> TSK1[TSK-001<br/>タスク]
DES --> TSK2[TSK-002<br/>タスク]
TSK1 --> CODE1[auth-service.ts]
TSK2 --> CODE2[token-manager.ts]
CODE1 --> TEST1[auth.test.ts]
CODE2 --> TEST2[token.test.ts]
Impact Analysis Steps
- Identify changed requirement (REQ-*)
- Find linked designs (DES-*)
- Find linked tasks (TSK-*)
- Locate affected code files
- Identify tests to update
- Update all artifacts
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.
- 9d ago First seen · 142 lines · 41 tokens per session scan A 090d73050603
musubix-traceability is a skill published in the GitHub repository nahisaho/katashiro (0 stars, last pushed 7mo ago), licensed MIT. It adds 41 tokens to every session and 864 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.
Other skills, from other repositories
scaffold-dotnet-test-project
MUST USE when an existing .NET test project was excluded from a .slnf/CI solution filter, disappeared from .sln/.slnx discovery, or lost its production ProjectReference; also for requests to set up, create, reuse, add, register, include, or repair a test project. Handles "tests pass directly but CI discovers zero"…
cy-execute-task
Implement and verify an existing CompozyOS spec task, then update its tracking. Excludes review remediation.
team-qa
Orchestrate the QA team through a full testing cycle. Coordinates qa-lead (strategy + test plan) and qa-tester (test case writing + bug reporting) to produce a complete QA package for a sprint or feature. Covers: test plan generation, test case writing, smoke check gate, manual QA execution, and sign-off report.
gh-issue
Size-audit, write, and split BanyanDB issues that somebody else or an automated TDD workflow can implement. Use whenever the user asks to file or revise an issue, decide whether an issue is too large, make an issue TDD-ready, turn a design into tickets, or split an umbrella into executable leaves. Do not draft or file…
implement-feature
Implement an approved feature plan with fresh-context slices, TDD, evidence, and PR-ready output.
conductor-implement
Execute tasks from a track's implementation plan following TDD workflow.