CODITECT Organization Components Index
Overview
Complete index of CODITECT project organization components for internal use and customer projects.
Created: 2026-01-02 Components: 29 new components across 8 categories
Quick Reference
| Category | Count | Location |
|---|---|---|
| Standards | 7 | CODITECT-CORE-STANDARDS/ |
| Templates | 3 | CODITECT-CORE-STANDARDS/templates/ |
| Agents | 5 | agents/ |
| Skills | 4 | skills/ |
| Commands | 5 | commands/ |
| Scripts | 5 | scripts/ |
| Hooks | 2 | hooks/ |
| Workflows | 2 | docs/workflows/ |
| Prompts | 3 | prompts/ |
1. Standards (7)
Core standards documents defining CODITECT project organization requirements.
| Standard | Description | Path |
|---|---|---|
| DIRECTORY-STRUCTURE-STANDARD | Canonical folder hierarchies | CODITECT-CORE-STANDARDS/DIRECTORY-STRUCTURE-STANDARD.md |
| FILE-NAMING-CONVENTIONS | File and folder naming rules | CODITECT-CORE-STANDARDS/FILE-NAMING-CONVENTIONS.md |
| README-STANDARD | README.md requirements | CODITECT-CORE-STANDARDS/README-STANDARD.md |
| CLAUDE-MD-STANDARD | CLAUDE.md requirements | CODITECT-CORE-STANDARDS/CLAUDE-MD-STANDARD.md |
| FRONTMATTER-STANDARD | YAML frontmatter requirements | CODITECT-CORE-STANDARDS/FRONTMATTER-STANDARD.md |
| REORGANIZATION-PLAN-STANDARD | Reorganization planning format | CODITECT-CORE-STANDARDS/REORGANIZATION-PLAN-STANDARD.md |
| PRODUCTION-READINESS-CHECKLIST | Production validation checklist | CODITECT-CORE-STANDARDS/PRODUCTION-READINESS-CHECKLIST.md |
2. Templates (3)
Copy-paste templates for creating compliant documentation.
| Template | Description | Path |
|---|---|---|
| README-TEMPLATE | Minimal/Standard/Comprehensive README | CODITECT-CORE-STANDARDS/templates/README-TEMPLATE.md |
| CLAUDE-MD-TEMPLATE | CLAUDE.md templates by project type | CODITECT-CORE-STANDARDS/templates/CLAUDE-MD-TEMPLATE.md |
| REORGANIZATION-PLAN-TEMPLATE | Directory and master plan templates | CODITECT-CORE-STANDARDS/templates/REORGANIZATION-PLAN-TEMPLATE.md |
3. Agents (5)
AI agents specialized in project organization tasks.
| Agent | Description | Invocation |
|---|---|---|
| project-structure-analyzer | Analyzes structure against standards | /agent project-structure-analyzer "task" |
| file-reorganization-orchestrator | Orchestrates safe file moves | /agent file-reorganization-orchestrator "task" |
| naming-convention-enforcer | Validates and fixes naming | /agent naming-convention-enforcer "task" |
| readme-generator | Generates compliant READMEs | /agent readme-generator "task" |
| production-readiness-auditor | Comprehensive production audit | /agent production-readiness-auditor "task" |
4. Skills (4)
Reusable capabilities for organization tasks.
| Skill | Description | Path |
|---|---|---|
| project-organization | Complete organization workflow | skills/project-organization/SKILL.md |
| file-structure-analysis | Structure analysis and reporting | skills/file-structure-analysis/SKILL.md |
| readme-generation | Automated README creation | skills/readme-generation/SKILL.md |
| naming-enforcement | Naming convention validation | skills/naming-enforcement/SKILL.md |
5. Commands (5)
Slash commands for organization tasks.
| Command | Description | Usage |
|---|---|---|
| /organize | Analyze and organize project | /organize [--analyze|--plan|--execute] |
| /structure | Display and validate structure | /structure [--validate|--tree] |
| /readme-gen | Generate README files | /readme-gen [--recursive|--missing] |
| /naming-check | Check naming conventions | /naming-check [--fix] |
| /production-audit | Production readiness audit | /production-audit [--report] |
6. Scripts (5)
Python automation scripts for organization tasks.
| Script | Description | Usage |
|---|---|---|
| analyze-project-structure.py | Structure analysis engine | python scripts/analyze-project-structure.py [--json] |
| enforce-naming-conventions.py | Naming enforcement engine | python scripts/enforce-naming-conventions.py [--fix] |
| generate-readmes.py | README generation engine | python scripts/generate-readmes.py [--recursive] |
| reorganize-files.py | Safe file reorganization | python scripts/reorganize-files.py [plan.md] |
| production-readiness-check.py | Production audit engine | python scripts/production-readiness-check.py [--report] |
7. Hooks (2)
Event hooks for validation.
| Hook | Description | Path |
|---|---|---|
| pre-commit-naming-check | Validates naming before commit | hooks/pre-commit-naming-check.py |
| post-reorganization-validate | Validates after reorganization | hooks/post-reorganization-validate.py |
8. Workflows (2)
Complete workflow documentation.
| Workflow | Description | Path |
|---|---|---|
| PROJECT-REORGANIZATION-WORKFLOW | Complete reorganization workflow | docs/workflows/PROJECT-REORGANIZATION-WORKFLOW.md |
| PRODUCTION-READINESS-WORKFLOW | Production preparation workflow | docs/workflows/PRODUCTION-READINESS-WORKFLOW.md |
9. Prompts (3)
AI prompt templates for organization tasks.
| Prompt | Description | Path |
|---|---|---|
| analyze-structure-prompt | Structure analysis prompt | prompts/analyze-structure-prompt.md |
| reorganization-plan-prompt | Plan creation prompt | prompts/reorganization-plan-prompt.md |
| production-audit-prompt | Audit prompt | prompts/production-audit-prompt.md |
Usage Guide
For Internal CODITECT Use
# Analyze a repository
/organize --analyze
# Generate reorganization plan
/organize --plan
# Execute reorganization
/organize --execute
# Validate production readiness
/production-audit
For Customer Projects
Customers can use these components by:
-
Installing CODITECT framework
git submodule add https://github.com/coditect-ai/coditect-core .coditect
ln -s .coditect .claude -
Running organization commands
/organize --analyze
/production-audit -
Using scripts directly
python .coditect/scripts/analyze-project-structure.py
python .coditect/scripts/production-readiness-check.py
Workflow Summary
┌─────────────────────────────────────────────────────────────┐
│ PROJECT ORGANIZATION FLOW │
├─────────────────────────────────────────────────────────────┤
│ │
│ 1. ANALYZE 2. PLAN │
│ ┌─────────────┐ ┌─────────────┐ │
│ │ /organize │ → │ /organize │ │
│ │ --analyze │ │ --plan │ │
│ └─────────────┘ └─────────────┘ │
│ │ │ │
│ ▼ ▼ │
│ ┌─────────────┐ ┌─────────────┐ │
│ │ Score: XX │ │ Create │ │
│ │ Grade: X │ │ Plans │ │
│ └─────────────┘ └─────────────┘ │
│ │ │
│ 3. EXECUTE ▼ │
│ ┌─────────────┐ ┌─────────────┐ │
│ │ /organize │ ← │ Review & │ │
│ │ --execute │ │ Approve │ │
│ └─────────────┘ └─────────────┘ │
│ │ │
│ ▼ │
│ 4. VALIDATE │
│ ┌─────────────┐ │
│ │/production- │ │
│ │ audit │ │
│ └─────────────┘ │
│ │ │
│ ▼ │
│ ┌─────────────┐ │
│ │ Score: 95+ │ ✓ Production Ready │
│ │ Grade: A │ │
│ └─────────────┘ │
│ │
└─────────────────────────────────────────────────────────────┘
Related Documentation
- INDEX.md - CODITECT-CORE-STANDARDS overview
- CLAUDE.md - Standards CLAUDE.md
- ../CLAUDE.md - Core framework CLAUDE.md
- ../docs/workflows/WORKFLOW-LIBRARY-INDEX.md - All workflows
Version: 1.0.0 Created: 2026-01-02 Author: CODITECT Core Team Total New Components: 29