# doc-api

Generate API documentation from code annotations

## Usage

Run this command to generate or update documentation.

## Process

1. Analyze codebase structure
2. Extract documentation from code
3. Generate API documentation
4. Create guides and tutorials
5. Update existing docs

## Commands

```bash
# Generate TypeDoc
npx typedoc src/

# Generate OpenAPI docs
npx @openapitools/openapi-generator-cli generate

# Build documentation site
npm run docs:build
```

## Documentation Types

- API Reference
- Getting Started Guide
- Architecture Overview
- Contributing Guidelines

## Output

- Generated documentation
- API schemas
- Example code
- Configuration files
