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/loiane/specs-driven-development-spring-angular/production-codegit clone --depth 1 https://github.com/loiane/specs-driven-development-spring-angularWhat 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.00521 | $0.00521 |
| Opus 5 | $0.00260 | $0.00260 |
| Sonnet 5 | $0.00104 | $0.00104 |
| Haiku 4.5 | $0.00052 | $0.00052 |
Grade A, and why
specs-driven-development-spring-angular production-code.instructions.md 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 yesterday.
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.
What it actually says
Production code guardrails
You are about to edit production Java code under src/main/**.
Block: TDD precondition
Before writing or editing any line in src/main/**:
- Read
.specs/<active-feature>/.tdd-state.json. - Confirm
tasks[<active-task>].phase == "red"ANDred_failure_excerptis non-empty. - Confirm the file path you are about to edit appears in
tasks[<active-task>].files_in_scope.
If any check fails, refuse the edit and tell the user:
"Cannot edit production code: no failing test for task
<task-id>. Run/build <task-id>so the test-engineer writes the failing test first."
Spring Boot 4 conventions
Follow shared/skills/spring-boot-4-conventions/SKILL.md:
- Constructor injection only.
- Package by feature/domain, not by layer. Top-level packages are bounded contexts (
giftcard,order, …), each withapi(published) andinternal(private) sub-packages. No top-levelcontroller/service/repository/modelpackages. @HttpExchange/RestClient(neverRestTemplatein new code).- Records for DTOs.
@RestControllerAdvicefor error mapping.- Pagination on every list endpoint.
@ConfigurationPropertiesrecords for grouped settings.- No Lombok. No
@Data,@Getter,@Setter,@Builder,@RequiredArgsConstructor,@Slf4j, etc. Java records and explicit constructors replace them.
Architecture conventions
Follow shared/skills/archunit-rules/SKILL.md:
- Each top-level package is a module; cross-module access goes through its
apisub-package only. - Never
importfrom another module'sinternalpackage — enforced by ArchUnit. - No cycles between top-level packages.
Security baseline
Follow shared/skills/spring-security-baseline/SKILL.md:
- Default-deny in
SecurityFilterChain. - Bean Validation on DTOs + service-layer invariant checks.
- Mask PII / secrets in logs.
- No
@CrossOrigin("*")on state-changing endpoints.
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.
- yesterday First seen · 51 lines · 521 tokens per session scan A 575c7d050bf2
specs-driven-development-spring-angular production-code.instructions.md is an instructions file published in the GitHub repository loiane/specs-driven-development-spring-angular (57 stars, last pushed 2mo ago), licensed MIT. It adds 521 tokens to every session, about $0.0026 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 instructions, from other repositories
atmosphere AGENTS.md
Instructions for Atmosphere/atmosphere, covering build system: maven, commands, module build, build only atmosphere-runtime (cpr) and build only spring-boot-starter.
plugins CLAUDE.md
Instructions for ihub-pub/plugins, covering project knowledge base, project structure, plugin id 速查表, version compatibility and commands(build / lint / test).
featherspec constitution.instructions.md
FeatherSpec constitution editing rules (thin loader).
featherspec knowledge-records.instructions.md
FeatherSpec knowledge record rules — observation, rationale, provenance (thin loader).
featherspec memory-bank.instructions.md
FeatherSpec Memory Bank writing rules (thin loader).
featherspec plans.instructions.md
FeatherSpec plan-file craft rules (thin loader).