get_ai_context
Boot AI agent context by retrieving project skeleton, documentation, or compressed source code. Call first to reduce token usage and gain codebase structure overview for deeper understanding.
Instructions
Boot AI agent context. Two modes:
Default: returns skeleton + docs (2-3k tokens) for structure overview.
includeFiles: ['']: returns ALL compressed source code without skeleton/docs (pure code dump). Filters vendored files via .contextignore (auto-created on first call). Call FIRST when starting work. Use [''] for small/medium projects that fit in context.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Project root path | |
| includeDocs | No | Include doc-dialect documentation (default: true, auto-disabled with '*') | |
| includeFiles | No | Files to include. Use ["*"] for ALL source files (filtered by .contextignore). Or specific files: ["parser.js", "tools.js"] | |
| includeSkeleton | No | Include project skeleton (default: true, auto-disabled with '*') |