CODITECT Repository Naming Convention
CODITECT Repository Naming Convention
Overview
All CODITECT repositories follow a standardized naming convention that organizes projects by category and provides clear, consistent identification across the ecosystem.
Naming Pattern
coditect-{category}-{name}
Components
- CODITECT: Organization prefix (always lowercase)
- category: One of 8 standardized categories (see below)
- name: Descriptive name for the specific project (lowercase, hyphenated)
Categories
1. core - Core Framework Components
Prefix: coditect-core-
Essential framework components that form the foundation of CODITECT.
| Repository | Description |
|---|---|
| CODITECT-core | Core .Claude framework with agents, skills, commands |
| CODITECT-core-framework | CODITECT framework utilities and shared code |
| CODITECT-core-architecture | Architecture documentation and decisions |
2. cloud - Cloud Platform
Prefix: coditect-cloud-
Cloud-hosted services and infrastructure for CODITECT Cloud Platform.
| Repository | Description |
|---|---|
| CODITECT-cloud-backend | FastAPI backend services |
| CODITECT-cloud-frontend | React TypeScript frontend |
| CODITECT-cloud-ide | Cloud IDE based on Eclipse Theia |
| CODITECT-cloud-infra | Terraform infrastructure as code |
3. dev - Developer Tools
Prefix: coditect-dev-
Developer-focused tools, utilities, and integrations.
| Repository | Description |
|---|---|
| CODITECT-cli | Command-line interface tools |
| CODITECT-analytics | Usage analytics and metrics |
| CODITECT-automation | AI orchestration automation |
| CODITECT-dev-context | Context management tools |
| CODITECT-dev-intelligence | Development intelligence features |
| CODITECT-dev-pdf | PDF generation utilities |
| CODITECT-dev-audio2text | Audio transcription tools |
| CODITECT-dev-qrcode | QR code generation |
4. market - Marketplace
Prefix: coditect-market-
Agent marketplace and related commercial features.
| Repository | Description |
|---|---|
| CODITECT-market-agents | Agent marketplace platform |
| CODITECT-market-activity | Activity feed and notifications |
5. docs - Documentation
Prefix: coditect-docs-
Documentation sites, training materials, and legal documents.
| Repository | Description |
|---|---|
| CODITECT-docs-main | Main documentation site (Docusaurus) |
| CODITECT-docs-blog | Blog and content management |
| CODITECT-docs-training | Training materials and courses |
| CODITECT-docs-setup | Setup and installation guides |
| CODITECT-legal | Legal documents (EULA, Terms, Privacy) |
6. ops - Operations
Prefix: coditect-ops-
Operations, distribution, and licensing systems.
| Repository | Description |
|---|---|
| CODITECT-ops-distribution | Installer and updater scripts |
| CODITECT-ops-license | License management system |
| CODITECT-ops-projects | Project orchestration (this repo) |
7. gtm - Go-to-Market
Prefix: coditect-gtm-
Marketing, sales, and customer-facing materials.
| Repository | Description |
|---|---|
| CODITECT-gtm-strategy | GTM strategy and planning |
| CODITECT-gtm-legitimacy | Credibility and social proof |
| CODITECT-gtm-comms | Communications and messaging |
| CODITECT-gtm-crm | CRM integration |
| CODITECT-gtm-personas | User personas and research |
| CODITECT-gtm-customer-clipora | Customer success stories |
8. labs - Research & Experiments
Prefix: coditect-labs-
Research projects, experimental features, and archives.
| Repository | Description |
|---|---|
| CODITECT-labs-agent-standards | Agent development standards |
| CODITECT-labs-agents-research | Multi-agent research |
| CODITECT-labs-Claude-research | Claude integration research |
| CODITECT-labs-workflow | Workflow analysis tools |
| CODITECT-labs-screenshot | Screenshot automation |
| CODITECT-labs-v4-archive | V4 codebase archive |
| CODITECT-labs-multi-agent-rag | RAG research |
| CODITECT-labs-cli-web-arch | CLI/Web architecture research |
| CODITECT-labs-first-principles | First principles research |
| CODITECT-labs-learning | Learning experiments |
| CODITECT-labs-mcp-auth | MCP authentication research |
Rules for New Repositories
DO
- Always use lowercase for all components
- Use hyphens to separate words within the name
- Choose the most appropriate category from the 8 options
- Keep names concise but descriptive (2-4 words)
- Use singular nouns when possible (e.g.,
workflownotworkflows)
DON'T
- Use underscores or CamelCase
- Include version numbers in repo names
- Use abbreviations unless widely understood
- Create repos outside the 8 category structure
- Use special characters or spaces
Examples
Good Names
coditect-dev-context- Developer tool for context managementcoditect-cloud-backend- Cloud platform backend servicecoditect-labs-mcp-auth- Research project for MCP authenticationcoditect-docs-training- Training documentation
Bad Names (Avoid)
Coditect-Dev-Context- Wrong: uses CamelCasecoditect_dev_context- Wrong: uses underscorescoditect-context- Wrong: missing categorycoditect-dev-context-v2- Wrong: version in namecoditect-misc-stuff- Wrong: vague name
Migration Notes
When renaming existing repositories:
- Update all internal references (Claude.md, README.md, imports)
- Update .gitmodules in parent repositories
- Update GitHub repo settings and remote URLs
- Communicate changes to team members
- Update CI/CD configurations
Directory Structure
In the master repository, submodules are organized by category:
coditect-rollout-master/
├── submodules/
│ ├── core/ # 3 repos
│ │ ├── coditect-core/
│ │ ├── coditect-core-framework/
│ │ └── coditect-core-architecture/
│ ├── cloud/ # 4 repos
│ │ ├── coditect-cloud-backend/
│ │ ├── coditect-cloud-frontend/
│ │ ├── coditect-cloud-ide/
│ │ └── coditect-cloud-infra/
│ ├── dev/ # 9 repos
│ │ ├── coditect-cli/
│ │ ├── coditect-analytics/
│ │ └── ...
│ ├── market/ # 2 repos
│ ├── docs/ # 5 repos
│ ├── ops/ # 3 repos
│ ├── gtm/ # 6 repos
│ └── labs/ # 11 repos
Total: 41 submodules across 8 categories
Last Updated: November 19, 2025 Author: AZ1.AI INC