noddde: Skill for Claude Code

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

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

A report procedure that scans a project’s software specifications and shows where each one is in a six-step implementation process.

In plain words
What is it for?
It is for tracking specifications from draft through implementation, validation, and documentation, and for planning remaining work.
Why use it?
It replaces a manual project-wide check with a view of missing tests, unfinished code, failing tests, and completed work.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/dogganidhal/noddde/spec-status.svg)](https://agentmods.dev/skills/dogganidhal/noddde/spec-status)
Your own site
<a href="https://agentmods.dev/skills/dogganidhal/noddde/spec-status"><img src="https://agentmods.dev/badge/skills/dogganidhal/noddde/spec-status.svg" alt="Measured on agentmods" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,012 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: 1 finding, 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 4
    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.
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.00053 $0.01012
Opus 5 $0.00026 $0.00506
Sonnet 5 $0.00011 $0.00202
Haiku 4.5 $0.00005 $0.00101

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

Security

Grade A, and why

spec-status 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/spec-status/SKILL.md · 106 lines

How it starts

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

Spec Status Report

Scan all specs and report implementation status across the entire project, mapping each to its position in the 6-step pipeline.

Step 1: Gather Data

Find all spec files:

find specs/core specs/integration -name "*.spec.md" | sort

For each spec, extract:

  • title from frontmatter
  • status from frontmatter (draft | ready | implementing | implemented | superseded)
  • source_file from frontmatter
  • exports count
  • depends_on list

Step 2: Determine Pipeline Position

For each spec, check what artifacts exist:

Has spec? Has tests? Has impl (no stubs)? Tests pass? Pipeline step
✅ draft Step 1 (needs review)
✅ ready Between step 1-2 (needs /generate-tests)
✅ ready ❌ stubs remain 🔴 failing Step 2 complete (RED tests, needs /implement-spec)
✅ implementing 🔧 partial 🔴 some fail Step 3 in progress
✅ implementing ✅ no stubs ✅ passing Step 4 complete (needs /validate-spec)
✅ implemented ✅ no stubs ✅ passing Step 5 complete

Check for:

  • Test file existence at the expected path
  • Stubs in source file: grep "throw new Error" <source-file>
  • This is a lightweight check — don't actually run the full test suite

Step 3: Build Dependency Order

Using the depends_on graph, determine the recommended implementation order:

  • Specs with no dependencies (leaves) should be implemented first
  • Specs whose dependencies are all implemented are ready to implement next
  • Specs with unimplemented dependencies are blocked

Read the full file on GitHub · 106 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 · 106 lines · 53 tokens per session scan A af7cdc7fa0db

Subscribe to this mod's changes

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

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

architecture-paradigm-cqrs-es

Applies CQRS and Event Sourcing for read/write separation and audit trails. Use when designing systems with complex domain logic or full state-change history.

athola/claude-night-market · 39 tokens

monorepo

Monorepo management (Nx, Turborepo, pnpm workspaces) — task orchestration, caching, code sharing. Use when setting up monorepo, optimizing builds, or managing multi-package projects.

TheBeardedBearSAS/claude-craft · 48 tokens

process_issues

Use this skill to work the Neotoma issue queue end-to-end.

markmhendrickson/neotoma · 6 tokens

close-session

Archive the working session at the end. Writes a sessionclose record to the state layer, logs every outbound interaction as a first-class row, writes task entities for follow-ups, and writes a project-level task ledger as a human-readable safety net. Run at the end of every working session to ensure nothing is lost.

markmhendrickson/neotoma · 66 tokens