Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/brody-0125/my-claude-skillsnpx agentmods add skills/brody-0125/my-claude-skills/engineering-workflowWrote 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/brody-0125/my-claude-skills/engineering-workflow)<a href="https://agentmods.dev/skills/brody-0125/my-claude-skills/engineering-workflow"><img src="https://agentmods.dev/badge/skills/brody-0125/my-claude-skills/engineering-workflow/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/skills/brody-0125/my-claude-skills/engineering-workflow"><img src="https://agentmods.dev/badge/skills/brody-0125/my-claude-skills/engineering-workflow.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.00086 | $0.08696 |
| Opus 5 | $0.00043 | $0.04348 |
| Sonnet 5 | $0.00017 | $0.01739 |
| Haiku 4.5 | $0.00009 | $0.00870 |
Grade A, and why
engineering-workflow 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 — 596 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Engineering Workflow — Micro-Agent Orchestration System
A 3-tier micro-agent system that routes engineering architecture queries to specialized domain agents, resolves cross-domain constraints, and synthesizes unified recommendations.
Role
A 3-tier micro-agent orchestration system for engineering architecture decisions spanning four major systems: DB (Database), BE (Backend), IF (Infrastructure), and SE (Security).
Architecture Overview
Tier 1: Gateway Router (this SKILL.md)
|
┌───────────────┼───────────────┐
| | |
Tier 2: System Orchestrators
┌────┐ ┌────┐ ┌────┐ ┌────┐
│ DB │ │ BE │ │ IF │ │ SE │
└──┬─┘ └──┬─┘ └──┬─┘ └──┬─┘
| | | |
Tier 3: Micro Agents (domain-specific)
┌─────────────────────────────┐
│ A: Storage D: API Design │
│ B: Query E: Concurrency │
│ C: Schema F: Networking │
│ ... ... │
└─────────────────────────────┘
Core Principles
- Constraint-first synthesis: Agents declare constraints; conflicts are detected and resolved before output
- Deterministic fast-path: Use
classify-query.shfor unambiguous queries; reserve LLM classification for edge cases - Graceful degradation: If an agent fails or times out, return partial results with clear warnings
Routing Table
System Detection
| System | Keywords | Orchestrator |
|---|---|---|
| DB | database, storage engine, index, query optimization, schema, replication, sharding, partition, consistency model, isolation level, MVCC, WAL, B-tree, LSM, vacuum, ACID, DynamoDB, RCU, WCU, hot partition, adaptive capacity, throttling | agents/db-orchestrator.md |
| BE | backend, API design, service layer, concurrency, thread pool, connection pool, caching strategy, microservice, event-driven, CQRS, saga, domain model | agents/be-orchestrator.md |
| IF | infrastructure, deployment, container, kubernetes, CI/CD, load balancer, CDN, monitoring, observability, scaling, network topology, DNS, TLS | agents/if-orchestrator.md |
| SE | security, authentication, authorization, encryption, key management, RBAC, ABAC, OAuth, JWT, zero-trust, penetration, vulnerability, compliance | agents/se-orchestrator.md |
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- agents/audit-reviewer.md 3.8 KB
- agents/be-orchestrator.md 14 KB
- agents/be/b1-context-classifier.md 7.1 KB
- agents/be/b2-acl-designer.md 6.7 KB
- agents/be/b3-event-architect.md 7.0 KB
- agents/be/b4-saga-coordinator.md 6.9 KB
- agents/be/b5-implementation-guide.md 5.3 KB
- agents/be/r1-bulkhead-architect.md 5.2 KB
- agents/be/r2-cb-configurator.md 6.7 KB
- agents/be/r3-retry-strategist.md 6.8 KB
- agents/be/r4-observability-designer.md 7.1 KB
- agents/be/s1-dependency-auditor.md 6.4 KB
- agents/be/s2-di-pattern-selector.md 6.2 KB
- agents/be/s3-architecture-advisor.md 6.4 KB
- agents/be/s4-fitness-engineer.md 5.7 KB
- agents/be/s5-convention-verifier.md 5.8 KB
- agents/be/t1-test-guard.md 6.8 KB
- agents/be/t2-test-strategist.md 5.3 KB
- agents/be/t3-test-generator.md 5.4 KB
- agents/be/t4-quality-assessor.md 5.8 KB
- agents/db-orchestrator.md 11 KB
- agents/db/a1-engine-selector.md 5.6 KB
- agents/db/a2-compaction-strategist.md 4.3 KB
- agents/db/b1-index-architect.md 5.5 KB
- agents/db/b2-join-optimizer.md 5.2 KB
- agents/db/b3-query-plan-analyst.md 4.7 KB
- agents/db/c1-isolation-advisor.md 5.6 KB
- agents/db/c2-mvcc-specialist.md 5.4 KB
- agents/db/c3-lock-designer.md 4.4 KB
- agents/db/d1-schema-expert.md 5.9 KB
- agents/db/d2-document-modeler.md 6.1 KB
- agents/db/d3-access-pattern-modeler.md 5.8 KB
- agents/db/e1-page-optimizer.md 5.3 KB
- agents/db/e2-wal-engineer.md 5.7 KB
- agents/db/e3-buffer-tuner.md 4.9 KB
- agents/db/f1-replication-designer.md 6.6 KB
- agents/db/f2-consistency-selector.md 6.5 KB
- agents/db/f3-sharding-architect.md 7.7 KB
- agents/db/f4-dynamodb-throughput-optimizer.md 7.6 KB
- agents/if-orchestrator.md 3.5 KB
- agents/se-orchestrator.md 17 KB
- agents/se/a1-authn-flow-designer.md 5.6 KB
- agents/se/a2-token-strategist.md 6.3 KB
- agents/se/a3-session-architect.md 6.9 KB
- agents/se/a4-credential-manager.md 7.4 KB
- agents/se/c1-compliance-mapper.md 6.0 KB
- agents/se/c2-audit-trail-designer.md 7.3 KB
- agents/se/c3-zero-trust-planner.md 7.4 KB
- agents/se/c4-privacy-engineer.md 8.2 KB
- agents/se/e1-encryption-advisor.md 4.6 KB
- agents/se/e2-key-lifecycle-planner.md 5.0 KB
- agents/se/e3-tls-configurator.md 4.5 KB
- agents/se/e4-secret-manager.md 5.4 KB
- agents/se/n1-header-hardener.md 5.2 KB
- agents/se/n2-waf-rule-designer.md 5.4 KB
- agents/se/n3-api-gateway-security.md 6.2 KB
- agents/se/n4-input-sanitizer.md 7.0 KB
- agents/se/v1-threat-modeler.md 8.0 KB
- agents/se/v2-owasp-auditor.md 6.9 KB
- agents/se/v3-pentest-strategist.md 7.9 KB
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 · 596 lines · 86 tokens per session scan A fba05a3aa88c
engineering-workflow is a skill published in the GitHub repository brody-0125/my-claude-skills (2 stars, last pushed 6mo ago), licensed MIT. It adds 86 tokens to every session and 8,696 once invoked, about $0.0004 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 skills, from other repositories
self-audit
Self-audit this skills repo against CLAUDE.md invariants, the artifact contract, and README/CLAUDE.md/docs sync via three parallel read-only subagents. Local meta-skill — independent of the /task: pipeline.
grill
Interrogate a plan or decision one question at a time before capture, keeping a decision-plus-rationale ledger, then route to the right capture skill.
architect
Answer build-or-adopt honestly, then design one committed architecture from your own understanding of the problem — driven by ranked quality attributes, stress-tested against the field and against change, proven by a walking skeleton, its consequences confirmed by the user, committed to ARCHITECTURE.md. A command the…
designer
Settle the look before the pixels — audience and context first, then the base and the delta, taste settled by looking at real states, accessibility as the floor, one design language committed to DESIGN.md as tokens with roles. A command the user types, for work with an interface someone will see; standalone, no other…
daily-working
End-to-end pipeline: pull a task from the project's task tracker by ID (Redmine or GitHub Issues today, more addable via a new adapter), sanity-check and impact-assess it against the codebase before touching anything, implement it with the Claude CLI, verify the result in a real browser via the Claude Chrome extension…
compact
Put the compaction question to a snapshot that drifted — route what no longer constrains unfinished work, and say what moves before moving it. In flight or done; the log is appended to, never edited or trimmed.