noddde: Skill for Claude Code

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

audit-spec is a skill for Claude Code from dogganidhal/noddde. It costs 50 tokens per session (2,193 once invoked), scanned A, original, MIT.

An independent code-audit procedure that checks whether an implementation matches its written specification and then updates the documentation.

In plain words
What is it for?
Running validation checks, reviewing intent and coherence, deciding whether work passes or needs changes, updating docs, and writing an audit report.
Why use it?
A separate review can catch misunderstandings that the person who built the feature may overlook, including problems that tests do not reveal.

Skill for Claude Code

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

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/audit-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 audit-spec

README.md
[![agentmods](https://agentmods.dev/badge/skills/dogganidhal/noddde/audit-spec.svg)](https://agentmods.dev/skills/dogganidhal/noddde/audit-spec)
Your own site
<a href="https://agentmods.dev/skills/dogganidhal/noddde/audit-spec"><img src="https://agentmods.dev/badge/skills/dogganidhal/noddde/audit-spec.svg" alt="Measured on agentmods" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,193 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: 5 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 52
    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 77
    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 79
    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 129
    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.
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.00050 $0.02193
Opus 5 $0.00025 $0.01097
Sonnet 5 $0.00010 $0.00439
Haiku 4.5 $0.00005 $0.00219

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

Security

Grade A, and why

audit-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/audit-spec/SKILL.md · 265 lines

How it starts

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

Auditor Agent: Steps 5-6 (Validate + Coherence Review + Docs)

You are the Auditor — the independent reviewer in the spec pipeline. You run in a separate context from the Builder that wrote the code. You have no memory of implementation decisions. This is by design — you bring fresh eyes.

Your job: Verify the implementation matches the spec's intent (not just its tests), then update documentation. Produce an Audit Report.

Your authority: You can PASS, FAIL (send back to Builder), or raise a CONCERN (escalate to developer). You must be specific and actionable — never vague.

Input

You receive from the Orchestrator:

  • Spec path: e.g., specs/core/ddd/aggregate.spec.md
  • Build Report path: specs/reports/<spec-name>.build-report.md
  • Cycle number: 1 (first review) or 2 (second review after Builder re-run)

Pipeline

Phase A: Validation (read-only)
  ├── Mechanical checks (from validate-spec)
  └── Coherence review (NEW — intent alignment)
         ↓
Phase B: Documentation (write)
  └── Update docs (from update-docs)
         ↓
Write Audit Report

Phase A: Validation

A1: Read Everything

  1. Read the spec completely — all sections, especially Behavioral Requirements, Invariants, Edge Cases.
  2. Read the source file (source_file from spec frontmatter).
  3. Read the test file (derive path from spec path per mapping rules).
  4. Read the Build Report for context on what the Builder did.
  5. Read dependency source files if the spec has depends_on.

A2: Mechanical Checks

Follow the validate-spec procedure as documented in .claude/skills/validate-spec/SKILL.md:

  1. Export coverage: Compare spec exports vs source file actual exports.

    • Missing exports = FAIL
    • Extra unexported items = note (not a failure)
  2. Behavioral requirement audit: For each numbered requirement:

    • Is it implemented in the source? (grep/read)
    • Is it tested? (check test file)
    • Grade: implemented+tested / implemented-not-tested / not-implemented

Read the full file on GitHub · 265 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 · 265 lines · 50 tokens per session scan A dc82328a5b8c

Subscribe to this mod's changes

audit-spec is a skill published in the GitHub repository dogganidhal/noddde (49 stars, last pushed 8d ago), licensed MIT. It adds 50 tokens to every session and 2,193 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.

Related

Other skills, from other repositories

code-review-architecture

Architecture-focused code review covering hexagonal boundary violations, DDD anti-patterns, CQRS misuse, and microservices coupling issues. Applied in addition to the language-specific review skill when architecture markers are detected. Invoked when reviewing hexagonal architectures, DDD patterns, or microservices…

soulcodex/agentic · 63 tokens

cratis-engineering-csharp-conventions

Apply the Cratis C# house conventions when writing or reviewing C# in a Cratis repository - formatting, naming, records and primary constructors, nullable handling, XML documentation, custom exceptions, structured logging, dependency injection, and service lifetimes. Use for any "how should this be written" C# style…

Cratis/AI · 86 tokens

review-code

Use this skill when asked to review, check, or validate code in a Cratis-based project. Produces a structured review report with blocking issues and suggestions, checked against all project architecture and style standards.

Cratis/AI · 44 tokens

review-security

Use this skill when asked to perform a security review or security audit of code in a Cratis-based project. Checks for injection, auth/authz, data exposure, secrets, and event-sourcing-specific vulnerabilities.

Cratis/AI · 45 tokens

enterprise-architecture-patterns

Complete guide for enterprise architecture patterns including domain-driven design, event sourcing, CQRS, saga patterns, API gateway, service mesh, and scalability.

manutej/luxor-claude-marketplace · 34 tokens

cqrs-event-sourcing-architect

CQRS pattern, event stores, projections, eventual consistency. Activate on: CQRS, event sourcing, event store, read model, projection, aggregate, domain event, command handler. NOT for: message broker setup (use event-driven-architecture-expert), database optimization (use data-warehouse-optimizer).

curiositech/windags-skills · 70 tokens