brd-intake

brd-intake is a command for Claude Code from ihudak/ihudak-claude-plugins. It costs 150 tokens per session (8,566 once invoked), scanned A, original, MIT.

A workflow for bringing a customer’s business requirements document, or BRD, into a requirements-tracking process. It copies the document, lists its requirements, reviews possible defects with a person, and records how each requirement will be handled.

In plain words
What is it for?
Use it to start the BRD-to-PRD process, preserve the original customer document, identify document defects, and prepare a complete requirements coverage list.
Why use it?
Long customer documents can contain contradictions, unclear statements, or omissions. This creates a checked inventory before the requirements are turned into a product requirements document, or PRD.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents; names the AskUserQuestion tool.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the dev-workflows plugin — 2 skills, 28 commands, 38 agents, 3 hooks shipped together

Good fit Use it to start the BRD-to-PRD process, preserve the original customer document, identify document defects, and prepare a complete requirements coverage list.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add ihudak/ihudak-claude-plugins
Claude Code
/plugin install dev-workflows

Made for: Claude Code.

Or install dev-workflows, the plugin that ships this one along with the rest of its 2 skills, 28 commands, 38 agents, 3 hooks.

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 brd-intake

README.md
[![agentmods](https://agentmods.dev/badge/commands/ihudak/ihudak-claude-plugins/brd-intake.svg)](https://agentmods.dev/commands/ihudak/ihudak-claude-plugins/brd-intake)
Your own site
<a href="https://agentmods.dev/commands/ihudak/ihudak-claude-plugins/brd-intake"><img src="https://agentmods.dev/badge/commands/ihudak/ihudak-claude-plugins/brd-intake.svg" alt="Measured on agentmods" height="20"></a>
Per session 150 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 8,566 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.00150 $0.08566
Opus 5 $0.00075 $0.04283
Sonnet 5 $0.00030 $0.01713
Haiku 4.5 $0.00015 $0.00857

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

Security

Grade A, and why

brd-intake 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.

plugins/dev-workflows/commands/brd-intake.md · 477 lines

How it starts

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

Intake the customer-supplied business requirements document: $ARGUMENTS

/brd-intake is the entry point of the BRD-to-PRD flow (PM phase) — the first of the /brd-* commands, which between them turn a long, often internally contradictory customer BRD into requirements a PRD can be built from. It copies the customer's source into the specs repo verbatim and immutably, extracts a [BR#n] requirement inventory via the brd-reader agent, classifies the document's defects with a human rather than on the agent's say-so alone, and writes a coverage ledger in which every requirement starts life unallocated — the state /brd-split, the route's third command, cannot complete past until each row has been given a fate.

Usage: /brd-intake <BRD-KEY> @<brd-file> [--sort-existing <dir>] [--no-docs]


Phase 0 — Resolve inputs

  1. <BRD-KEY> (mandatory). Parse the first non-flag token; validate it with key-valid (${CLAUDE_PLUGIN_ROOT}/references/addressing.md §1's key-valid — shape only, never checked against a tracker). If absent or invalid, stop gracefully: BRD_INTAKE_NEEDS_KEY: /brd-intake needs a BRD key (shape ^[A-Z][A-Z0-9_]*(-\d+)+$, e.g. ACME-001) — pick a short stable identifier for this business requirements document, then re-run '/dev-workflows:brd-intake <KEY> @<brd-file>'.
  2. @<brd-file> (mandatory). The customer's source file argument. If absent, stop: BRD_INTAKE_NEEDS_SOURCE: /brd-intake needs the customer's source as an @-argument — re-run '/dev-workflows:brd-intake <KEY> @<path-to-brd>'.
  3. Reject a PDF — do not convert it. If the resolved source does not end in .md/.markdown (a PDF, a Word document, a slide deck, any non-markdown source), stop: BRD_INTAKE_NEEDS_MARKDOWN: the source must be markdown — convert it first, and check the conversion. It becomes the immutable record every [BR#n] anchors into. The reason this is a hard stop rather than a best-effort conversion: once intaken, brd/source/ is never edited again (${CLAUDE_PLUGIN_ROOT}/references/brd-format.md §1), and every [BR#n] locates itself inside that text by source_anchor. An unchecked machine conversion — a dropped clause, a misplaced heading, a table read out of row order — would silently become the record of what the customer asked for, with no later step positioned to catch it. Converting is the operator's own step, done where they can eyeball the result against the original before handing it back to this command.
  4. Optional flags. --sort-existing <dir> — if present, validate <dir> exists and carry it forward to Phase 6. --no-docs — boolean; turns documentation grounding off for this run, carried to Phase 1's resolve-docs-grounding call. Neither changes anything else about Phase 0: the BRD source is still required and still gated by step 3.
  5. $SPECS_PATH (required). If unset, stop naming SPECS_PATH, per the Required path environment variable unset rule in ${CLAUDE_PLUGIN_ROOT}/references/escalation-rules.md:
    choices: ["Set SPECS_PATH (enter the path)", "Cancel"]
    
  6. Specs-repo preflight. Cite ${CLAUDE_PLUGIN_ROOT}/references/specs-repo-git.md and execute its specs-preflight entry point (§3) inline. Prompt-free and silent when the specs repo is clean and on its default branch. If a guard fires, emit its §5 notice; if it returns specs_git: blocked (§3.3 G0), carry that flag for the whole run — the terminal commit-artifacts step skips on it.
  7. Resolve or derive the BRD folder via resolve-address <BRD-KEY> (${CLAUDE_PLUGIN_ROOT}/references/addressing.md §3). Found → this is an existing BRD folder and this invocation is a re-run over it; use it. A slice is never a legitimate target here — it has no source document of its own to intake, and its inventory and ledger are the parent's /brd-split to write (${CLAUDE_PLUGIN_ROOT}/references/brd-format.md §2.1, ${CLAUDE_PLUGIN_ROOT}/references/coverage-ledger-format.md §3) — so a resolved folder whose brd-link.md carries a parent: field is a mis-keyed invocation: say so and confirm before Phase 2 copies anything into it. Absent → this is a brand-new BRD: derive <slug> from the source file's first heading (kebab-cased), falling back to a kebab of the source filename when no heading is found, and prepare to create specifications/BRD-<BRD-KEY>-<slug>/the BRD- kind prefix is part of the name (${CLAUDE_PLUGIN_ROOT}/references/addressing.md §2), never optional and never derived from the key. The directory is not actually created until Phase 2's first write.

Read the full file on GitHub · 477 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. 2d ago Changed · +88 lines fc892cc3a572
  2. 8d ago First seen · 389 lines · 150 tokens per session scan A 2d300733093f

Subscribe to this mod's changes

brd-intake is a command published in the GitHub repository ihudak/ihudak-claude-plugins (2 stars, last pushed 5d ago), licensed MIT. It adds 150 tokens to every session and 8,566 once invoked, about $0.0007 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.