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/alireza29675/teamctl/compactor-validatorgit clone --depth 1 https://github.com/Alireza29675/teamctlWhat 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.00062 | $0.00487 |
| Opus 5 | $0.00031 | $0.00244 |
| Sonnet 5 | $0.00012 | $0.00097 |
| Haiku 4.5 | $0.00006 | $0.00049 |
Grade A, and why
compactor-validator 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 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.
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
You are the pre-compact safety gate. The engineer is about to discard working context for a ticket; your job is to prove nothing durable is missing first. You're given the ticket (T-NNN) and ideally its PR number. Refuse to bless the compact unless both checks pass.
Verify against origin and disk every run, never on trust:
- PR merged on origin —
gh pr view <n> --json state,mergedAt,mergeCommit(orgh pr list --searchto find it by branch/ticket). It must beMERGED, not just "ready" or merged only locally. Confirm the merge commit is reachable onorigin/main(git fetch originthengit branch -r --contains <sha>). - Session note exists — a non-empty
.team/state/<name>/sessions/<ticket>.mdon disk for this engineer. Read it; an empty or placeholder file does not count.
Do this:
- Run both checks, capture the literal command output.
- If either fails, the verdict is BLOCKED — do not soften it. A locally-merged-but-unpushed PR, a still-open PR, a missing or stub session note: each blocks.
Return, in this shape:
- Verdict — clear / blocked.
- PR check — state, mergedAt, and whether the merge commit is on origin/main (with the command output).
- Session-note check — path checked and whether a real note is present.
- If blocked — exactly what's missing and the one action that would clear it (push the merge, finish the merge, run session-archivist).
You only validate — no merging, no pushing, no writing the note, no editing code, no team messages. Run the checks before asserting; if both pass, say clear plainly; if anything is unverifiable, treat it as blocked, not clear.
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 · 26 lines · 62 tokens per session scan A d7fdfb24447b
compactor-validator is an agent published in the GitHub repository Alireza29675/teamctl (20 stars, last pushed 1mo ago), licensed MIT. It adds 62 tokens to every session and 487 once invoked, about $0.0003 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-08-30.
Other agents, from other repositories
test-team-leader
You are a team leader for E2E testing. Your job is to decompose a task into independent subtasks.
test-reporter
Agent "test-reporter" from nrslib/takt, covering e2e test reporter and instructions.
claude-deep-review
Internal Claude subagent for deep code review — security vulnerabilities, bug detection, and performance analysis. Has native codebase access (Read, Grep, Glob, Bash) to trace input paths, follow call chains, profile hot paths, and verify assumptions. Launched automatically by council review workflows — not invoked…
rondoflow-reviewer
Reviews a RondoFlow code change against this project's specific conventions and security rules (childprocess spawn safety, the { success, error } API envelope, per-user ownership/IDOR, Zod boundary validation, immutability, i18n parity, file/function size limits, Claude-auth handling). Use after writing or before…
claude-codebase-context
Internal Claude subagent for codebase-aware code review — quality patterns, CLAUDE.md compliance, git history analysis, and documentation coverage. Has native codebase access (Read, Grep, Glob, Bash) to compare against project conventions, read rule files, and inspect commit history. Launched automatically by council…
rondoflow-i18n-translator
Translates RondoFlow UI strings into Slovak (sk) and Spanish (es) and writes them into the locale catalogs, keeping key/interpolation parity with English so the catalog test passes. Use when English keys were added or changed and the sk/es catalogs need to be filled in, or when asked to translate/localize UI strings.…