Hosted skills.sh repository for HelixDB agent skills.
These skills are for agents that need to:
- write Helix queries in the Rust DSL
- translate from Cypher, Gremlin, SQL, and legacy HelixQL (HQL) into Helix query code
- optimize Helix query shape and index usage
- build correct dynamic
POST /v1/querypayloads - design and operate an agent memory system on Helix's hybrid graph + vector + full-text engine
Available now:
helix-query-authoringhelix-query-from-cypherhelix-query-from-gremlinhelix-query-from-hqlhelix-query-json-dynamichelix-query-optimizehelix-memory-system
Planned next:
helix-query-from-sql
npx skills add HelixDB/skillsskills/contains the published skillsdocs/contains shared reference material used while authoring skillsexamples/contains generic canonical examples and before-and-after patternsbenchmarks/contains evaluation scaffolding for prompt and gold-answer testinghelix-skills-repo-plan.mdis the working implementation plan and checklist
Use this skill when an agent needs to write or revise Helix Rust DSL queries from scratch.
It teaches agents to:
- inspect local query patterns before inventing new ones
- choose
read_batch()versuswrite_batch()correctly - anchor on the narrowest indexed node or edge set first
- preserve tenant scope for text and vector search
- shape outputs intentionally with
project,value_map,limit,range, anddedup
Use this skill when an agent needs to build or debug dynamic inline-query requests for POST /v1/query.
It teaches agents to:
- use the correct request envelope
- distinguish stored routes from inline dynamic routes
- add
parameter_typeswhen typed coercion matters - send
DateTimevalues correctly - avoid malformed bundle-shaped payloads
Use this skill when an agent needs to port Neo4j or Cypher queries into Helix Rust DSL.
It teaches agents to:
- translate
MATCHinto explicit anchors and traversals - map
WHEREtoPredicatelogic - map
RETURN,DISTINCT, ordering, and limits into explicit output shaping - handle
OPTIONAL MATCH,MERGE,CASE,UNWIND,FOREACH, multi-hop traversal, null checks, and timestamps as Helix-native translations rather than literal rewrites
Use this skill when an agent needs to port Gremlin or TinkerPop traversals into Helix Rust DSL.
It teaches agents to:
- translate
g.V,hasLabel, andhasinto anchors and predicates - map
out,in,both,outE, andinEinto explicit Helix traversal steps - map
dedup,count,range, ordering, andvalueMapinto deliberate result shaping - handle
repeat,path,select, and side-effect-heavy traversals as semantic translations rather than literal rewrites
Use this skill when an agent needs to migrate legacy HelixQL (HQL) .hx queries into the v2 Rust or TypeScript DSL.
It teaches agents to:
- map every HQL construct (
N<T>/E<T>,Out/In/OutE/FromN/ToN,WHERE/EQ/IS_IN, projections,GROUP_BY/AGGREGATE_BY,ORDER/RANGE,AddN/AddE/UPDATE/DROP,SearchV/SearchBM25) to its Rust and TypeScript builder - handle the Rust-vs-TypeScript spelling differences (
in_/in,where_/where,::/.,Some()/null) - flag HQL features with no DSL equivalent (
Upsert,RerankRRF/RerankMMR, shortest-path,Embed, advanced math,EXISTS/count-in-WHERE, schema defaults,#[model]/#[mcp]) and move that logic to application code - verify each migration by compiling, diffing the Rust vs TypeScript JSON AST for parity, and running against the same data
Use this skill when an agent needs to review or improve Helix query performance.
It teaches agents to:
- fix anchor choice before anything else
- match query shape to existing indexes
- move scope filters earlier
- shrink large projections
- review BM25 and vector search routes separately
Use this skill when an agent needs to design or operate an AI agent memory system on Helix — generation, deduplication, updating/consolidation, deletion/forgetting, and categorisation, not just retrieval.
It teaches agents to:
- model per-user memory with
User,Memory,Category,Entity, andSessionlabels plus the edges and indexes that make it fast and tenant-safe - choose the right mechanism per operation: properties + equality index, graph edges, vector search, or BM25 text search
- run the full write/maintain lifecycle (dedup-on-generate, reinforce-on-access, supersede/correct, soft-delete, decay and expiry sweeps, upsert-and-link categorisation)
- build hybrid recall that fuses vector + BM25 app-side and expands through the graph
It is TypeScript-first (@helixdb/enterprise-ql) with a Rust DSL variant in EXAMPLES.rust.md.
Start here when working on the next skills:
docs/source-canon.mddocs/dsl-cheatsheet.mddocs/cypher-rosetta.mddocs/gremlin-rosetta.mddocs/dynamic-query-examples.mddocs/optimization-checklist.mdexamples/authoring-patterns.mdexamples/search-patterns.mdexamples/optimization-patterns.md
- This repo uses the hosted
skills.shlayout:skills/<name>/SKILL.md. - Local OpenCode discovery still uses
.opencode/skills/,.claude/skills/, or.agents/skills/after installation. - This repo is intentionally written against public Helix behavior and repo-local canonical examples rather than app-specific implementations.