Agent skill · Workflow & Productivity

neural-train

Train SONA + MicroLoRA neural patterns from successful task completions; runs the DISTILL + CONSOLIDATE phases of the 4-step pipeline

rUv71,307★ · +1,002/wk · 3 repos on radarProfile →
claude-codecodexread-onlyMIT
Install
npx skills add ruvnet/ruflo --skill neural-train --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Allowed tools: mcp__plugin_ruflo-core_ruflo__neural_trainmcp__plugin_ruflo-core_ruflo__neural_statusmcp__plugin_ruflo-core_ruflo__neural_patternsmcp__plugin_ruflo-core_ruflo__neural_predictmcp__plugin_ruflo-core_ruflo__neural_optimizemcp__plugin_ruflo-core_ruflo__neural_compressmcp__plugin_ruflo-core_ruflo__hooks_pretrainmcp__plugin_ruflo-core_ruflo__hooks_build-agentsmcp__plugin_ruflo-core_ruflo__hooks_intelligence_trajectory-startmcp__plugin_ruflo-core_ruflo__hooks_intelligence_trajectory-stepmcp__plugin_ruflo-core_ruflo__hooks_intelligence_trajectory-endmcp__plugin_ruflo-core_ruflo__hooks_intelligence_pattern-store
Path: plugins/ruflo-intelligence/skills/neural-train/SKILL.md
Open the folder on GitHub →
Where it comes from
Source: ruvnet/ruflo
Stars: 67,015 · +629 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Neural Training Train and consolidate neural patterns. Implements the **DISTILL** and **CONSOLIDATE** phases of the 4-step intelligence pipeline. ## When to use - After completing a successful task — capture what worked. - After accumulating ≥10 task completions — run consolidation to fold patterns into long-term storage. - When training a new domain — create a MicroLoRA adapter for it. ## Standard flow (DISTILL) 1. **Check current neural status** — `mcp__plugin_ruflo-core_ruflo__neural_status`. 2. **Start a trajectory** — `mcp__plugin_ruflo-core_ruflo__hooks_intelligence_trajectory-start` with the task context. 3. **Record steps** — for each significant action, `mcp__plugin_ruflo-core_ruflo__hooks_intelligence_trajectory-step`. 4. **End trajectory** — `mcp__plugin_ruflo-core_ruflo__hooks_intelligence_trajectory-end` with `verdict: pass|fail|partial`. 5. **Learn from the trajectory** — `mcp__plugin_ruflo-core_ruflo__hooks_intelligence_learn`. 6. **Train patterns** — `mcp__plugin_ruflo-core_ruflo__neural_train` with `--pattern-type coordination --epochs 10`. 7. **Store patterns** — `mcp__plugin_ruflo-core_ruflo__hooks_intelligence_pattern-store`. 8. **Verify** — `mcp__plugin_ruflo

What's inside
Steps it walks through
  1. When to use
  2. Standard flow (DISTILL)
  3. SONA adaptation (single-domain, <0.05ms)
  4. MicroLoRA adaptation (multi-domain)
  5. CONSOLIDATE phase (separate from training)
  6. Bootstrapping from scratch
  7. Reset (testing only)
  8. CLI alternatives
Commands it runs
mcp tool call ruvllm_sona_create --json -- '{"domain": "coding"}'
mcp tool call ruvllm_sona_adapt --json -- '{"feedback": {"score": 0.9, "trajectory": "..."}}'
Create the adapter
mcp tool call ruvllm_microlora_create --json -- '{"domain": "frontend"}'
Adapt with feedback
mcp tool call ruvllm_microlora_adapt --json -- '{"adapter": "frontend", "feedback": {...}}'
CONSOLIDATE phase: apply EWC++ on weight deltas to prevent catastrophic forgetting
mcp tool call ruvllm_microlora_adapt --json -- '{"adapter": "frontend", "consolidate": true}'
mcp tool call agentdb_consolidate --json
mcp tool call neural_compress --json    # storage efficiency
More from ruflo
All skills →
About this skill
What does the neural-train skill do?

Train SONA + MicroLoRA neural patterns from successful task completions; runs the DISTILL + CONSOLIDATE phases of the 4-step pipeline

How do I install it?

Run `npx skills add ruvnet/ruflo --skill neural-train --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ruvnet/ruflo, a repository with 67,015 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going