the-agency-starter: Command for Claude Code

.claude/commands/agency-request.md

agency-request is a command for Claude Code from the-agency-ai/the-agency-starter. It costs 0 tokens per session (529 once invoked), scanned A, original, MIT.

A command for creating a numbered request file from a short summary.

In plain words
What is it for?
Use it to record a new project request under the configured principal, such as adding dark mode support.
Why use it?
It removes the manual work of choosing the next request number, creating a filename, and filling in the request template.

Command for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

This is the-agency-ai/the-agency-starter's own configuration. It tells Claude Code how to work on the-agency-starter 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 the-agency-starter configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is ./tools/config get principal 2>/dev/null || echo "jordan".

Reuse

Borrowing it

Nothing to install: this file belongs to the-agency-ai/the-agency-starter. 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/the-agency-ai/the-agency-starter/main/.claude/commands/agency-request.md
Clone the repo
git clone --depth 1 https://github.com/the-agency-ai/the-agency-starter

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 agency-request

README.md
[![agentmods](https://agentmods.dev/badge/commands/the-agency-ai/the-agency-starter/agency-request/github.svg)](https://agentmods.dev/commands/the-agency-ai/the-agency-starter/agency-request)
Your own site
<a href="https://agentmods.dev/commands/the-agency-ai/the-agency-starter/agency-request"><img src="https://agentmods.dev/badge/commands/the-agency-ai/the-agency-starter/agency-request/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 agency-request

Your own site · 80×15
<a href="https://agentmods.dev/commands/the-agency-ai/the-agency-starter/agency-request"><img src="https://agentmods.dev/badge/commands/the-agency-ai/the-agency-starter/agency-request.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 529 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.00000 $0.00529
Opus 5 $0.00000 $0.00264
Sonnet 5 $0.00000 $0.00106
Haiku 4.5 $0.00000 $0.00053

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

Security

Grade A, and why

agency-request 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 12d 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.

.claude/commands/agency-request.md · 73 lines

What it actually says

Create a REQUEST quickly

The user typed: /agency-request $ARGUMENTS

Purpose: Create a new REQUEST file quickly without breaking the user's flow.

Behavior

  1. If $ARGUMENTS is empty, show usage:

    Usage: /agency-request <summary>
    
    Example: /agency-request Add dark mode support to the dashboard
    

    Then stop - do not prompt for input.

  2. If $ARGUMENTS is provided, use it as the request summary

  3. Determine the principal (use ./tools/config get principal or default to "jordan")

  4. Get the next request number

  5. Create the REQUEST file from template

  6. Confirm creation with next steps

Implementation

  1. Get principal:

    ./tools/config get principal 2>/dev/null || echo "jordan"
    
  2. Count existing requests to find next number:

    ls claude/principals/{principal}/requests/REQUEST-*.md 2>/dev/null | wc -l
    

    Add 1 and zero-pad to 4 digits.

  3. Generate slug from summary (lowercase, spaces to hyphens, max 50 chars)

  4. Create file using template at claude/templates/REQUEST.md

  5. Replace template placeholders:

    • {{PRINCIPAL}} → principal name
    • {{NUMBER}} → zero-padded number (e.g., 0042)
    • {{SUMMARY}} → the summary from $ARGUMENTS
    • {{REQUESTED_BY}} → principal name
    • {{AGENT}} → "captain" (default)
    • {{WORKSTREAM}} → "housekeeping" (default)
    • {{DATE}} → today's date
    • {{SUMMARY_DESCRIPTION}} → the full summary

Request File Location

claude/principals/{principal}/requests/REQUEST-{principal}-{XXXX}-{slug}.md

Output Format

After creating the request:

REQUEST created: REQUEST-{principal}-{XXXX}
Location: claude/principals/{principal}/requests/REQUEST-{principal}-{XXXX}-{slug}.md

Next steps:
1. Fill in the Details section
2. Add Acceptance Criteria
3. Assign to an agent (default: captain)

Notes

  • Keep it fast - create the file, confirm, done
  • User can fill in details later
  • Default to housekeeping workstream and captain agent
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. 12d ago First seen · 73 lines · 0 tokens per session scan A 402629c8727e

Subscribe to this mod's changes

agency-request is a command published in the GitHub repository the-agency-ai/the-agency-starter (20 stars, last pushed 7mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 529 tokens. 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.