Quick Start
Quick Start
Section titled “Quick Start”Get from zero to semantic search in 5 minutes.
Prerequisites
Section titled “Prerequisites”- Node.js 18+
- An ACECode account (sign up free)
- A codebase to index
Installation
Section titled “Installation”-
Install the CLI
Terminal window npm install -g @ace/cli -
Authenticate
Create an API key in your account settings, then:
Terminal window export ACE_API_KEY=ace_xxxx...Or add it to your shell profile for persistence.
-
Initialize your project
Navigate to your project root and run:
Terminal window cd /path/to/your/projectace initThis detects your language/framework, registers the project, and creates a
.ace/config directory. -
Index your codebase
Terminal window ace indexFor large codebases, indexing runs in batches. You’ll see progress:
✅ Registered project: my-project (id: y3p768RuGnaE)📁 Scanning files...⚡ Indexing 847 files...✅ Done! 12,840 chunks · 3,210 symbols indexed in 42s -
Search!
Terminal window ace search "how does authentication work?"
Next steps
Section titled “Next steps”- Connect to VS Code — get inline AI suggestions powered by your index
- Set up MCP — use with Claude or any MCP-compatible AI
- CLI Reference — full command documentation