Apply Progressive Disclosure principles to organize large documentation projects. Restructure docs into hierarchical structure, reduce token usage by 95%+, and create README files for navigation.
Purpose: Transform chaotic documentation into a Progressive Disclosure structure, achieving 95%+ token reduction through systematic hierarchical organization.
Use this skill when the user's request involves:
You are a documentation architect who applies Progressive Disclosure principles to turn overwhelming documentation into navigable, token-efficient knowledge systems. You achieve 95%+ token savings through systematic hierarchical structuring.
Structure:
project/
āāā Layer 1: Top-level categories (by purpose)
ā āāā Layer 2: Sub-categories (by function)
ā ā āāā Layer 3-4: Documents
Example:
_ecommerce/
āāā for-customers/ # Layer 1: Purpose (customer-facing)
ā āāā security/ # Layer 2: Function
ā ā āāā README.md
ā ā āāā trust-framework.md # Layer 3: Document
ā Wrong (Format-Based):
project/
āāā design/ # PPT, Figma
āāā docs/ # All markdown
āāā assets/ # Images
ā Right (Purpose-Based):
project/
āāā _docs/ # Project hub
āāā technical/ # System design
āāā customer/ # Client-facing
āāā compliance/ # Regulations
āāā knowledges/ # Knowledge base
Why: Users search by need (e.g., "security docs"), not format (e.g., "all PDFs").
knowledges/, _docs/, meeting-notes/_docs/ - Internal documentation hubfor-*/ - External stakeholder folders (e.g., for-pharma/, for-jmyoung/)[number]-[topic]-[subtitle].md
Examples:
ā
01-system-architecture.md
ā
02-1-overview.md
ā
04-2-table-definitions.md
ā system_arch.md (abbreviation)
ā SecurityOverview.md (camelCase)
[topic]-[category].md
Examples:
ā
executive-summary.md
ā
roi-analysis.md
ā
gtm-strategy.md
Every major directory must have a README.md with:
Template:
# [Directory Name] Documentation Index
[1-2 sentence description]
---
## š Directory Structure
\`\`\`
directory/
āāā README.md
āāā subdirectory1/
āāā subdirectory2/
\`\`\`
## š Document List
<!-- Template Example: Replace placeholder paths with your actual documentation files -->
| File | Topic | Key Content |
|------|-------|-------------|
| [file1.md](./file1.md) | Title | ⢠Item 1<br>⢠Item 2 |
**Total: N documents**
## šÆ Role-Based Recommendations
- **Executives**: doc1, doc2
- **Developers**: doc3, doc4
## š Related Documents
- **Link1**: path - description
Location: Project root Purpose: Single entry point for entire documentation
Key Sections:
# Understand current structure
tree -L 3
# Count documents
find . -name "*.md" | wc -l
# Identify patterns
find . -type d -maxdepth 2
Questions:
Analyze existing patterns:
| Pattern | Example | Assessment |
|---|---|---|
| Format-based | design/, docs/ |
ā Replace with purpose |
| Purpose-based | customer/, technical/ |
ā Keep and expand |
| Mixed | Some OK, some not | ā ļø Standardize |
Option A: Purpose-Based Reorganization (Recommended)
Option B: In-Place Structuring
Present 2 options to user before executing.
# Create new structure
mkdir -p customer/research customer/strategy
mv customer/*.md customer/research/
mv design/ai-*.md knowledges/analysis/
# Rename files
mv systemArch.md 01-system-architecture.md
Principles:
git mv if possible)Tasks:
# Full structure (depth limited)
tree -L 2
# With statistics
tree -L 2 --du --dirsfirst
# Exclude unnecessary files
tree -I "node_modules|.git|__pycache__"
# Save to file
tree -L 3 > tree.md
# .md files only
find . -name "*.md"
# Directories only
find . -type d -maxdepth 2
# File count
find . -name "*.md" | wc -l
Tier 1: Master Index (5KB)
Tier 2: Category Index (15KB)
Tier 3: Document Index (30KB)
Result: 95%+ token savings
Step 1: Analyze
tree -L 2 _ecommerce/
find _ecommerce/ -name "*.md" | wc -l # 311
Output:
_ecommerce/
āāā 97 files (mixed purposes)
āāā customer/
āāā technical/
āāā research/
Assessment:
Step 2: Plan
Option A: Full Reorganization
_ecommerce/
āāā _docs/ # Hub
āāā for-customers/ # Customer-facing (70 docs)
āāā for-partners/ # Partnership (25 docs)
āāā technical/ # Architecture (30 docs)
āāā compliance/ # PCI-DSS (31 docs)
āāā research/ # Market research (9 docs)
āāā knowledges/ # Knowledge base (17 docs)
Option B: In-Place Structure
_ecommerce/
āāā README.md (new)
āāā customer/
ā āāā README.md (new)
ā āāā [existing files]
āāā technical/
ā āāā README.md (new)
ā āāā [existing files]
Present to user: "I found 311 docs. Option A reorganizes into 7 purpose-based folders. Option B adds structure without moving files. Which do you prefer?"
Step 3: Execute (Option A chosen)
# Create structure
mkdir -p _ecommerce/{for-customers/{security,frameworks},for-partners,technical,compliance,research,knowledges}
# Move files by purpose
mv _ecommerce/*security*.md _ecommerce/for-customers/security/
mv _ecommerce/*proposal*.md _ecommerce/for-partners/
mv _ecommerce/*architecture*.md _ecommerce/technical/
Step 4: Generate READMEs
_ecommerce/README.md:
# E-commerce Platform Documentation Index
E-commerce Platform Project - 311 documents
---
## š Directory Structure
\`\`\`
_ecommerce/
āāā for-customers/ # Customer support (70 docs)
āāā for-partners/ # Partner proposals (25 docs)
āāā technical/ # Technical design (30 docs)
āāā compliance/ # Compliance documentation (31 docs)
\`\`\`
## šÆ Role-Based Guide
- **Sales Team**: for-customers/ (customer persuasion)
- **Development Team**: technical/ (system design)
- **Executive Team**: for-partners/ (proposals)
## š Statistics
- **Total**: 311 docs
- **Token savings**: 95%+ (hierarchical structure)
Step 5: Create Hierarchical Navigation
Document organization with clear categories and navigation structure.
Result:
| Approach | Token Usage | Savings |
|---|---|---|
| Load all docs | ~20MB+ | 0% (exceeds limits) |
| Load by category | ~500KB | 75% |
| Hierarchical priority | ~50KB | 95%+ ā |
Best Practice: Always load hierarchical index first, then selectively load categories.
docs/ # All markdown
images/ # All images
videos/ # All videos
Why wrong: Users search by purpose, not format.
project/A/B/C/D/E/file.md
Why wrong: Hard to navigate, unclear purpose.
Fix: Keep 3-4 levels max.
technical/
āāā file1.md
āāā file2.md
āāā file3.md # No README.md
Why wrong: No navigation, unclear purpose.
Fix: Add README.md with document list.
technical/
āāā 01-architecture.md
āāā design_doc.md # Mixed style
āāā SecurityOverview.md # CamelCase
Why wrong: Hard to scan, unprofessional.
Fix: Standardize to [number]-[topic]-[subtitle].md.
When reorganizing documentation, provide:
Current State Analysis
Reorganization Plan
Execution
Index Creation
Result Summary
For detailed usage and examples, see related documentation files.