the signals and their derived score are provisional and subject to change.
validate manually before sharing.
cb893050927a193444c9cbfb93209f8efee47ec8243c099f97f4817b8bcb9a705d20daf5daf719d4Authored: 1 week ago (Tue, 1 Sep 2026 17:29:21 +0000)Match: Co-authored-by: Cursor <cursoragent@cursor.com>243c099f97f4817b8bcb9a705d20daf5daf719d4Authored: 1 week ago (Tue, 1 Sep 2026 17:29:21 +0000)Match: Co-authored-by: Cursor <cursoragent@cursor.com>1e299d77e40c52cc44abe87ecaea37e3449cbb09Authored: 2 weeks ago (Mon, 31 Aug 2026 17:35:21 +0000)Match: Co-authored-by: Cursor <cursoragent@cursor.com>1e299d77e40c52cc44abe87ecaea37e3449cbb09Authored: 2 weeks ago (Mon, 31 Aug 2026 17:35:21 +0000)Match: Co-authored-by: Cursor <cursoragent@cursor.com>b302834ed2d514b9426877661c50acf4347d6220Authored: 2 weeks ago (Sun, 30 Aug 2026 21:06:10 +0000)Match: Co-authored-by: Cursor <cursoragent@cursor.com>b302834ed2d514b9426877661c50acf4347d6220Authored: 2 weeks ago (Sun, 30 Aug 2026 21:06:10 +0000)Match: Co-authored-by: Cursor <cursoragent@cursor.com>3486443d2acf4a526e22ab5ac05d25aa8de7d251Authored: 2 weeks ago (Sun, 30 Aug 2026 18:07:09 +0000)Match: Co-authored-by: Cursor <cursoragent@cursor.com>3486443d2acf4a526e22ab5ac05d25aa8de7d251Authored: 2 weeks ago (Sun, 30 Aug 2026 18:07:09 +0000)Match: Co-authored-by: Cursor <cursoragent@cursor.com>9c20372d5ad5c096d19952a0dce992e8fbb93a1fAuthored: 3 months ago (Mon, 15 Jun 2026 19:08:16 +0000)Match: Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>4a687bea87b41c1d76bf95fa7499f93b4a250c19Authored: 3 months ago (Mon, 15 Jun 2026 19:03:29 +0000)Match: Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>353f7ca7167dd031631a29b86ece61baf5a30bb8Authored: 7 months ago (Sun, 8 Feb 2026 10:41:28 +0000)Match: noreply@anthropic.com353f7ca7167dd031631a29b86ece61baf5a30bb8Authored: 7 months ago (Sun, 8 Feb 2026 10:41:28 +0000)Match: noreply@anthropic.com353f7ca7167dd031631a29b86ece61baf5a30bb8Authored: 7 months ago (Sun, 8 Feb 2026 10:41:28 +0000)Match: https://claude.ai/code/session_01MYGPgMX6xJmjz7g27bsMcD16a2c17811f9df371d1c7e3f0698aa3de421f481Authored: 7 months ago (Sun, 8 Feb 2026 10:15:28 +0000)Match: noreply@anthropic.com16a2c17811f9df371d1c7e3f0698aa3de421f481Authored: 7 months ago (Sun, 8 Feb 2026 10:15:28 +0000)Match: noreply@anthropic.com16a2c17811f9df371d1c7e3f0698aa3de421f481Authored: 7 months ago (Sun, 8 Feb 2026 10:15:28 +0000)Match: https://claude.ai/code/session_01MYGPgMX6xJmjz7g27bsMcDf40905644e8f990849ec7b79d675476ca57d04f3Authored: 10 months ago (Thu, 13 Nov 2025 02:47:57 +0000)Match: noreply@anthropic.comf40905644e8f990849ec7b79d675476ca57d04f3Authored: 10 months ago (Thu, 13 Nov 2025 02:47:57 +0000)Match: noreply@anthropic.com6f39fbe6e0c342444ff807d263f88c5c34389d23Authored: 1 year ago (Wed, 23 Jul 2025 20:48:04 +0000)Match: Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>39526177aedd45453d22b4118b0cfca7f0b666f5Authored: 1 year ago (Thu, 17 Jul 2025 23:41:59 +0000)Match: Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>crates/cli/CLAUDE.mdTool: claude-code# helix-cli
The Helix CLI — binary `helix`, crate `helix-cli` (v3.0.1). It is a **runtime orchestrator**, not a compiler.
## v2 → v3 shift (read this first)
This CLI has **no `helix compile` and no `helix check`**, and there is **no `.hx` query workflow** in it. (Older notes/memory that mention those commands describe the v2 CLI and are stale.) In v3:
- **Queries are JSON requests** sent to a *running* instance via `POST /v2/query` (`helix query`). Validation happens server-side, in the instance.
- docs/llms.txtTool: unspecified# HelixDB
> HelixDB combines a property graph, approximate vector search, and BM25 full-text search behind one operation-tree query model. Requests run through Cloud, a local server, or the embedded runtime.
Quickstart (local instance requires Docker or Podman):
macOS and Linux:
```bash
curl -sSL "https://install.helix-db.com" | bash # install the helix CLI
```
Windows PowerShell:
```powershell
irm https://raw.githubusercontent.com/HelixDB/helix-db/main/crates/cli/install.ps1 | iex
```
Then:
```bash
AGENTS.mdTool: agents-md### approach
- Make invalid states unrepresentable using algebraic data types (e.g. enums).
- Use code coverage tools to make sure unit test coverage covers every edge case. This should be easily doable if invalid states are unrepresentable.
- Keep things modular.
- Define clear contract boundaries for testability. Document them all, and make sure doc comment examples are ran as tests.
- Use assertions for invariants when encoding within types is not feasible.
- Use clippy and fix code smells reportenone