Search helix memory by meaning. Returns relevant failures and patterns.
View on GitHubenzokro/crinzo-plugins
helix
helix/skills/helix-query/SKILL.md
January 25, 2026
Select agents to install to:
npx add-skill https://github.com/enzokro/crinzo-plugins/blob/main/helix/skills/helix-query/SKILL.md -a claude-code --skill helix-queryInstallation paths:
.claude/skills/helix-query/# Memory Query
Search the learning system for relevant memories with graph expansion.
## Usage
```
/helix-query authentication patterns
/helix-query "database connection errors"
```
## Execution
```bash
HELIX="${HELIX_PLUGIN_ROOT:-$(cat .helix/plugin_root 2>/dev/null)}"
python3 "$HELIX/lib/memory/core.py" recall "$ARGUMENTS" --limit 10 --expand
```
The `--expand` flag includes 1-hop graph neighbors, surfacing:
- Solutions that solved similar failures (via `solves` edges)
- Related patterns (via `similar` edges)
- Co-occurring issues (via `co_occurs` edges)
## Output
Display each memory with:
- Name and type (failure/pattern/systemic)
- Trigger and resolution
- Effectiveness score
- Relevance to query
- Whether discovered via edge (`_via_edge: true`)