Skip to content

MIGRATION C155 DOCS

C-155 Documentation Reorganization — Migration Notes

Date: December 5, 2025 Cycle: C-155 Status: Complete


📊 Summary

This reorganization consolidates scattered documentation into the numbered directory structure (00-12) while preserving git history.

🔄 Changes Made

Directories Consolidated

Old Location New Location Reason
papers/ 07-RESEARCH-AND-PUBLICATIONS/papers/ Research consolidation
architecture/ 04-TECHNICAL-ARCHITECTURE/architecture/ Architecture alignment
specs/ 08-REFERENCE/specs/ Reference alignment
deployment/ 05-IMPLEMENTATION/deployment/ Implementation alignment
habits/ 11-SUPPLEMENTARY/habits/ Supplementary content
onboarding/ 05-IMPLEMENTATION/guides/onboarding/ Implementation guides
cycles/ 10-ARCHIVES/cycles/ Historical archives
badges/ assets/badges-extra/ Asset consolidation
cathedrals/ 02-THEORETICAL-FOUNDATIONS/cathedrals/ Theoretical content
civic-core/ 03-GOVERNANCE-AND-POLICY/civic-core/ Governance content
diagrams/ 09-APPENDICES/diagrams/ Appendix content
figures/ 09-APPENDICES/figures/ Appendix content

New Sections Created

Section Purpose
12-COMMUNITY/ Community governance, education, events
06-OPERATIONS/security/ Security documentation

Files Relocated

Old Path New Path
alphacivilization.md 07-RESEARCH-AND-PUBLICATIONS/papers/
founders-agents.gic.md 03-GOVERNANCE-AND-POLICY/
sentinel_voting_protocol.md 03-GOVERNANCE-AND-POLICY/
CATHEDRAL_ARCHITECTURE_PLAN.md 04-TECHNICAL-ARCHITECTURE/
ktt-trial-001-implementation.md 07-RESEARCH-AND-PUBLICATIONS/
THE_INTERNET_BREATHES_AGAIN.md 02-THEORETICAL-FOUNDATIONS/
HIVE-*.md 05-IMPLEMENTATION/hive/
C150_*.md, C151_*.md, C152_*.md 10-ARCHIVES/cycles/
security/*.md 06-OPERATIONS/security/

Updated 00-START-HERE.md with corrected paths: - ./01-whitepapers/./07-RESEARCH-AND-PUBLICATIONS/whitepapers/ - ./05-research/./07-RESEARCH-AND-PUBLICATIONS/ - ./03-architecture/./04-TECHNICAL-ARCHITECTURE/ - ./06-specifications/./08-REFERENCE/ - ./02-governance/./03-GOVERNANCE-AND-POLICY/ - ./08-processes/./06-OPERATIONS/


📁 Final Structure

docs/
├── 00-META/                        # Meta-documentation & indices
├── 00-START-HERE/                  # Entry point navigation
├── 00-START-HERE.md                # Quick start guide
├── 01-INTRODUCTION/                # Introduction materials
├── 02-THEORETICAL-FOUNDATIONS/     # Philosophy & theory
│   └── cathedrals/                 # Cathedral documentation (NEW)
├── 03-GOVERNANCE-AND-POLICY/       # Governance documents
│   └── civic-core/                 # Civic core documentation (NEW)
├── 04-TECHNICAL-ARCHITECTURE/      # System design & architecture
│   └── architecture/               # Architecture docs (NEW)
├── 05-IMPLEMENTATION/              # Deployment & development guides
│   ├── deployment/                 # Deployment guides (NEW)
│   ├── hive/                       # HIVE documentation (NEW)
│   └── guides/onboarding/          # Onboarding guides (NEW)
├── 06-OPERATIONS/                  # Operations & runbooks
│   └── security/                   # Security documentation (NEW)
├── 07-RESEARCH-AND-PUBLICATIONS/   # Research & whitepapers
│   └── papers/                     # Academic papers (CONSOLIDATED)
├── 08-REFERENCE/                   # Indices & quick reference
│   └── specs/                      # Specifications (NEW)
├── 09-APPENDICES/                  # Supporting materials
│   ├── diagrams/                   # Diagrams (CONSOLIDATED)
│   └── figures/                    # Figures (CONSOLIDATED)
├── 10-ARCHIVES/                    # Historical documents
│   └── cycles/                     # Cycle archives (CONSOLIDATED)
├── 11-SUPPLEMENTARY/               # Topic-specific content
│   └── habits/                     # Habits documentation (NEW)
├── 12-COMMUNITY/                   # Community documentation (NEW)
│   ├── governance/
│   ├── education/
│   ├── contributing/
│   └── events/
├── assets/                         # Documentation assets
│   └── badges-extra/               # Extra badges (NEW)
├── INDEX.md                        # Main documentation index
└── README.md                       # Documentation README

🔍 Verification

# Find markdown files with potentially broken links
grep -r "\.\./papers/" docs/ --include="*.md"
grep -r "\./papers/" docs/ --include="*.md"
grep -r "architecture/" docs/ --include="*.md" | grep -v "04-TECHNICAL"

Verify structure:

ls -la docs/ | grep "^d" | awk '{print $NF}'

🔙 Rollback

If needed, revert to previous state:

git checkout main
git branch -D cursor/reorganize-documentation-structure*


📝 Post-Migration Tasks

  1. Update external links pointing to old documentation paths
  2. Verify mkdocs build if using documentation generator
  3. Update CI/CD workflows that reference doc paths
  4. Notify contributors of new structure

"Intelligence moves. Integrity guides." — Mobius Principle

C-155 Documentation Reorganization Complete 🌀