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/Connected-Mate/corporate-launcherWrote 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/connected-mate/corporate-launcher/url-purge-subagent)<a href="https://agentmods.dev/agents/connected-mate/corporate-launcher/url-purge-subagent"><img src="https://agentmods.dev/badge/agents/connected-mate/corporate-launcher/url-purge-subagent/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/agents/connected-mate/corporate-launcher/url-purge-subagent"><img src="https://agentmods.dev/badge/agents/connected-mate/corporate-launcher/url-purge-subagent.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.00048 | $0.01004 |
| Opus 5 | $0.00024 | $0.00502 |
| Sonnet 5 | $0.00010 | $0.00201 |
| Haiku 4.5 | $0.00005 | $0.00100 |
Grade A, and why
url-purge 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 10d 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 — 67 lines — stays where its author put it; the contents beside it link to each section on GitHub.
url-purge subagent
Defense-in-depth verifier for Phase 3.6 of the corporate-launcher pipeline. Runs after render.py has emitted a launcher tree, and before packaging. Parent agent invokes this subagent whenever an extra audit layer is requested on top of audit-launcher.py.
What it does
Executes scripts/url-purge.py against the rendered launcher tree to detect any vendor public endpoint (api.anthropic.com, api.openai.com, generativelanguage.googleapis.com, etc.) that leaks outside the legitimate locations (permissions.deny arrays, # tpl: comments, doc sections explicitly flagged as blocked). The full blocklist lives at templates/shared/url-purge-list.json and is the single source of truth.
Inputs
| Flag | Description |
|---|---|
--launcher-dir <path> |
Absolute path to the rendered launcher root (output of render.py). |
--config <path> |
Path to the active launcher config JSON. Must contain at minimum the entity block and may declare URL_PURGE_AUTOPATCH. |
Workflow
- Resolve the skill root via
${CLAUDE_SKILL_DIR}(parent agent must export it). Resolve a short session id<sid>(8 hex chars) for report uniqueness. - Run the primary scan:
python3 ${CLAUDE_SKILL_DIR}/scripts/url-purge.py \ --launcher-dir <X> \ --config <Y> \ --report /tmp/purge-<sid>.md \ --strict--strictmakes the exit code equal the violation count, which the subagent uses to decide P0 vs clean. - Parse
/tmp/purge-<sid>.md. Each violation row has the form| <file> | <line> | <url> | VIOLATION |. Bucket findings by file family:launcher.sh,launcher.ps1,settings.json,settings.local.json→ P0 (will execute or be loaded by the launcher)..env,*.tplrendered shell hooks,mcp.*.json→ P1.- Markdown docs (
README.md,CHANGELOG.md,cyber-rules.md, etc.) → P2.
- If the active config contains
URL_PURGE_AUTOPATCH=yesand all violations are P2/P3, re-run with--patchto rewrite each leak to the[BLOCKED-VENDOR-URL]sentinel (script auto-creates.bakbackups):
Never autopatch P0/P1: a leak insidepython3 ${CLAUDE_SKILL_DIR}/scripts/url-purge.py \ --launcher-dir <X> --config <Y> --patch \ --report /tmp/purge-<sid>-patched.mdlauncher.shis a render-template bug that must be fixed upstream, not rewritten silently. - Summarize for the parent: total finding count, P0/P1/P2 split, critical file list (paths only, no URL echo to avoid leaking secrets in transcript), and absolute path to the full report.
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.
- 10d ago First seen · 67 lines · 48 tokens per session scan A 59b612bd6b6e
url-purge is an agent published in the GitHub repository Connected-Mate/corporate-launcher (3 stars, last pushed 3mo ago), licensed MIT. It adds 48 tokens to every session and 1,004 once invoked, about $0.0002 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-31.
Other agents, from other repositories
changes-review
Changes review agent that verifies plan compliance, code quality, and goal achievement in a single pass. Returns structured JSON findings.
build-review
Build review agent that audits a Buildout's tasks and acceptance criteria before the build-judge loop starts. Returns structured JSON findings.
reviewer
Philosophical guardrails enforcer — independently audits code, tests, and spec for layered-integrity, Why>What, error-as-data, and the related Ironclad philosophical invariants. Activate only when the connected project contains spec.yaml or the user explicitly names Cladding; ignore ordinary requests in uninitialized…
spec-review
Spec review agent that verifies alignment with user requirements and challenges dangerous assumptions. Returns structured JSON findings.
developer
Implementer — writes production code, tests, and migrations. The "generic engineer" fallback when no narrower specialist exists. Activate only when the connected project contains spec.yaml or the user explicitly names Cladding; ignore ordinary requests in uninitialized projects.
orchestrator
Cycle-contract coordinator for a cladding-managed project — declares the outcome conditions each feature must satisfy (spec-first, independent verification, gated completion) and judges the recorded evidence; the host owns execution form. Activate only when the connected project contains spec.yaml or the user…