RFC Specification Writing Skill
This skill automatically activates when writing technical specifications, design documents, or architecture proposals that require structured evaluation and stakeholder review.
When This Skill Activates
- Creating a new technical RFC or design document
- Proposing architectural changes or new systems
- Evaluating technical options objectively
- Documenting technical decisions with rationale
- Writing system design specifications
Core Principles
Objective Technical Analysis
RFCs must maintain strict neutrality when evaluating options:
Evidence-Based Evaluation
- Support claims with data, benchmarks, or documented experience
- Avoid subjective language ("better", "best", "obvious choice")
- Present measurable criteria for comparison
Balanced Trade-off Analysis
- Every option has advantages AND disadvantages
- Document both explicitly for each alternative
- Avoid dismissing options without clear justification
Separation of Facts and Opinions
- Clearly label assumptions vs verified facts
- Cite sources for technical claims
- Distinguish between team preferences and technical constraints
Stakeholder Neutrality
- Present options without advocating for a predetermined choice
- Let evaluation criteria drive the recommendation
- Document dissenting opinions fairly
RFC Document Structure
Required Sections
Header Metadata
---
rfc_id: RFC-XXXX
title: [Descriptive Title]
status: DRAFT | REVIEW | APPROVED | IN_PROGRESS | COMPLETED | SUPERSEDED
author: [Name]
reviewers: [List of reviewers with status]
created: YYYY-MM-DD
last_updated: YYYY-MM-DD
decision_date: YYYY-MM-DD (when approved)
---
Overview (1-2 paragraphs)
- What this RFC proposes
- Why it matters now
- Expected outcome
Background & Context
- Current state of the system
- Historical context if relevant
- Glossary of terms
- Links to related RFCs or documentation
Problem Statement
- Specific problem being addressed
- Evidence of the problem (metrics, incidents, user feedback)
- Impact of not solving (cost, risk, opportunity loss)
Goals & Non-Goals
- Explicit scope boundaries
- What success looks like
- What this RFC deliberately does NOT address
Evaluation Criteria
- Measurable criteria for comparing options
- Weight or priority of each criterion
- Minimum thresholds where applicable
Options Analysis
For each option (minimum 2):
### Option N: [Name]
**Description**: [What this option entails]
**Advantages**:
- [Pro 1]
- [Pro 2]
**Disadvantages**:
- [Con 1]
- [Con 2]
**Evaluation Against Criteria**:
| Criterion | Score/Rating | Notes |
|-----------|--------------|-------|
| ... | ... | ... |
**Effort Estimate**: [Complexity and resources required]
**Risk Assessment**: [Potential risks and mitigations]
Recommendation
- Recommended option with justification
- How it scores against criteria
- Acknowledged trade-offs being accepted
Technical Design (for approved RFCs)
- Architecture diagrams
- API specifications
- Data models
- Security considerations
Implementation Plan
- Phases and milestones
- Dependencies
- Rollback strategy
Open Questions
- Unresolved technical questions
- Areas needing further investigation
- Pending stakeholder input
Decision Record
- Final decision made
- Date and approvers
- Key discussion points
- Conditions or constraints on approval
RFC Lifecycle
DRAFT → REVIEW → APPROVED → IN_PROGRESS → COMPLETED
↓
SUPERSEDED (if replaced by newer RFC)
Status Definitions
| Status |
Description |
| DRAFT |
Initial writing, not ready for review |
| REVIEW |
Open for stakeholder feedback |
| APPROVED |
Decision made, ready for implementation |
| IN_PROGRESS |
Implementation underway |
| COMPLETED |
Implementation finished |
| SUPERSEDED |
Replaced by newer RFC (link to new RFC) |
Evaluation Criteria Framework
Use these standard criteria categories (adapt as needed):
Technical Criteria
- Performance: Latency, throughput, resource usage
- Scalability: Horizontal/vertical scaling, bottlenecks
- Reliability: Fault tolerance, recovery, availability
- Security: Attack surface, data protection, compliance
- Maintainability: Code complexity, debugging, updates
Operational Criteria
- Operability: Monitoring, alerting, incident response
- Deployment: CI/CD integration, rollback capability
- Documentation: Learning curve, knowledge transfer
Business Criteria
- Time to Implement: Development effort, dependencies
- Cost: Infrastructure, licensing, maintenance
- Risk: Technical risk, organizational risk
Neutral Language Guidelines
Avoid
- "Obviously the best choice"
- "Everyone agrees that..."
- "This is clearly superior"
- "The only sensible option"
- Dismissing alternatives as "not worth considering"
Use Instead
- "Based on criteria X, Option A scores higher because..."
- "Option B requires consideration of trade-off Y"
- "The data suggests that..."
- "Stakeholder input indicates a preference for..."
- "Given constraints A and B, Option C is recommended"
Quality Checklist
Before marking RFC as REVIEW:
Integration with CTO Architect Workflow
When the CTO Architect agent creates technical specifications:
- Use this skill for any significant technical decision
- Follow the template in
references/rfc-template.md
- Ensure neutral evaluation of all options
- Link to related PRDs when applicable
- Request review from appropriate technical stakeholders
File Naming Convention
- RFC documents:
RFC-XXXX-<short-description>.md
- Example:
RFC-0042-api-gateway-selection.md
Directory Structure
rfcs/
├── draft/ # Work in progress
├── review/ # Under stakeholder review
├── approved/ # Approved, awaiting or in implementation
├── completed/ # Implementation finished
└── archive/ # Superseded or abandoned
└── YYYY/
References
- Template:
./references/rfc-template.md
- Evaluation Matrix:
./references/evaluation-matrix.md
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: rfc-specification3description: RFC (Request for Comments) specification writing with objective technical analysis. Use when creating technical specifications, design documents, or architecture proposals that require structured evaluation of options and trade-offs. Use when this capability is needed.4---56# RFC Specification Writing Skill78This skill automatically activates when writing technical specifications, design documents, or architecture proposals that require structured evaluation and stakeholder review.910## When This Skill Activates1112- Creating a new technical RFC or design document13- Proposing architectural changes or new systems14- Evaluating technical options objectively15- Documenting technical decisions with rationale16- Writing system design specifications1718## Core Principles1920### Objective Technical Analysis2122RFCs must maintain strict neutrality when evaluating options:23241. **Evidence-Based Evaluation**25 - Support claims with data, benchmarks, or documented experience26 - Avoid subjective language ("better", "best", "obvious choice")27 - Present measurable criteria for comparison28292. **Balanced Trade-off Analysis**30 - Every option has advantages AND disadvantages31 - Document both explicitly for each alternative32 - Avoid dismissing options without clear justification33343. **Separation of Facts and Opinions**35 - Clearly label assumptions vs verified facts36 - Cite sources for technical claims37 - Distinguish between team preferences and technical constraints38394. **Stakeholder Neutrality**40 - Present options without advocating for a predetermined choice41 - Let evaluation criteria drive the recommendation42 - Document dissenting opinions fairly4344## RFC Document Structure4546### Required Sections47481. **Header Metadata**49 ```yaml50 ---51 rfc_id: RFC-XXXX52 title: [Descriptive Title]53 status: DRAFT | REVIEW | APPROVED | IN_PROGRESS | COMPLETED | SUPERSEDED54 author: [Name]55 reviewers: [List of reviewers with status]56 created: YYYY-MM-DD57 last_updated: YYYY-MM-DD58 decision_date: YYYY-MM-DD (when approved)59 ---60 ```61622. **Overview** (1-2 paragraphs)63 - What this RFC proposes64 - Why it matters now65 - Expected outcome66673. **Background & Context**68 - Current state of the system69 - Historical context if relevant70 - Glossary of terms71 - Links to related RFCs or documentation72734. **Problem Statement**74 - Specific problem being addressed75 - Evidence of the problem (metrics, incidents, user feedback)76 - Impact of not solving (cost, risk, opportunity loss)77785. **Goals & Non-Goals**79 - Explicit scope boundaries80 - What success looks like81 - What this RFC deliberately does NOT address82836. **Evaluation Criteria**84 - Measurable criteria for comparing options85 - Weight or priority of each criterion86 - Minimum thresholds where applicable87887. **Options Analysis**89 For each option (minimum 2):90 ```markdown91 ### Option N: [Name]9293 **Description**: [What this option entails]9495 **Advantages**:96 - [Pro 1]97 - [Pro 2]9899 **Disadvantages**:100 - [Con 1]101 - [Con 2]102103 **Evaluation Against Criteria**:104 | Criterion | Score/Rating | Notes |105 |-----------|--------------|-------|106 | ... | ... | ... |107108 **Effort Estimate**: [Complexity and resources required]109110 **Risk Assessment**: [Potential risks and mitigations]111 ```1121138. **Recommendation**114 - Recommended option with justification115 - How it scores against criteria116 - Acknowledged trade-offs being accepted1171189. **Technical Design** (for approved RFCs)119 - Architecture diagrams120 - API specifications121 - Data models122 - Security considerations12312410. **Implementation Plan**125 - Phases and milestones126 - Dependencies127 - Rollback strategy12812911. **Open Questions**130 - Unresolved technical questions131 - Areas needing further investigation132 - Pending stakeholder input13313412. **Decision Record**135 - Final decision made136 - Date and approvers137 - Key discussion points138 - Conditions or constraints on approval139140## RFC Lifecycle141142```143DRAFT → REVIEW → APPROVED → IN_PROGRESS → COMPLETED144 ↓145 SUPERSEDED (if replaced by newer RFC)146```147148### Status Definitions149150| Status | Description |151|--------|-------------|152| DRAFT | Initial writing, not ready for review |153| REVIEW | Open for stakeholder feedback |154| APPROVED | Decision made, ready for implementation |155| IN_PROGRESS | Implementation underway |156| COMPLETED | Implementation finished |157| SUPERSEDED | Replaced by newer RFC (link to new RFC) |158159## Evaluation Criteria Framework160161Use these standard criteria categories (adapt as needed):162163### Technical Criteria164- **Performance**: Latency, throughput, resource usage165- **Scalability**: Horizontal/vertical scaling, bottlenecks166- **Reliability**: Fault tolerance, recovery, availability167- **Security**: Attack surface, data protection, compliance168- **Maintainability**: Code complexity, debugging, updates169170### Operational Criteria171- **Operability**: Monitoring, alerting, incident response172- **Deployment**: CI/CD integration, rollback capability173- **Documentation**: Learning curve, knowledge transfer174175### Business Criteria176- **Time to Implement**: Development effort, dependencies177- **Cost**: Infrastructure, licensing, maintenance178- **Risk**: Technical risk, organizational risk179180## Neutral Language Guidelines181182### Avoid183- "Obviously the best choice"184- "Everyone agrees that..."185- "This is clearly superior"186- "The only sensible option"187- Dismissing alternatives as "not worth considering"188189### Use Instead190- "Based on criteria X, Option A scores higher because..."191- "Option B requires consideration of trade-off Y"192- "The data suggests that..."193- "Stakeholder input indicates a preference for..."194- "Given constraints A and B, Option C is recommended"195196## Quality Checklist197198Before marking RFC as REVIEW:199200- [ ] All required sections are complete201- [ ] At least 2 alternatives are analyzed202- [ ] Evaluation criteria are explicit and measurable203- [ ] Trade-offs are documented for each option204- [ ] Language is objective and evidence-based205- [ ] Technical diagrams are included where helpful206- [ ] Open questions are clearly listed207- [ ] Implementation plan is realistic208209## Integration with CTO Architect Workflow210211When the CTO Architect agent creates technical specifications:2122131. **Use this skill** for any significant technical decision2142. **Follow the template** in `references/rfc-template.md`2153. **Ensure neutral evaluation** of all options2164. **Link to related PRDs** when applicable2175. **Request review** from appropriate technical stakeholders218219## File Naming Convention220221- RFC documents: `RFC-XXXX-<short-description>.md`222- Example: `RFC-0042-api-gateway-selection.md`223224## Directory Structure225226```227rfcs/228├── draft/ # Work in progress229├── review/ # Under stakeholder review230├── approved/ # Approved, awaiting or in implementation231├── completed/ # Implementation finished232└── archive/ # Superseded or abandoned233 └── YYYY/234```235236## References237238- Template: `./references/rfc-template.md`239- Evaluation Matrix: `./references/evaluation-matrix.md`240241---242> Converted and distributed by [TomeVault](https://tomevault.io/claim/jpoutrin) — claim your Tome and manage your conversions.243<!-- tomevault:4.0:skill_md:2026-04-11 -->