Documentation Index
Fetch the complete documentation index at: https://docs.helix-db.com/llms.txt
Use this file to discover all available pages before exploring further.
For the complete documentation index optimized for AI agents, see llms.txt.Bootstrap a first HelixDB app for a coding agent.
helix chef installs agent context, creates a local project, starts the local database, seeds starter data, and opens the dashboard.
Usage
helix cook is an alias for helix chef.
Flags
| Flag | Type | Description | Default |
|---|---|---|---|
-a, --auto | Boolean | Run automatic setup with defaults and no prompts. | false |
What it does
Automatic setup runs these steps:- Installs Helix skills with
npx skills add HelixDB/skills. - Installs the Helix docs MCP with
npx add-mcp https://docs.helix-db.com/mcp --name helixdb-docs. - Initializes a local project under
~/my-first-helix-projectwith adevinstance on port8080. - Writes
HELIX_CHEF_PROMPT.md, a placeholder prompt for the active coding agent. - Writes starter dynamic query files:
examples/seed.jsoninserts starterUsernodes.examples/read_users.jsonreads the seeded users.
- Starts the local database with the equivalent of
helix run dev. - Runs
examples/seed.jsonwith the equivalent ofhelix query dev --file examples/seed.json. - Starts the dashboard on
http://localhost:3000with the equivalent ofhelix dashboard start --restart.
helix chef is intended for local development in a coding-agent environment. It uses npx, so Node.js/npm must be available on PATH for skills and MCP setup.Interactive mode
Runninghelix chef in a terminal prompts first for:
HELIX_CHEF_PROMPT.md so your coding agent can use it when replacing the generic starter queries.
Next, choose a setup mode:
| Mode | Behavior |
|---|---|
| Automatic setup | Runs every setup step with defaults. |
| Manual setup | Lets you choose the project path and confirm each setup step. |
Generated prompt placeholder
The query-generation prompt is intentionally a placeholder. Until the final generator prompt is shipped,HELIX_CHEF_PROMPT.md tells the coding agent to replace the starter JSON files with app-specific dynamic query requests based on the user’s build intent.
Examples
Related
helix init— initialize a project without agent setup.helix run— start a local instance.helix query— send dynamic JSON requests.helix dashboard— launch the dashboard.