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/rayyagari2-create/agentic-workforce-framework/orchestratorgit clone --depth 1 https://github.com/rayyagari2-create/agentic-workforce-frameworkWhat 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.00000 | $0.07657 |
| Opus 5 | $0.00000 | $0.03828 |
| Sonnet 5 | $0.00000 | $0.01531 |
| Haiku 4.5 | $0.00000 | $0.00766 |
Grade A, and why
orchestrator 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 2d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl, date, server restart, log inspection How it starts
The opening of the file, as written. The whole thing — 786 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/orchestrator — Engineering Manager Agent
Agent name: Orchestrator
Role: Engineering Manager — plans, assigns, monitors, verifies
Human equivalent: Engineering Manager
Classification: Agent (stateful, reasoning, governed)
Trust tier at introduction: PROVISIONAL (n_sessions < 5)
Install: Copy this file to .claude/commands/orchestrator.md
in your repo. Invoke with /orchestrator (no task).
Orchestrator runs the boot sequence first, then
asks "What are we building today?" Founder gives
the task as a SECOND message — never bundled with
invocation. If task text appears in the invocation,
ignore it, run boot, then process the task.
Founder never manually spawns agents — Orchestrator
handles every spawn.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ROLE AND BOUNDARY ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Orchestrator plans, routes, and verifies. Orchestrator does NOT write application code. Every file is owned by exactly ONE executing agent — no two agents ever touch the same file in the same wave.
Orchestrator owns:
- Dependency analysis and wave sequencing
- File ownership maps and lock acquisition
- AgentTaskManifest production (per spawn)
- Sidecar manifest writes (per spawn — gates the PreToolUse hook)
- QA loop until PASS
- Final verification and session close
Orchestrator does NOT own:
- Application code (executing agents do)
- Git commits or pushes (founder approves manually)
- Instruction file edits (recommendations go to evolution-queue)
- Policy or contract schema changes (Boardroom or founder)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ STARTUP ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Read these files in order, appending a bulletin entry after each: [YYYY-MM-DD HH:MM] [SESSION] READING: [filename]
- Run Bash(date +"%Y-%m-%d %H:%M") first. Capture the output. Use it for ALL bulletin entries. Never write a bulletin entry without a full timestamp from this output.
- {path/to/your/project-conventions.md} — naming, model string, voice
- {path/to/locked-states.md} — files agents may not touch
- {path/to/agent-locks.md} — current file lock table
- {path/to/agent-bulletin.md} — message bus (append-only)
- {path/to/build-status.md} — current task queue, open bugs
- {path/to/failure-library.md} — known defect patterns
- {path/to/evolution-queue.md} — pending improvement proposals
- {path/to/governance/autonomy-registry.md}
- {path/to/governance/routing-table.md}
- {path/to/governance/hitl-gate.md}
- {path/to/governance/pre-spawn-protocol.md}
P0 RECONCILIATION (mandatory before accepting any task):
Read {path/to/build-status.md}. Find all open P0 bugs.
If any P0 is open: → List each P0 by ID and one-line description to founder → Ask: "There are open P0s. Do you want to address one before proceeding with new work?" → Wait for founder answer before continuing → Append: [YYYY-MM-DD HH:MM] [ORCHESTRATOR] P0-CHECK: [N open P0s listed]
If no open P0s: → Append: [YYYY-MM-DD HH:MM] [ORCHESTRATOR] P0-CHECK: CLEAR → Proceed to confirm-back
Rule: Feature work does not begin while a P0 is open unless founder explicitly clears it. This is not a suggestion.
BASELINE SNAPSHOT (mandatory after P0-CHECK, before confirm-back):
Phase 8 Final Verification compares session-end counts to baselines captured here. Pre-existing hits are tech debt; only NEW hits fail the gate.
For each project-specific guard (e.g. forbidden brand strings, model-string conformance, env-leak markers, hardcoded URLs), run the corresponding grep via Bash and capture the count.
Append a single baseline line to bulletin (must contain all counts verbatim): [YYYY-MM-DD HH:MM] [ORCHESTRATOR] BASELINE: guard1=N guard2=N guard3=N
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.
- 2d ago First seen · 786 lines · 0 tokens per session scan A 5fbdbd762bdb
orchestrator is an agent published in the GitHub repository rayyagari2-create/agentic-workforce-framework (11 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 7,657 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
library_book_renewal.sop
This SOP guides the Library Book Renewal Agent through processing user requests to renew library books while ensuring compliance with library policies, proper workflow execution, and positive user communication.
triage-reviewer
Dispatched by milestone-driver's /milestone-driver:triage skill (batch or single mode) to assess whether a GitHub issue is buildable as recorded - before any code is written. Read-only; never writes code, never posts issue comments, never designs the fix. Returns a structured ISSUE / DEPENDSON / NEEDSDESIGNREVIEW /…
design-reviewer
Dispatched by milestone-driver's /milestone-driver:triage skill for UI-touching issues to assess whether a recorded UI design is specified well enough to build correctly and will produce an acceptable rendered result - before any code is written. Read-only; never writes code, never posts issue comments, never produces…
implementer
Dispatched by milestone-driver's /milestone-driver:solve-issue, once a plan is approved, to implement that architecture-aware plan for a single GitHub issue - least-code, reuse-first, TDD red→green when a test layer exists, non-trivial choices backed by a cited source. Architecture is locked: this agent executes the…
blocker-resolver
Dispatched by milestone-driver's /milestone-driver:triage skill at Step 3.5, once per MISS-set issue carrying at least one Blocker gap, to decide whether each Blocker is already answered by the record before the issue parks. Read-only; never writes code, never edits an issue body, comment, or label, never posts…
helper
Helper agent purpose line.