You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Comprehensive guide to navigating, searching, and contributing to Auto Code's documentation.
Overview
Auto Code's documentation portal is organized into multiple interconnected directories, each serving a specific purpose. Whether you're a new user getting started, an advanced developer extending the system, or a contributor writing documentation, this portal helps you find exactly what you need.
Documentation Structure
Auto Code/
├── README.md # Project overview, quick start, downloads
├── CLAUDE.md # Architecture for AI agents
├── CHANGELOG.md # Release history
├── guides/ # User and developer guides
│ ├── QUICK-START.md # Get started in 15 minutes
│ ├── CLI-USAGE.md # Terminal-only usage
│ ├── ADVANCED-USAGE.md # Advanced patterns and customization
│ ├── AGENT-CUSTOMIZATION.md # Customize agents and prompts
│ └── DOCUMENTATION-PORTAL.md # This file
├── docs/ # Technical documentation and templates
│ ├── README.md # Documentation hub and template guide
│ ├── STYLE_GUIDE.md # Writing style and conventions
│ ├── search/ # Search index and strategies
│ │ ├── INDEX.md # Comprehensive searchable index
│ │ └── SEARCH-GUIDE.md # Effective search techniques
│ ├── features/ # Feature documentation
│ ├── modules/ # Architecture by module
│ ├── api/ # API references
│ ├── templates/ # Reusable documentation templates
│ └── integration/ # Integration and testing docs
└── apps/ # Application-specific documentation
├── backend/README.md # Backend architecture and usage
└── frontend/README.md # Frontend architecture and usage
# Document a new feature
cp docs/templates/feature/spec.md .auto-claude/specs/XXX-my-feature/spec.md
# Document a module
cp docs/templates/architecture/module-architecture.md docs/modules/my-module.md
# Document an API endpoint
cp docs/templates/api/endpoint-documentation.md docs/api/my-endpoint.md
# Create a user guide
cp docs/templates/guides/user-guide.md guides/my-topic-guide.md
Documentation Lifecycle
Plan - Feature spec created in .auto-claude/specs/
Implement - Code changes with inline documentation