audit-launcher

audit-launcher is an agent for Claude Code from Connected-Mate/corporate-launcher. It costs 60 tokens per session (1,274 once invoked), scanned A, original, MIT.

A subagent that checks a generated corporate launcher with an audit script. A launcher is the project tree used to start or configure a corporate assistant, and the audit reports whether it meets a defined security baseline.

In plain words
What is it for?
Use it after rendering a launcher to check the launcher directory and configuration against the project's security rules.
Why use it?
It gives the main agent a short pass-or-fail result for the launcher while keeping detailed audit output separate.

Agent for Claude Code

Written for Claude Code: context: fork in frontmatter. Also seen: mentions subagents.

Part of the corporate-launcher plugin — 1 skill, 1 command, 4 agents shipped together

Good fit Use it after rendering a launcher to check the launcher directory and configuration against the project's security rules.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/connected-mate/corporate-launcher/audit-launcher-subagent
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.

Clone the repo
git clone --depth 1 https://github.com/Connected-Mate/corporate-launcher

Made for: Claude Code.

Or install corporate-launcher, the plugin that ships this one along with the rest of its 1 skill, 1 command, 4 agents.

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 audit-launcher

README.md
[![agentmods](https://agentmods.dev/badge/agents/connected-mate/corporate-launcher/audit-launcher-subagent/github.svg)](https://agentmods.dev/agents/connected-mate/corporate-launcher/audit-launcher-subagent)
Your own site
<a href="https://agentmods.dev/agents/connected-mate/corporate-launcher/audit-launcher-subagent"><img src="https://agentmods.dev/badge/agents/connected-mate/corporate-launcher/audit-launcher-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.

agentmods 80×15 button for audit-launcher

Your own site · 80×15
<a href="https://agentmods.dev/agents/connected-mate/corporate-launcher/audit-launcher-subagent"><img src="https://agentmods.dev/badge/agents/connected-mate/corporate-launcher/audit-launcher-subagent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,274 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00060 $0.01274
Opus 5 $0.00030 $0.00637
Sonnet 5 $0.00012 $0.00255
Haiku 4.5 $0.00006 $0.00127

Measured 9d ago against content hash 2df4ac98659f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

audit-launcher 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 9d 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.

agents/audit-launcher-subagent.md · 145 lines

How it starts

The opening of the file, as written. The whole thing — 145 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Audit Launcher Subagent

Runs the corporate-launcher self-audit against a rendered launcher tree and returns a tight pass/fail verdict to the parent agent. Forked context so the full audit report never pollutes the main conversation.

What this subagent does

  1. Invokes scripts/audit-launcher.py against the rendered launcher directory with the same DOG config that produced it.
  2. Reads the structured JSON sidecar (8 checks, pass/fail each).
  3. Classifies failures by severity (P0/P1/P2) using a static rule map.
  4. Returns a 3-5 line verdict + path to the full markdown report.
  5. Never echoes the report body back to parent — keeps token cost flat.

Input

The parent agent provides these parameters in the spawn prompt:

  • --launcher-dir <path>: absolute path to the rendered launcher tree (e.g. build/acme-copilot/).
  • --config <path>: absolute path to the DOG JSON config used to render it.
  • --sid <slug>: short session id used to namespace report files (e.g. acme-20260516).

If any parameter is missing, return immediately with ERROR: missing <param> — do not invent defaults.

Workflow

Step 1 — preflight

Verify the audit script and inputs exist:

test -f "${CLAUDE_SKILL_DIR}/scripts/audit-launcher.py" || echo "MISSING_SCRIPT"
test -d "<launcher-dir>" || echo "MISSING_LAUNCHER_DIR"
test -f "<config>" || echo "MISSING_CONFIG"

If any check fails, return a clean error to the parent (see "Cost guard" section). Do not proceed.

Step 2 — run the audit

python3 "${CLAUDE_SKILL_DIR}/scripts/audit-launcher.py" \
    --launcher-dir "<launcher-dir>" \
    --config "<config>" \
    --output "/tmp/audit-<sid>.md"

The script writes both /tmp/audit-<sid>.md (human report) and /tmp/audit-<sid>.json (sidecar, same basename, .json suffix). It exits 0 on full pass, 1 on any failure. Capture the exit code but do NOT rely on it alone — read the JSON for the breakdown.

Step 3 — parse the JSON

Read /tmp/audit-<sid>.json and count failures per severity using this map:

Read the full file on GitHub · 145 lines

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. 9d ago First seen · 145 lines · 60 tokens per session scan A 2df4ac98659f

Subscribe to this mod's changes

audit-launcher is an agent published in the GitHub repository Connected-Mate/corporate-launcher (3 stars, last pushed 3mo ago), licensed MIT. It adds 60 tokens to every session and 1,274 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-31.

Related

Other agents, from other repositories

blind-author

Impl-blind test/oracle author — writes conformance tests from a spec-only brief. Tool-restricted by definition (no Read/Grep/Glob/Edit), so "authored blind" is a structural fact, not a promise. Activate only when the connected project contains spec.yaml or the user explicitly names Cladding; ignore ordinary requests…

qwerfunch/cladding · 75 tokens

test-engineer

Test engineer agent for bug reproduction and verification. Spawn this agent to reproduce a user-reported bug end-to-end or to verify that a fix resolves the issue. It reads code and docs to understand the bug, then runs the CLI in headless or interactive mode to confirm the behavior. It can write test scripts as a…

QwenLM/qwen-code · 119 tokens

ap-verifier

L3 independent G6 verifier - proves behavior with real before/after runs, regression checks, adversarial inputs, and >=95% changed-line coverage.

Spielewoy/autoprompt-skill · 35 tokens

developer

Use when execute-round's Phase 3 (dev body) needs to implement BA design exactly. Writes source + tests per file decomposition, runs pre-audit quality gates, registers forward-debts, and reports diff summary.

Arch1eSUN/Arcgentic · 47 tokens

ring:qa

Senior QA Analyst for financial systems. Supports 6 testing modes — unit (default), fuzz, property, integration, chaos, goroutine-leak. Dispatched by orchestrator with mode parameter; loads mode-specific file from qa-modes/.

LerianStudio/ring · 52 tokens

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…

qwerfunch/cladding · 68 tokens