1---2name: repository-layout3description: Repository Layout4---56# Repository Layout78## Core Go CLI910- `cmd/main.go`: boots the CLI and injects the version string.11- `cmd/commands/`: Cobra command implementations (`generate`, `validate`, `migrate`, `mcp`, CRUD helpers).12- `internal/`: service packages for config loading, generator, templates, includes, CRUD, MCP, validator, logger, and migration.1314## Multi-runtime Wrappers1516- `release/npm` and `release/pypi`: JavaScript and Python entry points backed by the Go binary.17- `package.json` and `pyproject.toml`: publish metadata for npm and PyPI wrappers.18- Homebrew distribution is managed via a tap outside this repository.1920## Documentation & Tooling2122- `docs/`, `site/`, and `mkdocs.yaml`: user-facing documentation and site generation.23- `schema/`: JSON schemas for configuration and MCP files.24- `tests/`: fixtures, integration, e2e, and platform coverage.