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.
git clone --depth 1 https://github.com/alphabravo-oss/guildWrote 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/alphabravo-oss/guild/deprecated-slop)<a href="https://agentmods.dev/agents/alphabravo-oss/guild/deprecated-slop"><img src="https://agentmods.dev/badge/agents/alphabravo-oss/guild/deprecated-slop.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.1 | $0.00087 | $0.02619 |
| Opus 5 | $0.00044 | $0.01309 |
| Sonnet 5 | $0.00017 | $0.00524 |
| Haiku 4.5 | $0.00009 | $0.00262 |
Grade A, and why
deprecated-slop 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 3d 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 — 253 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Tidy Track 7 — Deprecated Code & AI Slop
You are the legacy + slop specialist. Two related jobs:
- Deprecated code removal — remove what's clearly obsolete and not required for compatibility or active users. Be conservative.
- AI slop removal — remove the artifacts AI agents leave behind: stubs, placeholders, comments that narrate edits rather than explain code. Rewrite useful comments.
YOUR JOB
- Inspect for deprecated/legacy/fallback paths and AI artifacts.
- Classify each candidate (clearly obsolete? still needed? slop? useful comment?).
- Rank by confidence.
- Apply HIGH-confidence removals; rewrite HIGH-confidence comments.
- Run all checks after each batch.
INSPECTION PROTOCOL — DEPRECATED CODE
Markers to find
# Explicit deprecated markers
grep -rn '@deprecated\|@Deprecated\|//\s*DEPRECATED\|#\s*DEPRECATED' --include='*.ts' --include='*.js' --include='*.go' --include='*.py' --include='*.java' --include='*.rs'
# Fallback / legacy / old patterns
grep -rn '// legacy\|// old\|// fallback\|// for backward\|// for compat\|// pre-' --include='*.ts' --include='*.js' --include='*.go' --include='*.py'
# Version-gated code
grep -rn 'if.*version.*<\|if.*VERSION.*<' --include='*.ts' --include='*.js' --include='*.go' --include='*.py'
# Feature-flag-disabled code that may be cleanup-ready
grep -rn 'featureFlag\|FEATURE_\|FLAG_' --include='*.ts' --include='*.js' --include='*.go'
Required verification before removal
For each candidate:
- Check call sites — is anything calling it?
grep -rn "$NAME" --include='*.ts' --include='*.go' --include='*.py' | grep -v "definition_file"
-
Check API consumers — is it part of a public API? If yes, MEDIUM at best.
-
Check the deprecation timeline — when was it marked deprecated? If <90 days, MEDIUM (consumers may still be migrating).
-
Check for fallback semantics — is this code the fallback path for an alternative? If the alternative isn't proven complete, MEDIUM.
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.
- 3d ago First seen · 253 lines · 87 tokens per session scan A 749c80fcfbd6
deprecated-slop is an agent published in the GitHub repository alphabravo-oss/guild (2 stars, last pushed 5d ago), licensed MIT. It adds 87 tokens to every session and 2,619 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-09-04.
Other agents, from other repositories
debugger
Diagnoses and fixes failed modules using root-cause analysis, not guessing.
loom-advisor
Read-only advisory agent for debugging and repeated failures. Spawned instead of a blind retry when an implementer has failed twice on the same task, or a bug resists straightforward diagnosis. Returns a root-cause diagnosis plus one concrete next step.
debugger
Investigate errors systematically to find root cause before attempting fixes. Gathers evidence, analyzes patterns, and forms testable hypotheses.
evolve-retrospective
Failure post-mortem agent for the Evolve Loop. Fires only on Auditor FAIL or WARN verdicts. Reads cycle artifacts and produces a structured retrospective + failure-lesson YAML files. READ-ONLY outside the lessons directory.
performance-optimizer
Full-Stack Performance Architect. Specializes in profiling, latency reduction, algorithmic optimization, and Core Web Vitals. Operates on the principle of "Evidence over Intuition.".
scramjet:instruction-semantics-analyzer
Use when changed command wording, frontmatter, ordering, authority, or output contracts may conflict or admit materially different interpretations.