| name | template-generator |
| description | Generate standardized document templates (DOCUMENT, TECHNICAL, PROPOSAL, RESEARCH, SECURITY-QA, INDEX) with YAML frontmatter, Quick Reference sections, and consistent structure for professional documentation. |
Template Generator - Professional Document Architect
Purpose: Generate standardized, professional document templates with YAML frontmatter, Quick Reference sections, and consistent structure for various document types (general, technical, proposal, research, security Q&A).
When to Use This Skill
Use this skill when the user's request involves:
- New documentation - Starting a new document from scratch
- Standardization - Ensuring consistent format across team
- YAML frontmatter - Need metadata (tags, audience, reading_time)
- Quick Reference - Executive summaries, key information tables
- Professional formatting - Proposals, technical specs, research reports
- Template library - Building reusable document templates
Core Identity
You are a document architect who provides professional, battle-tested templates that ensure consistency, discoverability (via YAML metadata), and readability (via Quick Reference sections) across all documentation.
Available Templates (6 Types)
| Template | Use Case | Key Features | Reading Time |
|---|---|---|---|
| DOCUMENT | General purpose docs | Quick Reference, checklist, tags | 5 min |
| TECHNICAL | Architecture, implementation | Tech stack, complexity, code samples | 10-30 min |
| PROPOSAL | Client proposals, RFPs | Executive summary, ROI, phases | 15-30 min |
| RESEARCH | Market research, analysis | Methodology, findings, recommendations | 20-45 min |
| SECURITY-QA | Security Q&A, compliance | Question categorization, evidence, priority | 10-20 min |
| INDEX.md | Markdown index | Directory structure, document list, stats | 5 min |
Template 1: DOCUMENT (General Purpose)
When to Use
- General documentation (not technical, not proposal)
- Process guides, how-to docs, meeting notes
- Internal documentation
Structure
---
title: '[Document Title]'
category: '[business|technical|security|research|proposal]'
priority: '[CRITICAL|HIGH|MEDIUM|LOW]'
reading_time: '[number]'
status: '[draft|review|approved|archived]'
tags:
- tag1
- tag2
audience:
- Audience 1
- Audience 2
related_docs:
<!-- Template Example: Replace path/to/doc1.md with your actual related documentation paths -->
- path/to/doc1.md
created: 'YYYY-MM-DD'
version: '1.0'
---
# [Document Title]
## ๐ฏ Key Summary (30 seconds)
[Summarize core content in 2-3 sentences]
**Purpose**: [Problem this document addresses]
**Key Messages**:
- [Key point 1]
- [Key point 2]
- [Key point 3]
---
## ๐ Quick Reference
| Item | Details |
|------|---------|
| **Category** | [category] |
| **Priority** | [priority] |
| **Reading Time** | [reading_time] min |
| **Audience** | [audience] |
| **Main Tags** | [Top 3 tags] |
---
## [Section 1 Title]
[Content]
---
## [Section 2 Title]
[Content]
---
## โ
Checklist
- [ ] [Item 1]
- [ ] [Item 2]
- [ ] [Item 3]
---
## References
### Related Documents
<!-- Template Example: Replace [Document Name] and (path) with your actual document references -->
- [Document Name](path)
### External Links
<!-- Template Example: Replace [Link Name] and (URL) with your actual external links -->
- [Link Name](URL)
---
**Created**: YYYY-MM-DD
**Author**: [Name]
**Version**: 1.0
Template 2: TECHNICAL (Technical Documentation)
When to Use
- Architecture documents, system design
- Implementation guides, API specs
- Technical specifications
Structure
---
title: '[Technical Document Title]'
category: technical
priority: '[CRITICAL|HIGH|MEDIUM|LOW]'
reading_time: '[number]'
status: '[draft|review|approved|archived]'
tags:
- tech1
- tech2
audience:
- Developers
- Architects
- DevOps
tech_stack:
- Technology 1
- Technology 2
complexity: '[low|medium|high|expert]'
implementation_time: '[Estimated implementation time]'
prerequisites:
- Prerequisite 1
- Prerequisite 2
related_docs: []
created: 'YYYY-MM-DD'
version: '1.0'
---
# [Technical Document Title]
## ๐ฏ Key Summary (30 seconds)
[Summarize core technical content in 2-3 sentences]
**Purpose**: [Purpose of this technical document]
**Key Content**:
- [Key point 1]
- [Key point 2]
- [Key point 3]
**Use Cases**: [When to use this technology?]
---
## ๐ Quick Reference
| Item | Details |
|------|---------|
| **Tech Stack** | [tech_stack] |
| **Complexity** | [complexity] |
| **Implementation Time** | [implementation_time] |
| **Prerequisites** | [prerequisites] |
| **Audience** | [audience] |
---
## ๐๏ธ Architecture
### System Structure
[Architecture diagram or text description]
### Key Components
- **[Component 1]**: [Description]
- **[Component 2]**: [Description]
- **[Component 3]**: [Description]
---
## โ๏ธ Technical Specifications
| Item | Specification |
|------|---------------|
| **Language/Framework** | [Details] |
| **Database** | [Details] |
| **Performance Goals** | [Details] |
| **Requirements** | [Details] |
---
## ๐ ๏ธ Implementation Guide
### Environment Setup
\`\`\`bash
# Install dependencies
[Setup commands]
# Environment variables
[Environment variable configuration]
\`\`\`
### Code Examples
\`\`\`python
# Example code
[Code]
\`\`\`
---
## โ
Checklist
- [ ] Environment setup complete
- [ ] Dependencies installed
- [ ] Tests passed
- [ ] Documentation updated
---
## References
### Internal Documents
<!-- Template Example: Replace [Related Technical Doc] and (path) with your actual technical document references -->
- [Related Technical Doc](path)
### External References
<!-- Template Example: Replace [Official Docs], [Example Code] and (URL) with your actual external references -->
- [Official Docs](URL)
- [Example Code](URL)
---
**Created**: YYYY-MM-DD
**Author**: [Name]
**Version**: 1.0
**Complexity**: [complexity]
Template 3: PROPOSAL (Proposal/RFP)
When to Use
- Client proposals, RFPs
- Project proposals, investment pitches
- Executive presentations
Structure
---
title: '[Proposal Title]'
category: proposal
priority: '[CRITICAL|HIGH|MEDIUM|LOW]'
reading_time: '[number]'
status: '[draft|submitted|approved|rejected]'
tags:
- proposal
- client
- project
audience:
- Client
- Executive Team
client: '[Client Name]'
project_name: '[Project Name]'
estimated_cost: '[Total Budget]'
estimated_duration: '[Estimated Duration]'
proposal_date: 'YYYY-MM-DD'
valid_until: 'YYYY-MM-DD'
phases: []
related_docs: []
created: 'YYYY-MM-DD'
version: '1.0'
---
# [Proposal Title]
## ๐ฏ Executive Summary (30 seconds)
[Summarize proposal core content in 2-3 sentences]
**Purpose**: [Purpose of this proposal]
**Key Value**:
- [Value proposition 1]
- [Value proposition 2]
- [Value proposition 3]
**Expected ROI**: [ROI figure or description]
---
## ๐ Quick Reference
| Item | Details |
|------|---------|
| **Client** | [client] |
| **Project Name** | [project_name] |
| **Total Budget** | [estimated_cost] |
| **Estimated Duration** | [estimated_duration] |
| **Proposal Valid Until** | [valid_until] |
| **Number of Phases** | [number] |
---
## ๐ผ Client Pain Points
### Current Problems
1. **[Problem 1]**
- Situation: [Specific description]
- Impact: [Business impact]
2. **[Problem 2]**
- Situation: [Specific description]
- Impact: [Business impact]
### Business Impact Analysis
| Problem Area | Annual Loss | Priority |
|--------------|-------------|----------|
| [Area 1] | [Amount] | HIGH |
| [Area 2] | [Amount] | MEDIUM |
---
## โจ Proposed Solution
### Solution Overview
[Overall solution overview in 3-5 sentences]
### Key Features
1. **[Feature 1]**
- Description: [Detailed description]
- Effect: [Expected effect]
2. **[Feature 2]**
- Description: [Detailed description]
- Effect: [Expected effect]
---
## ๐ ROI Analysis
### Cost Structure
| Phase | Budget | Duration | Key Deliverables |
|-------|--------|----------|------------------|
| Phase 0 | [Amount] | [Duration] | [Deliverables] |
| Phase 1 | [Amount] | [Duration] | [Deliverables] |
### Expected Benefits
| Metric | Current | After Improvement | Improvement Rate |
|--------|---------|-------------------|------------------|
| [Metric 1] | [Current value] | [Improved value] | [%] |
| [Metric 2] | [Current value] | [Improved value] | [%] |
### ROI Calculation
- **Total Investment**: [Amount]
- **Annual Savings**: [Amount]
- **ROI**: [%]
- **Payback Period**: [Months]
---
## ๐๏ธ Schedule and Milestones
| Phase | Duration | Key Milestones |
|-------|----------|----------------|
| Phase 0 | [Duration] | [Milestone] |
| Phase 1 | [Duration] | [Milestone] |
---
## ๐ Next Steps
1. **[Step 1]**: [Description] (Deadline: [Date])
2. **[Step 2]**: [Description] (Deadline: [Date])
3. **[Step 3]**: [Description] (Deadline: [Date])
---
## Appendix
### Our Team Introduction
[Team introduction]
### Similar Project Case Studies
[1-3 case studies]
---
**Proposal Date**: [proposal_date]
**Valid Until**: [valid_until]
**Contact**: [Name/Contact]
Template 4: RESEARCH (Research/Analysis)
When to Use
- Market research, competitive analysis
- User research, data analysis
- Literature reviews, case studies
Structure
---
title: '[๋ฆฌ์์น ์ ๋ชฉ]'
category: research
priority: '[CRITICAL|HIGH|MEDIUM|LOW]'
reading_time: '[์ซ์]'
status: '[draft|review|approved]'
tags:
- research
- analysis
- data
audience:
- ๊ฒฝ์์ง
- ์ ํํ
research_type: '[market|competitive|user|technical]'
methodology:
- ๋ฐฉ๋ฒ๋ก 1
- ๋ฐฉ๋ฒ๋ก 2
data_sources:
- ์ถ์ฒ1
- ์ถ์ฒ2
research_period: '[์์์ผ ~ ์ข
๋ฃ์ผ]'
related_docs: []
created: 'YYYY-MM-DD'
version: '1.0'
---
# [๋ฆฌ์์น ์ ๋ชฉ]
## ๐ฏ ํต์ฌ ์์ฝ (60์ด)
[๋ฆฌ์์น ํต์ฌ ๋ด์ฉ์ 3-5๋ฌธ์ฅ์ผ๋ก ์์ฝ]
**๋ฆฌ์์น ๋ชฉ์ **: [๋ชฉ์ ]
**์ฃผ์ ๋ฐ๊ฒฌ**:
- [๋ฐ๊ฒฌ 1]
- [๋ฐ๊ฒฌ 2]
- [๋ฐ๊ฒฌ 3]
**๊ถ์ฅ ์ฌํญ**: [ํต์ฌ ๊ถ์ฅ ์ฌํญ]
---
## ๐ Quick Reference
| ํญ๋ชฉ | ๋ด์ฉ |
|------|------|
| **๋ฆฌ์์น ์ ํ** | [research_type] |
| **๋ฐฉ๋ฒ๋ก ** | [methodology] |
| **์กฐ์ฌ ๊ธฐ๊ฐ** | [research_period] |
| **๋ฐ์ดํฐ ์ถ์ฒ** | [์ฃผ์ ์ถ์ฒ 3๊ฐ] |
| **์ ๋ขฐ๋** | [HIGH|MEDIUM|LOW] |
---
## ๐ ๋ฆฌ์์น ๋ฐฉ๋ฒ๋ก
### ์กฐ์ฌ ๋ฐฉ๋ฒ
1. **[๋ฐฉ๋ฒ 1]**
- ์ค๋ช
: [์์ธ ์ค๋ช
]
- ์ํ ํฌ๊ธฐ: [N]
2. **[๋ฐฉ๋ฒ 2]**
- ์ค๋ช
: [์์ธ ์ค๋ช
]
- ์ํ ํฌ๊ธฐ: [N]
### ๋ฐ์ดํฐ ์ถ์ฒ
<!-- Template Example: Replace [์ถ์ฒ1], [์ถ์ฒ2], [์ ํ], and [๋งํฌ] with your actual research sources and URLs -->
| ์ถ์ฒ | ์ ํ | ์ ๋ขฐ๋ | URL/๋ ํผ๋ฐ์ค |
|------|------|--------|------------|
| [์ถ์ฒ1] | [์ ํ] | HIGH | [๋งํฌ] |
| [์ถ์ฒ2] | [์ ํ] | MEDIUM | [๋งํฌ] |
---
## ๐ ์ฃผ์ ๋ฐ๊ฒฌ (Key Findings)
### ๋ฐ๊ฒฌ 1: [์ ๋ชฉ]
**๋ฐ์ดํฐ**:
- [ํต๊ณ/์์น]
- [์ฆ๊ฑฐ]
**๋ถ์**:
[ํด์ ๋ฐ ์๋ฏธ]
**์ํฅ**:
[๋น์ฆ๋์ค ์ํฅ]
---
### ๋ฐ๊ฒฌ 2: [์ ๋ชฉ]
[์์ ๋์ผ ๊ตฌ์กฐ]
---
## ๐ก ์ธ์ฌ์ดํธ (Insights)
### ํจํด ๋ฐ ํธ๋ ๋
- **ํจํด 1**: [์ค๋ช
]
- **ํจํด 2**: [์ค๋ช
]
- **ํจํด 3**: [์ค๋ช
]
### ์์ฌ์
| ์ธ์ฌ์ดํธ | ์คํ ๊ฐ๋ฅ์ฑ | ์ฐ์ ์์ |
|---------|------------|----------|
| [์ธ์ฌ์ดํธ1] | HIGH | CRITICAL |
| [์ธ์ฌ์ดํธ2] | MEDIUM | HIGH |
---
## ๐ฏ ๊ถ์ฅ ์ฌํญ (Recommendations)
### ์ฆ์ ์คํ (High Priority)
1. **[๊ถ์ฅ์ฌํญ 1]**
- ๊ทผ๊ฑฐ: [๋ฐ๊ฒฌ/๋ฐ์ดํฐ]
- ๊ธฐ๋ ํจ๊ณผ: [ํจ๊ณผ]
- ์์ ๋น์ฉ: [๋น์ฉ]
- ์คํ ๊ธฐ๊ฐ: [๊ธฐ๊ฐ]
### ์ค๊ธฐ ์คํ (Medium Priority)
1. **[๊ถ์ฅ์ฌํญ 2]**
- [์์ ๋์ผ ๊ตฌ์กฐ]
---
## ๐ ๋ฐ์ดํฐ ๋ฐ ์ฐจํธ
[์ฐจํธ, ๊ทธ๋ํ, ํ ๋ฑ]
---
## โ ๏ธ ์ ์ฝ์ฌํญ (Limitations)
- **์ ์ฝ 1**: [์ค๋ช
]
- **์ ์ฝ 2**: [์ค๋ช
]
**ํฅํ ๋ฆฌ์์น**: [์ถ๊ฐ ์กฐ์ฌ๊ฐ ํ์ํ ์์ญ]
---
## ์ฐธ๊ณ ์๋ฃ
### 1์ฐจ ์๋ฃ (Primary Sources)
<!-- Template Example: Replace [์ถ์ฒ1], [์ถ์ฒ2] and (URL) with your actual primary source references -->
- [์ถ์ฒ1](URL)
- [์ถ์ฒ2](URL)
### 2์ฐจ ์๋ฃ (Secondary Sources)
<!-- Template Example: Replace [์ถ์ฒ1], [์ถ์ฒ2] and (URL) with your actual secondary source references -->
- [์ถ์ฒ1](URL)
- [์ถ์ฒ2](URL)
---
**๋ฆฌ์์น ๊ธฐ๊ฐ**: [research_period]
**์์ฑ์**: [์ด๋ฆ/ํ]
**๋ฆฌ๋ทฐ์ด**: [๋ฆฌ๋ทฐ์ด ์ด๋ฆ]
Template 5: SECURITY-QA (Security Q&A)
When to Use
- Security compliance documentation
- FAQ for security reviews
- Regulatory Q&A (ISMS-P, SOC 2, ISO 27001)
Structure
---
title: '[๋ณด์ Q&A ์ ๋ชฉ]'
category: security
priority: CRITICAL
reading_time: '[์ซ์]'
status: '[draft|review|approved]'
tags:
- security
- compliance
- qa
audience:
- ๋ณด์ํ
- CISO
- ๊ฐ์ฌํ
compliance_frameworks:
- ISMS-P
- SOC 2
- ISO 27001
total_questions: '[์ซ์]'
review_date: 'YYYY-MM-DD'
related_docs: []
created: 'YYYY-MM-DD'
version: '1.0'
---
# [๋ณด์ Q&A ์ ๋ชฉ]
## ๐ฏ ํต์ฌ ์์ฝ (30์ด)
[๋ณด์ Q&A ๊ฐ์๋ฅผ 2-3๋ฌธ์ฅ์ผ๋ก]
**๋ชฉ์ **: [์ด Q&A์ ๋ชฉ์ ]
**์ ์ฉ ํ๋ ์์ํฌ**:
- [ํ๋ ์์ํฌ 1]
- [ํ๋ ์์ํฌ 2]
**์ด ์ง๋ฌธ ์**: [total_questions]๊ฐ
---
## ๐ Quick Reference
| ํญ๋ชฉ | ๋ด์ฉ |
|------|------|
| **ํ๋ ์์ํฌ** | [compliance_frameworks] |
| **์ด ์ง๋ฌธ** | [total_questions]๊ฐ |
| **์ต์ข
๊ฒํ ์ผ** | [review_date] |
| **๋์ ๋
์** | [audience] |
---
## ๐ ์ง๋ฌธ ์นดํ
๊ณ ๋ฆฌ
| ์นดํ
๊ณ ๋ฆฌ | ์ง๋ฌธ ์ | ์ฐ์ ์์ |
|---------|--------|---------|
| ๋ฌผ๋ฆฌ์ ๋ณด์ | [N]๊ฐ | CRITICAL |
| ๋คํธ์ํฌ ๋ณด์ | [N]๊ฐ | HIGH |
| ๋ฐ์ดํฐ ๋ณด์ | [N]๊ฐ | CRITICAL |
| ์ ๊ทผ ์ ์ด | [N]๊ฐ | HIGH |
| ๊ฐ์ฌ & ๋ชจ๋ํฐ๋ง | [N]๊ฐ | MEDIUM |
---
## 1๏ธโฃ ๋ฌผ๋ฆฌ์ ๋ณด์ (Physical Security)
### Q1. [์ง๋ฌธ]
**์ฐ๋ ค ์ฌํญ**: [๋ณด์ํ์ ์ฐ๋ ค]
**๋ต๋ณ**:
[์์ธ ๋ต๋ณ]
**์ฆ๊ฑฐ/์ฆ๋ช
์๋ฃ**:
- [์ฆ๊ฑฐ 1] (๋ฌธ์/๋งํฌ)
- [์ฆ๊ฑฐ 2] (๋ฌธ์/๋งํฌ)
**๊ด๋ จ ๊ท์ **:
- ISMS-P: [์กฐํญ ๋ฒํธ]
- SOC 2: [๊ด๋ จ ํต์ ]
**์ฐ์ ์์**: โญโญโญโญโญ (CRITICAL)
---
### Q2. [์ง๋ฌธ]
[์์ ๋์ผ ๊ตฌ์กฐ]
---
## 2๏ธโฃ ๋คํธ์ํฌ ๋ณด์ (Network Security)
### Q3. [์ง๋ฌธ]
[์์ ๋์ผ ๊ตฌ์กฐ]
---
## 3๏ธโฃ ๋ฐ์ดํฐ ๋ณด์ (Data Security)
### Q4. [์ง๋ฌธ]
[์์ ๋์ผ ๊ตฌ์กฐ]
---
## ๐ ๊ด๋ จ ๋ฌธ์
### ๋ด๋ถ ์ ์ฑ
๋ฌธ์
<!-- Template Example: Replace [์ ์ฑ
๋ฌธ์ 1], [์ ์ฑ
๋ฌธ์ 2] and (๊ฒฝ๋ก) with your actual internal policy document references -->
- [์ ์ฑ
๋ฌธ์ 1](๊ฒฝ๋ก)
- [์ ์ฑ
๋ฌธ์ 2](๊ฒฝ๋ก)
### ์ธ๋ถ ์ธ์ฆ/๊ฐ์ฌ
<!-- Template Example: Replace [์ธ์ฆ์ 1], [๊ฐ์ฌ ๋ณด๊ณ ์] and (๊ฒฝ๋ก/URL) with your actual certification and audit references -->
- [์ธ์ฆ์ 1](๊ฒฝ๋ก/URL)
- [๊ฐ์ฌ ๋ณด๊ณ ์](๊ฒฝ๋ก/URL)
---
## ๐ ๊ฒํ ์ด๋ ฅ
| ๋ ์ง | ๊ฒํ ์ | ๋ณ๊ฒฝ ์ฌํญ |
|------|--------|---------|
| [๋ ์ง] | [์ด๋ฆ] | [๋ณ๊ฒฝ ๋ด์ฉ] |
---
**์์ฑ์ผ**: [created]
**์ต์ข
๊ฒํ **: [review_date]
**๋ด๋น์**: [์ด๋ฆ/๋ถ์]
**์น์ธ์**: [CISO ์ด๋ฆ]
Template 6: INDEX.md (Markdown Index)
When to Use
- README files for directories
- Human-readable documentation indexes
- Navigation hubs
Structure
# [Directory Name] Documentation Index
[1-2๋ฌธ์ฅ ์ค๋ช
]
---
## ๐ Directory Structure
\`\`\`
directory/
โโโ README.md
โโโ subdirectory1/
โ โโโ README.md
โ โโโ doc1.md
โโโ subdirectory2/
โ โโโ README.md
โ โโโ doc2.md
โโโ doc3.md
\`\`\`
---
## ๐ Document List
<!-- Template Example: Replace [file1.md], [file2.md], and ./file paths with your actual documentation files -->
| ํ์ผ | ์ฃผ์ | ์ฃผ์ ๋ด์ฉ | ์ฝ๊ธฐ ์๊ฐ |
|-----|------|----------|----------|
| [file1.md](./file1.md) | ์ ๋ชฉ | โข ๋ด์ฉ 1<br>โข ๋ด์ฉ 2 | 10๋ถ |
| [file2.md](./file2.md) | ์ ๋ชฉ | โข ๋ด์ฉ 1<br>โข ๋ด์ฉ 2 | 15๋ถ |
**์ด N๊ฐ ๋ฌธ์**
---
## ๐ฏ ์ญํ ๋ณ ์ถ์ฒ
### ๊ฐ๋ฐ์
- [๋ฌธ์1](./path/doc1.md) - ๊ธฐ์ ๊ฐ์ด๋
- [๋ฌธ์2](./path/doc2.md) - API ๋ ํผ๋ฐ์ค
### ๊ฒฝ์์ง
- [๋ฌธ์3](./path/doc3.md) - Executive Summary
- [๋ฌธ์4](./path/doc4.md) - ROI ๋ถ์
### ๋ณด์ํ
- [๋ฌธ์5](./path/doc5.md) - ๋ณด์ ์ํคํ
์ฒ
- [๋ฌธ์6](./path/doc6.md) - ๊ท์ ์ค์
---
## ๐ ๊ด๋ จ ๋ฌธ์
- **์์ INDEX**: [../README.md](../README.md)
- **๊ธฐ์ ๋ฌธ์**: [../technical/README.md](../technical/README.md)
- **์ ์ ๋ฌธ์**: [../proposals/README.md](../proposals/README.md)
---
## ๐ ํต๊ณ
- **์ด ๋ฌธ์ ์**: N๊ฐ
- **์ด ์ฝ๊ธฐ ์๊ฐ**: N๋ถ
- **์ต๊ทผ ์
๋ฐ์ดํธ**: YYYY-MM-DD
---
**์์ฑ์ผ**: YYYY-MM-DD
**๋ฒ์ **: 1.0
**๊ด๋ฆฌ์**: [์ด๋ฆ]
YAML Frontmatter Best Practices
Required Fields (All Templates)
title: 'Document Title'
category: '[business|technical|security|research|proposal]'
priority: '[CRITICAL|HIGH|MEDIUM|LOW]'
reading_time: '[์ซ์]'
status: '[draft|review|approved|archived]'
tags:
- tag1
- tag2
- tag3
created: 'YYYY-MM-DD'
version: '1.0'
Optional Fields (Template-Specific)
Technical:
tech_stack: [list]
complexity: '[low|medium|high|expert]'
prerequisites: [list]
Proposal:
client: 'Client Name'
estimated_cost: 'Amount'
estimated_duration: 'Period'
phases: [list]
Research:
research_type: 'Type'
methodology: [list]
data_sources: [list]
Security:
compliance_frameworks: [list]
total_questions: [number]
review_date: 'YYYY-MM-DD'
Quick Reference Section Standards
Purpose
- Provide at-a-glance information
- Enable quick decision-making
- Improve discoverability
Structure
## ๐ Quick Reference
| ํญ๋ชฉ | ๋ด์ฉ |
|------|------|
| **Key Field 1** | Value |
| **Key Field 2** | Value |
| **Key Field 3** | Value |
What to Include
- Category/Type
- Priority/Urgency
- Reading Time
- Target Audience
- Key Metrics (cost, duration, complexity)
Workflow: Creating a New Document
Step 1: Select Template
Question: "What type of document are you creating?"
| Answer | Template |
|---|---|
| General doc | DOCUMENT |
| Technical spec | TECHNICAL |
| Client proposal | PROPOSAL |
| Research report | RESEARCH |
| Security Q&A | SECURITY-QA |
| Directory index | INDEX.md |
Step 2: Fill YAML Frontmatter
Required fields:
- title, category, priority, reading_time, status, tags, created, version
Ask user:
- "What's the document title?"
- "Who is the audience?"
- "What's the priority?" (CRITICAL/HIGH/MEDIUM/LOW)
- "Estimated reading time?" (in minutes)
Step 3: Generate Quick Reference
Extract from YAML:
- Category
- Priority
- Reading time
- Audience
- Tags (top 3)
Template-specific additions:
- TECHNICAL: tech_stack, complexity, prerequisites
- PROPOSAL: client, cost, duration
- RESEARCH: methodology, data sources
- SECURITY-QA: frameworks, total questions
Step 4: Structure Content Sections
Use template structure:
- DOCUMENT: General sections + checklist
- TECHNICAL: Architecture + specs + implementation
- PROPOSAL: Pain points + solution + ROI + timeline
- RESEARCH: Methodology + findings + recommendations
- SECURITY-QA: Category-based Q&A
Step 5: Add References
Always include:
- Related docs (internal)
- External links (if applicable)
- Author/date/version
Example: Generate TECHNICAL Doc
User Request: "Create a technical doc for Zero Trust Architecture"
Step 1: Select Template โ TECHNICAL
Step 2: Fill YAML
---
title: 'Zero Trust Architecture Design'
category: technical
priority: CRITICAL
reading_time: 25
status: draft
tags:
- security
- architecture
- zero-trust
audience:
- ๊ฐ๋ฐ์
- ๋ณด์ํ
- ์ํคํ
ํธ
tech_stack:
- AWS
- Nitro Enclave
- CloudWatch
complexity: high
implementation_time: '3 months'
prerequisites:
- AWS ๊ธฐ๋ณธ ์ง์
- ๋ณด์ ์ํคํ
์ฒ ์ดํด
created: '2025-10-27'
version: '1.0'
---
Step 3: Quick Reference
## ๐ Quick Reference
| ํญ๋ชฉ | ๋ด์ฉ |
|------|------|
| **๊ธฐ์ ์คํ** | AWS, Nitro Enclave, CloudWatch |
| **๋ณต์ก๋** | High |
| **๊ตฌํ ์๊ฐ** | 3 months |
| **์ ํ ์ง์** | AWS ๊ธฐ๋ณธ, ๋ณด์ ์ํคํ
์ฒ |
| **๋์ ๋
์** | ๊ฐ๋ฐ์, ๋ณด์ํ, ์ํคํ
ํธ |
Step 4: Structure
- ๐๏ธ ์ํคํ ์ฒ
- โ๏ธ ๊ธฐ์ ์คํ
- ๐ ๏ธ ๊ตฌํ ๊ฐ์ด๋
- โ ์ฒดํฌ๋ฆฌ์คํธ
Step 5: References
- Related:
docs/security-guidelines.md - External: Official security standards documentation
Quality Checklist
YAML Frontmatter
- All required fields present
- Tags relevant (3-5 tags)
- Reading time accurate
- Audience specified
- Created date = today
Quick Reference
- Key information at-a-glance
- Table format (ํญ๋ชฉ | ๋ด์ฉ)
- 5-7 rows max
- Matches YAML data
Content Structure
- Sections logically organized
- Headers use emoji (๐ฏ, ๐, ๐๏ธ)
- Bullet points for lists
- Code blocks for technical content
- Tables for comparisons
References
- Related docs linked
- External sources cited
- Author/date/version at end
Common Mistakes to Avoid
โ Missing YAML Frontmatter
Wrong:
# My Document
Content here...
Right:
---
title: 'My Document'
category: technical
...
---
# My Document
Content here...
โ No Quick Reference
Wrong:
---
...
---
# Document
## Section 1
Content...
Right:
---
...
---
# Document
## ๐ฏ ํต์ฌ ์์ฝ (30์ด)
...
## ๐ Quick Reference
...
## Section 1
Content...
โ Inconsistent Structure
Wrong: Each document has different section order
Right: Follow template structure consistently
References
External Standards
- YAML Frontmatter - YAML standard
- GitHub Flavored Markdown - Markdown spec
For detailed usage and examples, see related documentation files.