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.
git clone --depth 1 https://github.com/Kin9Zeus/senior-engineer-skillsWrote 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/commands/kin9zeus/senior-engineer-skills/snr-build)<a href="https://agentmods.dev/commands/kin9zeus/senior-engineer-skills/snr-build"><img src="https://agentmods.dev/badge/commands/kin9zeus/senior-engineer-skills/snr-build/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/kin9zeus/senior-engineer-skills/snr-build"><img src="https://agentmods.dev/badge/commands/kin9zeus/senior-engineer-skills/snr-build.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00020 | $0.00688 |
| Opus 5 | $0.00010 | $0.00344 |
| Sonnet 5 | $0.00004 | $0.00138 |
| Haiku 4.5 | $0.00002 | $0.00069 |
Grade A, and why
snr-build 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 12d 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 — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Build a New Project
Design and build: $ARGUMENTS
Load the project-blueprint skill and follow its phases. Load senior-engineer
for the non-negotiable bar.
Do not start typing code yet
Phase 1 first. Ask only the questions whose answers change the architecture; assume sensible defaults for everything else and state the assumptions:
- Who uses it, and how many?
- What is the core transaction — the one thing that must never be wrong?
- What data does it hold? Specifically: personal data, payment data, or health/financial records? Each adds non-optional obligations.
- What must it integrate with?
- What constrains it — team skills, budget, deadline, jurisdiction?
Then write five lines: what it is, who it serves, the core transaction, the data classification, and the dominant constraint. Confirm before building.
Then, in this order
The order is by cost-of-getting-it-wrong-later, not by convenience.
2 Stack selection — boring, known technology; one ADR per choice
3 Data model — schema, constraints, tenancy, PII tagged, retention
4 Security baseline — config validation, authz deny-by-default, CSP
5 Scaffold — repo → toolchain → config → db → auth → VERTICAL SLICE
→ CI → observability → deploy to staging
6 Public surface — metadata, 404, robots, sitemap, schema, a11y
7 Legal surface — privacy policy, consent, DELETION PATH, terms
8 Prove it — tests, CI gate, logging, one alert
9 Document — README, ADRs, runbook
Step 6 of the scaffold is load-bearing. One complete vertical slice — route, validation, authorization, domain logic, persistence, response, log line, test — establishes the pattern every future feature copies. Get it right and quality scales for free.
Deploy to staging before feature work. A product that has never deployed does not know what deploying costs.
Refuse to over-engineer
No Kubernetes, no microservices, no event sourcing, no CQRS for a product with no users. A modular monolith on a managed platform with a managed Postgres is the correct answer for the overwhelming majority of new products, and it stays cheap to change.
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.
- 12d ago First seen · 70 lines · 20 tokens per session scan A c2a158693822
snr-build is a command published in the GitHub repository Kin9Zeus/senior-engineer-skills (3 stars, last pushed 18d ago), licensed MIT. It adds 20 tokens to every session and 688 once invoked, about $0.0001 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-31.
Other commands, from other repositories
scaffold-project
Scaffold a new design-product project that matches the recommended Claude Code layout (the reference structure). Use when starting a fresh product/app that will be built with this design system.
critique
Adversarial design critique of the current work — render it, look at it, and argue for rejection. Run after the gates are green, never instead of them.
gate
Run the one-command quality gate and report the real N/N result. Use before claiming any build/review is done.
ship
Pre-release gate — run the full gate, responsive + render checks, then produce the release checklist (README badge/current/changelog). Use before tagging a release.
code-review
OWASP-mapped, skill-aware code review with autofix suggestions. Reviews the diff, not the world.
adr
Write an architecture decision record as Markdown in the user's repository. Use when invoked as /document-design-system:adr. Produce designed HTML or PDF only when asked.