Added
Scaffold, run, and deploy a project from the CLI
helix init writes a complete project: helix.config.ts, functions/ with a sample route, package.json and tsconfig.json, and MCP registration for Claude Code and Cursor. helix dev runs it locally with file-system routing (functions/{path}.{method}.ts), hot reload, live config reload, and an optional same-port frontend. helix deploy uploads the source, provisions the project on first run, records the new projectId, and returns a deployment ID you can inspect with helix deployment get <id>.
Read the docs →
Added
An AI context layer in every scaffolded project
helix init writes CLAUDE.md, five domain skills covering auth, context, debug, frontend, and functions, and Claude Code session hooks, so an assistant generates correct Helix code without being taught the platform first. helix mcp runs an MCP server that lets an assistant inspect the project, create functions, discover and wire workspace authentications, edit config, test endpoints, and check deployment status.
Read the docs →
Added
Credentials by alias, never in your code
ctx.http.authed(alias) calls a third-party API by credential alias and the platform supplies the secret, so the same code runs locally and when deployed and no key is ever committed. Upstream non-2xx comes back as a value rather than a thrown error. Plain ctx.http handles unauthenticated calls.
Read the docs →