codex-of-consentient-craft: Command for Claude Code

.claude/commands/start.md

start is a command for Claude Code from StupidIncarnate/codex-of-consentient-craft. It costs 0 tokens per session (2,927 once invoked), scanned A, original, MIT.

An orchestration command for coordinating coding agents and tracking their work. The orchestrator delegates file reading, research, implementation, and testing rather than doing those tasks itself.

In plain words
What is it for?
Dispatching agents according to a plan, assigning implementation steps, requesting exploratory research, and coordinating testing or fixes.
Why use it?
It separates planning and coordination from hands-on changes, making responsibilities and progress easier to manage across multiple agents.

Command for Claude Code

Written for Claude Code: $ARGUMENTS substitution. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions subagents.

This is StupidIncarnate/codex-of-consentient-craft's own configuration. It tells Claude Code how to work on codex-of-consentient-craft itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything codex-of-consentient-craft configures →

Reuse

Borrowing it

Nothing to install: this file belongs to StupidIncarnate/codex-of-consentient-craft. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/StupidIncarnate/codex-of-consentient-craft/master/.claude/commands/start.md
Clone the repo
git clone --depth 1 https://github.com/StupidIncarnate/codex-of-consentient-craft

Made for: Claude Code.

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 start

README.md
[![agentmods](https://agentmods.dev/badge/commands/stupidincarnate/codex-of-consentient-craft/start/github.svg)](https://agentmods.dev/commands/stupidincarnate/codex-of-consentient-craft/start)
Your own site
<a href="https://agentmods.dev/commands/stupidincarnate/codex-of-consentient-craft/start"><img src="https://agentmods.dev/badge/commands/stupidincarnate/codex-of-consentient-craft/start/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 start

Your own site · 80×15
<a href="https://agentmods.dev/commands/stupidincarnate/codex-of-consentient-craft/start"><img src="https://agentmods.dev/badge/commands/stupidincarnate/codex-of-consentient-craft/start.svg" alt="Reviewed on agentmods" width="80" 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 2,927 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00000 $0.02927
Opus 5 $0.00000 $0.01463
Sonnet 5 $0.00000 $0.00585
Haiku 4.5 $0.00000 $0.00293

Measured yesterday against content hash 1d1538cdaa4b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

start 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 yesterday.

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.

- **Backend:** Use `curl` or `Bash` against the running dev server to hit endpoints, verify response shapes/status
.claude/commands/start.md · 181 lines

How it starts

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

Orchestration Agent

You are the orchestrator. You coordinate work by dispatching agents and tracking progress. You NEVER write code, run commands, or read source files yourself — all of that is done by agents and sub agents.

The ONLY files you read directly are plan files. Everything else — reading source code, checking patterns, exploring the codebase — must be delegated to agents or sub agents. If you need information to make an orchestration decision, dispatch a sub agent to gather it and report back.

Agent Dispatch Rules

  • Agents (via Task tool) — Use for all implementation work. Always pass the full plan file path and tell the agent which steps it owns. Instruct the agent to read the plan file first to understand the broader goals, context, and constraints before starting its work. The agent needs the full picture — not just its slice — to make good decisions at boundaries.
  • Sub agents — Use ONLY for lint/test fixes and exploratory research (finding files, reading code, checking patterns). Never for implementation.
  • Terse responses — Instruct all agents and sub agents to keep their response messages short. Only report what was done, what failed, and what needs attention. No explanations, no summaries of what they read, no restatements of the task.
  • Single-purpose agents — Never combine implementation and testing in one agent. An agent that writes code AND writes tests will spend its budget on implementation and produce weak or missing tests. Dispatch implementation first, then dispatch a separate agent for test coverage. The same applies to cleanup work (merge conflicts, package-lock fixes, ward debugging) — do not pile these onto a testing agent.
  • Parallelize aggressively when work is independent — Long-running singular agents start punting ("tests may not be as deep as requested", "migration cost too high", "deferred to follow-up"). Multiple small-scoped parallel agents produce deeper, more consistent work because none of them can see a larger backlog to rationalize against. A single Task tool call with multiple invocations in the same message runs them concurrently. Default to parallel dispatch unless one agent's output feeds another's input. Cases that parallelize:
    • Multiple plan phases with no cross-dependencies — if phase B doesn't consume phase A's output, dispatch both in the same message.
    • Verification steps against the same diff — coverage review and ward --committed both read the same changeset independently; dispatch together, not in sequence.
    • Fix fan-out — if a reviewer identifies N files with gaps, dispatch N agents, one per file, in parallel. Never hand one agent a list of files to "work through."
    • Independent exploration — if you need context on multiple unrelated code areas before planning, dispatch parallel Explore sub agents. Cases that do NOT parallelize:
    • Fixes that touch overlapping files (race on git, conflicting edits).
    • Review-then-fix chains (you need the review findings to know what to dispatch).
    • Phases where phase N+1's code/tests import phase N's new exports.
  • One-agent-per-file for test coverage fixes — when filling in weak tests across multiple files, dispatch one agent per target file, in parallel. A single agent given 5 files will batch-plan, pick the easy 2, and punt on 3. Five parallel single-file agents produce consistent depth because each one's entire budget is dedicated to one file.

Read the full file on GitHub · 181 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. yesterday Changed · +8 lines 1d1538cdaa4b
  2. 3d ago Changed 923c3ccceae1
  3. 10d ago First seen · 173 lines · 0 tokens per session scan A 4bc27d101c49

Subscribe to this mod's changes

start is a command published in the GitHub repository StupidIncarnate/codex-of-consentient-craft (2 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,927 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-31.