helix-cli
Installation
SKILL.md
Helix CLI
Drive the helix CLI (crate helix-cli, binary helix) to operate live Helix instances. In v3 the CLI is a runtime orchestrator, not a compiler.
The mental model that matters most:
- There is no
helix compile, nohelix check, and no.hxquery workflow. Those are stale v2 concepts — the v3 CLI hides them and errors with a hint if you try them. - Queries are JSON "dynamic queries" sent to a running instance via
POST /v1/query(helix query). Validation happens server-side, in the instance. - Local instances are Docker/Podman containers (image
ghcr.io/helixdb/enterprise-dev:latest).helix startruns one; in-memory by default, on-disk (MinIO-backed) with--disk. - Helix Cloud instances deploy via
helix push, with auth and metadata managed byhelix auth,helix sync, and theworkspace/project/clustercommands.
This skill is about driving the CLI. For authoring the query bodies themselves, use the query skills (helix-query-rust, helix-query-typescript, helix-query-json-dynamic, etc.).
When To Use
Use this skill when the task is to: