Agent Skills: Memory Query

Search helix memory by meaning. Returns relevant insights ranked by relevance × causal effectiveness.

UncategorizedID: enzokro/tether/helix-query

Install this agent skill to your local

pnpm dlx add-skill https://github.com/enzokro/crinzo-plugins/tree/HEAD/helix/skills/helix-query

Skill Files

Browse the full folder contents for helix-query.

Download Skill

Loading file tree…

helix/skills/helix-query/SKILL.md

Skill Metadata

Name
helix-query
Description
Search helix memory by meaning. Returns relevant insights ranked by relevance × causal effectiveness.

Memory Query

HELIX="$(cat .helix/plugin_root)"

# Semantic search (flat)
python3 "$HELIX/lib/memory/core.py" recall "$ARGUMENTS" --limit 10

# Graph-expanded search (follows relationships)
python3 "$HELIX/lib/memory/core.py" recall "$ARGUMENTS" --limit 10 --graph-hops 1

# Find related insights to a specific insight
python3 "$HELIX/lib/memory/core.py" neighbors "insight-name" --limit 5

Scoring: rrf_score * (0.5 + 0.5 * causal_adjusted_effectiveness) * recency. Graph-expanded results have _hop: 1 — discovered via relationship edges, not direct match. Use --help for filtering options (--min-effectiveness, --suppress-names, --min-relevance).