TC005_delete_agent

TC005_delete_agent is an agent for coding agents from everruns/everruns. It costs 0 tokens per session (393 once invoked), scanned A, original, MIT.

An API test for removing an agent in two stages: first archiving it, then permanently deleting it.

In plain words
What is it for?
Testing DELETE and POST deletion endpoints, their responses, and the agent's final availability.
Why use it?
It checks that archived agents remain accessible with an archived status until permanent deletion, and are gone afterward.

Agent

Install

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.

agentmods
npx agentmods add agents/everruns/everruns/tc005_delete_agent
Clone the repo
git clone --depth 1 https://github.com/everruns/everruns

Wrote 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.

agentmods badge for TC005_delete_agent

README.md
[![agentmods](https://agentmods.dev/badge/agents/everruns/everruns/tc005_delete_agent.svg)](https://agentmods.dev/agents/everruns/everruns/tc005_delete_agent)
Your own site
<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>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 393 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 4d ago against content hash 9612c1881728, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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" \
test_cases/api/agents/TC005_delete_agent.md · 57 lines

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

  1. 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.

  2. Archive agent (soft delete):

    curl -s -X DELETE "http://localhost:9300/api/v1/agents/{id}"
    
  3. Verify archived agent is still accessible:

    curl -s "http://localhost:9300/api/v1/agents/{id}"
    
  4. Hard delete:

    curl -s -X POST "http://localhost:9300/api/v1/agents/{id}/delete"
    
  5. 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
Changes

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.

  1. 4d ago First seen · 57 lines · 0 tokens per session scan A 9612c1881728

Subscribe to this mod's changes

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.

Related

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.

mindfold-ai/Trellis · 34 tokens

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…

AnastasiyaW/codex-claude-code-config · 140 tokens

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.

babyworm/rtl-agent-team · 50 tokens

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.

babyworm/rtl-agent-team · 60 tokens

cdc-reviewer

CDC design strategy reviewer. Evaluates synchronization architecture quality, FIFO depth calculations, metastability budgets, and reset synchronization. Produces review reports in reviews/.

babyworm/rtl-agent-team · 34 tokens

func-verifier

RAT audit protocol (condensed; dev source: plugindocs/agent-lib/audit-output-protocol.md — plugin-internal, do NOT Read it at runtime).

babyworm/rtl-agent-team · 43 tokens