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 agentmods add instructions/aspegio/nelson/claude-mdgit clone --depth 1 https://github.com/Aspegio/nelsonWhat 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 | $0.00904 | $0.00904 |
| Opus 5 | $0.00452 | $0.00452 |
| Sonnet 5 | $0.00181 | $0.00181 |
| Haiku 4.5 | $0.00090 | $0.00090 |
Grade A, and why
nelson CLAUDE.md scanned grade A with 1 finding 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 3d 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.
Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
result = subprocess.run( # noqa: S603 -- args are repo-internal paths, sys.executable is trusted How it starts
The opening of the file, as written. The whole thing — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Nelson
Nelson is a Claude Code skill for coordinating agent work using Royal Navy terminology. It provides an eight-step operational framework: Sailing Orders, The Estimate, Battle Plan, Form the Squadron, Get Permission to Sail, Quarterdeck Rhythm, Action Stations, and Stand Down.
Key references
- docs/project_structure.md — full repository layout
- README.md — user-facing overview and quick start
Maintainability sensors
This repo has automated sensors that you (the agent) should run and read carefully before considering a task done. They're how the codebase gives you fast feedback about whether your changes are maintainable.
Active sensors
-
Linter —
ruff check. Config inpyproject.toml. AI-targeted thresholds (max-args=5,max-branches=10,max-statements=50,max-complexity=10,line-length=120). Each violation message is feedback — read it, don't just look at the line. Many rules accept a suppress-with-reason or threshold-bump instead of forcing a fix. -
Formatter —
ruff format --check. Apply withruff formatbefore committing. -
Tests — run separately per directory because each has its own
conftest.py:pytest skills/nelson/scripts/ -v pytest hooks/ -v pytest scripts/ -v -
Pre-commit —
pre-commit run --all-files. Includes secret scanning (Gitleaks), Ruff, and standard hygiene. Install once withpre-commit install. If a hook fails, fix the underlying issue rather than passing--no-verify. -
CI — the same checks re-run on clean infra after push (see
.github/workflows/ci.yml). Green locally + red in CI usually means environment drift (Python version, env vars, OS-specific paths).
Suppressing or bumping a sensor
You may suppress a rule or bump a threshold when the rule is clearly wrong for the situation. The reason is mandatory.
result = subprocess.run( # noqa: S603 -- args are repo-internal paths, sys.executable is trusted
[sys.executable, str(_SCRIPT), ...],
...,
)
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.
- 3d ago First seen · 87 lines · 904 tokens per session scan A f18e5c6d19f8
nelson CLAUDE.md is an instructions file published in the GitHub repository Aspegio/nelson (415 stars, last pushed 2mo ago), licensed MIT. It adds 904 tokens to every session, about $0.0045 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
stockbit-mcp CLAUDE.md
Instructions for INo-xious/stockbit-mcp, covering claude.md, what this is, commands, the map and three invariants. do not break them; each has a test.
devin-handoff AGENTS.md
Instructions for club-cog/devin-handoff, covering devin handoff — agent guide, what this is, when to hand off, finding the script and how to use.
agent-plugins-skills copilot-instructions.md
Instructions for richfrem/agent-plugins-skills, covering copilot instructions for agent-plugins-skills, 1. think before coding, 2. simplicity first, 3. surgical changes and 4. goal-driven execution.
sheal AGENTS.md
Instructions for liwala/sheal, covering agent instructions, agent operating policy, 1. tdd discipline — strict order, the only exception: spikes and 2. tests assert intent.
coordinate-agents AGENTS.md
Instructions for hogancv/coordinate-agents, covering repository instructions for ai contributors, canonical identity, repository map, required checks and change rules.
superpowers-graph CLAUDE.md
Claude Code instructions for RonMizrahi/superpowers-graph, covering superpowers-graph — repository guide, sources of truth, changing the graph — the eval ships with the change and rules that are not obvious from the code.