Back to Skills

helix-stats

verified

Show learning system health - memory counts, edges, effectiveness, feedback loop status.

View on GitHub

Marketplace

crinzo-plugins

enzokro/crinzo-plugins

Plugin

helix

Repository

enzokro/crinzo-plugins

helix/skills/helix-stats/SKILL.md

Last Verified

January 25, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/enzokro/crinzo-plugins/blob/main/helix/skills/helix-stats/SKILL.md -a claude-code --skill helix-stats

Installation paths:

Claude
.claude/skills/helix-stats/
Powered by add-skill CLI

Instructions

# System Health

Display memory system statistics, graph edges, and learning loop status.

## Execution

```bash
HELIX="${HELIX_PLUGIN_ROOT:-$(cat .helix/plugin_root 2>/dev/null)}"
python3 "$HELIX/lib/memory/core.py" health
```

## Output Includes

- **total_memories**: Count of all memories
- **total_edges**: Count of graph relationships
- **by_type**: Breakdown by failure/pattern/systemic
- **edge_types**: Breakdown by solves/co_occurs/similar/causes
- **effectiveness**: Overall helped/(helped+failed) ratio
- **with_feedback**: Memories that have received feedback
- **status**: HEALTHY or NEEDS_ATTENTION
- **issues**: List of problems if any

## Maintenance Commands

After viewing health, consider running maintenance:

```bash
HELIX="${HELIX_PLUGIN_ROOT:-$(cat .helix/plugin_root 2>/dev/null)}"

# Decay dormant memories (halve scores for unused memories)
python3 "$HELIX/lib/memory/core.py" decay --days 30 --min-uses 2

# Prune ineffective memories (remove low performers)
python3 "$HELIX/lib/memory/core.py" prune --threshold 0.25 --min-uses 3

# Consolidate similar memories (merge near-duplicates)
python3 "$HELIX/lib/memory/core.py" consolidate
```

## Edge Management

Query and create edges:

```bash
# View all edges for a memory
python3 "$HELIX/lib/memory/core.py" edges --name "memory-name"

# View edges by type
python3 "$HELIX/lib/memory/core.py" edges --rel solves

# Create an edge (pattern solves failure)
python3 "$HELIX/lib/memory/core.py" edge --from "pattern-name" --to "failure-name" --rel solves
```

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
1517 chars