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 skills add mattmre/EVOKORE-MCP-PUBLIC --skill agent-spawngit clone --depth 1 https://github.com/mattmre/EVOKORE-MCP-PUBLICWrote 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/mattmre/evokore-mcp-public/agent-spawn)<a href="https://agentmods.dev/skills/mattmre/evokore-mcp-public/agent-spawn"><img src="https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/agent-spawn/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/mattmre/evokore-mcp-public/agent-spawn"><img src="https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/agent-spawn.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.00028 | $0.00415 |
| Opus 5 | $0.00014 | $0.00208 |
| Sonnet 5 | $0.00006 | $0.00083 |
| Haiku 4.5 | $0.00003 | $0.00042 |
Grade A, and why
agent-spawn 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 5d 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.
What it actually says
/agent-spawn — Spawn Specialist Sub-Agent
Delegates a specific task to a specialist sub-agent, keeping the main session context clean.
Usage
/agent-spawn "researcher" "Find all usages of TrustLedger in src/"
/agent-spawn "implementer" "Implement the score decay function in src/TrustLedger.ts"
/agent-spawn "tester" "Write vitest tests for pattern-extractor.js"
Available Archetypes
| Archetype | Domain | Best for |
|---|---|---|
| researcher | research | Codebase analysis, dependency tracing |
| implementer | execution | Feature implementation, bug fixes |
| tester | quality | Test writing, coverage analysis |
| reviewer | quality | Code review, security audit |
| architect | orchestration | Design decisions, API design |
| debugger | execution | Root cause analysis, bug investigation |
What it does
- Creates an Agent tool call with the specified subagent_type
- Passes the task description and relevant context
- The sub-agent runs in isolation and returns a result
- Result is summarized in the main session context
Best practices
- Use researcher before implementer (plan before code)
- Keep sub-agent prompts self-contained (include file paths, context)
- Use isolation: worktree for implementers that write code
- Prefer sequential spawning to avoid worktree race conditions
Integration
- Works with AGT-019 (Claims Coordinator) for resource claim management
- Sub-agent results are captured in session-replay log
- SessionAnalyticsManager tracks subagent counts per session
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.
- 5d ago First seen · 53 lines · 28 tokens per session scan A bebd31eb6410
agent-spawn is a skill published in the GitHub repository mattmre/EVOKORE-MCP-PUBLIC (3 stars, last pushed 3mo ago), licensed MIT. It adds 28 tokens to every session and 415 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-09-03.
Other skills, from other repositories
swarm-advanced
Advanced swarm orchestration patterns for research, development, testing, and complex distributed workflows.
brainstorming
Use this BEFORE any creative or feature work: building a new feature, adding functionality, changing behavior, or making a nontrivial design decision. Turns the user's request into a validated design — recorded as a spec-graph task-spec — before any implementation. Do not skip this because a change looks small.
reviewing-changes
Use when a review package asks you to review a plan step's change set (todo.startReview): you are the REVIEWER, not the author. How to judge an agent-written diff, file findings with addreviewcomment, and settle with exactly one reviewverdict.
asking-user-questions
Use when composing an askuserquestion round inside a workflow, or when a workflow skill names it at a question step. Shared norms for the tool — not a workflow, nothing to execute.
shipping-a-pr
Use when finished work needs to ship as a pull request, or when the ask is about a PR — creating one, bringing it up to date, adding screenshots, watching its checks, or addressing its review comments. Not for reviewing a PR you are not shipping.
setting-up-a-project
Use whenever asked to set up, onboard, initialize, or spec a project — the front door when the workspace has no spec graph yet (brand-new or an existing codebase); also seeded by the app's Set-up-project card (/skill:setting-up-a-project). Not for feature work in an already-specced project — use the brainstorming…