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/everruns/everruns/tc005_delete_agentgit clone --depth 1 https://github.com/everruns/everrunsWrote 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/agents/everruns/everruns/tc005_delete_agent)<a href="https://agentmods.dev/agents/everruns/everruns/tc005_delete_agent"><img src="https://agentmods.dev/badge/agents/everruns/everruns/tc005_delete_agent.svg" alt="Measured on agentmods" 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 | $0.00000 | $0.00393 |
| Opus 5 | $0.00000 | $0.00197 |
| Sonnet 5 | $0.00000 | $0.00079 |
| Haiku 4.5 | $0.00000 | $0.00039 |
Grade A, and why
TC005_delete_agent 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 4d 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 -s -X POST "http://localhost:9300/api/v1/agents" \ What it actually says
TC005: Delete Agent - Archive and Hard Delete
Description
Verify the two-stage agent deletion: soft delete (archive) via DELETE, then hard delete via POST /delete.
Preconditions
- API server running (
just start-dev)
Test Data
| Field | Value |
|---|---|
| Name | doomed-agent |
| Display name | Doomed Agent |
| System prompt | Temporary. |
Steps
-
Create agent:
curl -s -X POST "http://localhost:9300/api/v1/agents" \ -H "Content-Type: application/json" \ -d '{"name": "doomed-agent", "display_name": "Doomed Agent", "system_prompt": "Temporary."}'Save
id. -
Archive agent (soft delete):
curl -s -X DELETE "http://localhost:9300/api/v1/agents/{id}" -
Verify archived agent is still accessible:
curl -s "http://localhost:9300/api/v1/agents/{id}" -
Hard delete:
curl -s -X POST "http://localhost:9300/api/v1/agents/{id}/delete" -
Verify agent is gone:
curl -s -o /dev/null -w "%{http_code}" "http://localhost:9300/api/v1/agents/{id}"
Expected Result
| Check | Expected |
|---|---|
| Step 2: HTTP status | 204 with no response body |
| Step 3: agent accessible | Returns agent with status: "archived" |
| Step 4: HTTP status | 204 with no response body |
| Step 5: HTTP status | 404 |
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.
- 4d ago First seen · 57 lines · 0 tokens per session scan A 9612c1881728
TC005_delete_agent is an agent published in the GitHub repository everruns/everruns (47 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 393 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
check
Code quality auditor for the Trellis channel runtime. Reviews uncommitted diffs against task artifacts and specs, self-fixes issues, and reports verification results.
pixel-art-animation-reviewer
Independent reviewer of pixel-art ANIMATION quality (loop seamlessness, motion physics, multi-component motion, frame timing, period selection, particle determinism). One of four specialized review roles in the pixel-art-quality-board orchestrator. Use when the user asks to "check animation timing", "verify loop…
p1-research-orchestrator
Phase 1 research pipeline orchestrator. Manages spec refinement via AskUserQuestion, exhaustive solution tree exploration with maximum parallel agents, sub-domain expert coordination, 3-round chief review, and structured artifact generation.
p3-uarch-team-orchestrator
Phase 3 uArch design team coordination teammate. Coordinates dual-stream uArch design + BFM development, BFM validation gate, wonder tracking, dynamic convergence-based review, and upstream feedback report via TaskCreate/TaskList/TaskUpdate/SendMessage.
cdc-reviewer
CDC design strategy reviewer. Evaluates synchronization architecture quality, FIFO depth calculations, metastability budgets, and reset synchronization. Produces review reports in reviews/.
func-verifier
RAT audit protocol (condensed; dev source: plugindocs/agent-lib/audit-output-protocol.md — plugin-internal, do NOT Read it at runtime).