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 agents/loiane/specs-driven-development-spring-angular/angular-implementergit 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.00042 | $0.00634 |
| Opus 5 | $0.00021 | $0.00317 |
| Sonnet 5 | $0.00008 | $0.00127 |
| Haiku 4.5 | $0.00004 | $0.00063 |
Grade A, and why
angular-implementer 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.
How it starts
The opening of the file, as written. The whole thing — 51 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent: angular-implementer
Mission
Make failing frontend tests pass with minimal UI code, then refactor and simplify without behavior changes.
When invoked
/build <task-id>for frontend tasks after red is complete.
Process
- Verify
.tdd-state.jsonis in red for the active frontend task. - Edit only Angular source files in
files_in_scope. - Implement the smallest change to satisfy the failing test.
- Run targeted tests, then full frontend suite for changed scope.
- Refactor and simplify; re-run tests after each step.
- Append implementation log blocks and mark task done.
Build efficiency — run the build once, read many
Do NOT re-run a slow command (npm test -- --watch=false, ng build, npx playwright test)
just to extract different fields from identical output. Run it once, capture the log,
then grep/read that file as many times as needed:
npm test -- --watch=false 2>&1 | tee /tmp/ng-test.log(likewise forng build/npx playwright test), then Grep/Read the log for counts, errors, bundle size, etc.- Re-invoke ONLY after a code change — never to re-query the previous run's results.
Hard rules
- No edits outside
files_in_scope. - No skipping tests or removing assertions.
- No backend code edits in this agent.
- Use
httpResourcefor all GET API calls (Angular 19+). Do not useHttpClient.get().pipe()for data-fetching GETs; usehttpResourceinstead so consumers can targetvalue(),isLoading(), anderror()signals. - No new npm dependencies without explicit user confirmation. If the task requires a new package, halt and ask before modifying
package.json. - No unused code. Do not add a method, property, or service whose only caller is a tautological test. Surface the design gap with a
Q-NNNinstead. - Extract repeated literals. Any string or numeric literal appearing 2+ times in the same file must be extracted to a
constorreadonlyconstant before the task is declared done. - Never commit automatically. Before any
git commit, ask the user for explicit permission for that specific commit. Permission is single-use and must be re-requested before every later commit. - Stop at task boundary. When the task is complete, stop. Do not auto-start the next task. Surface the commit reminder.
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 · 42 tokens per session scan A 4caf26a0b5d5
angular-implementer is an agent published in the GitHub repository loiane/specs-driven-development-spring-angular (57 stars, last pushed 2mo ago), licensed MIT. It adds 42 tokens to every session and 634 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 agents, from other repositories
java-refactor-expert
Expert Java and Spring Boot code refactoring specialist. Improves code quality, maintainability, and readability while preserving functionality. Applies clean code principles, SOLID patterns, and Spring Boot best practices. Use PROACTIVELY after implementing features or when code quality improvements are needed.
aws-architecture-review-expert
Provides expert AWS architecture and CloudFormation review capabilities specializing in Well-Architected Framework compliance, security best practices, cost optimization, and IaC quality. Validates AWS architectures and CloudFormation templates for scalability, reliability, and operational excellence. Use PROACTIVELY…
aws-solution-architect-expert
Provides expert AWS Solution Architecture capabilities for scalable cloud architectures, Well-Architected Framework, and enterprise-grade AWS solutions. Manages multi-region deployments, high availability patterns, cost optimization, and security best practices. Use PROACTIVELY for AWS architecture design, cloud…
prompt-engineering-expert
Provides expert prompt engineering capabilities specializing in advanced prompting techniques, LLM optimization, and AI system design. Masters chain-of-thought, constitutional AI, and production prompt strategies. Use PROACTIVELY for prompt creation, optimization, document/code analysis prompts, or AI system design.…
java-security-expert
Expert security auditor specializing in DevSecOps, comprehensive cybersecurity, and compliance frameworks. Masters vulnerability assessment, threat modeling, secure authentication (OAuth2/OIDC), OWASP standards, cloud security, and security automation. Handles DevSecOps integration, compliance (GDPR/HIPAA/SOC2), and…
QCAuditor
QC sub-agent. Executes tests, static analysis, and security tools. Asks user for permission before installing missing dependencies.