noddde: Skill for Claude Code

.claude/skills/build-spec/SKILL.md

build-spec is a skill for Claude Code from dogganidhal/noddde. It costs 56 tokens per session (1,367 once invoked), scanned A, original, MIT.

An internal build procedure for a test-driven development pipeline, where tests are written before the code and then used to check the implementation.

In plain words
What is it for?
Building features from approved specifications, producing passing tests, and writing a report for a later review step.
Why use it?
It combines test creation, coding, and test runs into one handoff from an approved specification to working code.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; reads .claude/ paths.

This is dogganidhal/noddde's own configuration. It tells Claude Code how to work on noddde itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything noddde configures →

Reuse

Borrowing it

Nothing to install: this file belongs to dogganidhal/noddde. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/dogganidhal/noddde/main/.claude/skills/build-spec/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/dogganidhal/noddde

Made for: Claude Code.

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 build-spec

README.md
[![agentmods](https://agentmods.dev/badge/skills/dogganidhal/noddde/build-spec.svg)](https://agentmods.dev/skills/dogganidhal/noddde/build-spec)
Your own site
<a href="https://agentmods.dev/skills/dogganidhal/noddde/build-spec"><img src="https://agentmods.dev/badge/skills/dogganidhal/noddde/build-spec.svg" alt="Measured on agentmods" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,367 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 warn 7 Sept 2026
SkillSpector: 7 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 5
    Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.
    Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
  • medium Agent Snooping · line 38
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
  • medium Agent Snooping · line 60
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
  • medium MCP Rug Pull · line 73
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 84
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium Agent Snooping · line 80
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
  • medium MCP Rug Pull · line 85
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
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.00056 $0.01367
Opus 5 $0.00028 $0.00683
Sonnet 5 $0.00011 $0.00273
Haiku 4.5 $0.00006 $0.00137

Measured 8d ago against content hash 7080afdac94e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

build-spec 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 8d 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.

.claude/skills/build-spec/SKILL.md · 166 lines

How it starts

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

Builder Agent: Steps 2-4 (RED → Implement → GREEN)

You are the Builder — the execution agent in the spec pipeline. You receive an approved spec and produce working, tested code. You do NOT write specs or validate beyond test passage. You do NOT update documentation.

Your output: Working code that passes all spec-derived tests, plus a Build Report for the Auditor.

Input

You receive from the Orchestrator:

  • Spec path: e.g., specs/core/ddd/aggregate.spec.md
  • Audit findings (on re-run only): specific issues from a previous Auditor review that you must address

Pipeline

Step 2: Generate tests (RED)  ← from spec's Test Scenarios
         ↓
Step 3: Implement              ← make tests pass
         ↓
Step 4: Run tests (GREEN)     ← loop to Step 3 if RED
         ↓
Write Build Report             ← hand off to Auditor

Step 2: Generate Tests (RED)

Follow the generate-tests procedure exactly as documented in .claude/skills/generate-tests/SKILL.md.

Summary:

  1. Read the spec completely. Refuse draft specs.
  2. Determine test file path:
    • specs/core/<path>/<name>.spec.mdpackages/core/src/__tests__/<path>/<name>.test.ts
    • specs/integration/<name>.spec.mdpackages/core/src/__tests__/integration/<name>.test.ts
  3. Generate test file: each ### Heading in ## Test Scenarios → one it() block.
  4. Run tests — expect RED. Fix test code errors (bad imports, syntax), but leave stub failures as-is.
  5. Categorize: stub failures (expected RED) vs test code errors (fix now) vs spec bugs (flag, don't fix).

If this is a re-run after Audit findings, also:

  • Read the Audit Report findings
  • Address MECHANICAL findings by fixing the implementation
  • For DESIGN findings, adjust the implementation approach if you can, or flag if the spec itself needs revision

Step 3: Implement

Follow the implement-spec procedure exactly as documented in .claude/skills/implement-spec/SKILL.md.

Summary:

  1. Verify test file exists. If not, STOP.
  2. Read the spec, source file, test file, dependency specs and source files.
  3. Update spec frontmatter: status: implementing.
  4. Replace stubs with working code. Implement requirements in numbered order.
  5. Follow coding conventions:
    • Functional style, no classes for domain concepts
    • Strict TypeScript (strict: true, noUncheckedIndexedAccess: true)
    • JSDoc on all public exports
    • Handler signatures must match exactly
  6. Run type check: cd packages/core && npx tsc --noEmit. Fix type errors in the implementation.
  7. Do NOT modify test files. The spec is the authority.

Read the full file on GitHub · 166 lines

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. 8d ago First seen · 166 lines · 56 tokens per session scan A 7080afdac94e

Subscribe to this mod's changes

build-spec is a skill published in the GitHub repository dogganidhal/noddde (49 stars, last pushed 8d ago), licensed MIT. It adds 56 tokens to every session and 1,367 once invoked, about $0.0003 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-30.