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.
curl -O https://raw.githubusercontent.com/dogganidhal/noddde/main/.claude/skills/new-spec/SKILL.mdgit clone --depth 1 https://github.com/dogganidhal/nodddeWrote 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/dogganidhal/noddde/new-spec)<a href="https://agentmods.dev/skills/dogganidhal/noddde/new-spec"><img src="https://agentmods.dev/badge/skills/dogganidhal/noddde/new-spec.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector warn
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 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.
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.00036 | $0.00884 |
| Opus 5 | $0.00018 | $0.00442 |
| Sonnet 5 | $0.00007 | $0.00177 |
| Haiku 4.5 | $0.00004 | $0.00088 |
Grade A, and why
new-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.
How it starts
The opening of the file, as written. The whole thing — 95 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Step 1: Create a New Spec
Create a behavioral specification for a new or existing module in the noddde framework.
Pipeline step 1 of 6 (new spec path). Called by the /spec orchestrator.
Step 1: Understand Intent
Ask the developer (if not already clear from context):
- What kind of module? Aggregate, projection, saga, bus implementation, persistence implementation, or standalone?
- Which source file? Existing file to spec, or new file to create?
- What problem does it solve? One-sentence purpose.
Step 2: Select Template
Pick the right template from specs/templates/:
| Module type | Template |
|---|---|
| Aggregate | specs/templates/aggregate.spec.template.md |
| Projection | specs/templates/projection.spec.template.md |
| Saga | specs/templates/saga.spec.template.md |
| Bus implementation (EventBus, CommandBus, QueryBus) | specs/templates/bus-implementation.spec.template.md |
| Persistence implementation | specs/templates/persistence-implementation.spec.template.md |
| Other (handler type, utility, infrastructure) | Start from the closest existing spec in specs/core/ |
Read the selected template to understand the expected sections.
Step 3: Determine Spec Location
The spec path mirrors the source path:
- Source:
packages/core/src/<path>/<file>.ts - Spec:
specs/core/<path>/<name>.spec.md
Example: packages/core/src/engine/implementations/postgres-event-store.ts → specs/core/engine/implementations/postgres-event-store.spec.md
Step 4: Identify Dependencies
Read existing specs that this module will depend on. Use the depends_on graph:
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.
- 8d ago First seen · 95 lines · 36 tokens per session scan A 8932c01bccb1
new-spec is a skill published in the GitHub repository dogganidhal/noddde (49 stars, last pushed 8d ago), licensed MIT. It adds 36 tokens to every session and 884 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-30.
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.
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).
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.
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…
cratis-chronicle-client-dotnet
Talk to a Chronicle server from a standalone .NET application with the Cratis.Chronicle client - connection strings, ChronicleClient construction outside any host, AddCratisChronicle for a worker or ASP.NET host, [EventType] records, IEventSequence.Append, reactors and reducers found by assembly scanning, the…
cratis-chronicle-client-kotlin
Talk to a Chronicle server from a Kotlin or Java application with the io.cratis:chronicle client - connection strings, ChronicleClient and the Spring Boot starter, @EventType classes, suspending append, reactors and reducers dispatched by first-parameter type, model-bound read models, classpath artifact discovery, and…