rfc

rfc is a command for Claude Code from ilyasibrahim/claude-agents-coordination. It costs 15 tokens per session (1,006 once invoked), scanned A, original, Unlicense.

A command for creating and reviewing an RFC, a written proposal for a technical change, and recording the final decision.

In plain words
What is it for?
Use it to write new design documents, review existing ones, record approval or rejection, and list RFCs.
Why use it?
It gives design discussions a consistent structure and keeps proposals, reviews, and decisions in project files.

Command for Claude Code

Written for Claude Code: a Claude Code command (commands/*.md).

Good fit Use it to write new design documents, review existing ones, record approval or rejection, and list RFCs.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/ilyasibrahim/claude-agents-coordination/rfc
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/ilyasibrahim/claude-agents-coordination

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 rfc

README.md
[![agentmods](https://agentmods.dev/badge/commands/ilyasibrahim/claude-agents-coordination/rfc.svg)](https://agentmods.dev/commands/ilyasibrahim/claude-agents-coordination/rfc)
Your own site
<a href="https://agentmods.dev/commands/ilyasibrahim/claude-agents-coordination/rfc"><img src="https://agentmods.dev/badge/commands/ilyasibrahim/claude-agents-coordination/rfc.svg" alt="Measured on agentmods" height="20"></a>
Per session 15 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,006 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.00015 $0.01006
Opus 5 $0.00008 $0.00503
Sonnet 5 $0.00003 $0.00201
Haiku 4.5 $0.00002 $0.00101

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

Security

Grade A, and why

rfc 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 7d 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-user/commands/rfc.md · 166 lines

How it starts

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

RFC Command

Invoke rfc agent for design document lifecycle management.

Usage

/rfc [topic]                    # Create new RFC
/rfc review [RFC-path]          # Review existing RFC
/rfc decision [RFC-path]        # Record decision on RFC
/rfc list                       # List all RFCs

Create New RFC

/rfc [topic description]
Task(rfc, "
Mode: author

Topic: [user's topic description]

Create comprehensive RFC covering:
1. Problem statement and motivation
2. Proposed solution with technical design
3. Alternatives considered
4. Security, privacy, performance considerations
5. Rollout plan with milestones

Assign next RFC number based on:
ls .claude/reports/rfc/ | grep -oE 'RFC-[0-9]+' | sort -t- -k2 -n | tail -1

Output: .claude/reports/rfc/RFC-[NNNN]-[slug].md
")

Review RFC

/rfc review [path-to-rfc]
Task(rfc, "
Mode: review

RFC: [path-to-rfc]

Provide technical review:
1. Feasibility assessment
2. Risk identification
3. Completeness check
4. Security review
5. Scalability concerns
6. Specific change requests

Output: .claude/reports/rfc/review-RFC-[NNNN]-YYYYMMDD.md
")

Record Decision

/rfc decision [path-to-rfc] [approve|reject|revise]
Task(rfc, "
Mode: decision

RFC: [path-to-rfc]
Decision: [approve/reject/revise]

Record:
1. Decision and rationale
2. Conditions (if approved)
3. Required revisions (if revise)
4. Rejection reasons (if rejected)
5. Implementation priority
6. Next steps

Update RFC status in original document.

Output: .claude/reports/rfc/decision-RFC-[NNNN]-YYYYMMDD.md
")

List RFCs

/rfc list
# List all RFCs with status
echo "# RFC Registry"
echo ""
echo "| RFC | Title | Status | Date |"
echo "|-----|-------|--------|------|"
for f in .claude/reports/rfc/RFC-*.md; do
    num=$(basename "$f" | grep -oE 'RFC-[0-9]+')
    title=$(head -1 "$f" | sed 's/^# //')
    status=$(grep -m1 "Status:" "$f" | sed 's/.*Status:\*\* //')
    date=$(grep -m1 "Created:" "$f" | sed 's/.*Created:\*\* //')
    echo "| $num | $title | $status | $date |"
done

Read the full file on GitHub · 166 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. 7d ago First seen · 166 lines · 15 tokens per session scan A ba8d04188bfc

Subscribe to this mod's changes

rfc is a command published in the GitHub repository ilyasibrahim/claude-agents-coordination (83 stars, last pushed 3mo ago), licensed Unlicense. It adds 15 tokens to every session and 1,006 once invoked, about $0.0001 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-30.