Train
NEO — Claude Code plugin: Matrix-themed 11-agent orchestrator with a second brain that never forgets
npx -y skills add vidit19sharma/neogents --skill trainAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 25 days oldThe repository was created 25 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Promote recurring workflows from the second brain into project skills. Reviews .neo/brain/WORKFLOWS.md candidates, drafts a SKILL.md for the chosen workflow, and writes it to the project's .claude/skills/ after user approval. Use when neo-shadow flags a repeated workflow or the user says "make this a skill" or "train that workflow".
SKILL.md
2.3 KB, 484 tokens by cl100k_base, as published. Nobody here has run it
/neo:train — turn repeated workflows into skills
Candidates: !grep -c '^## candidate:' .neo/brain/WORKFLOWS.md 2>/dev/null || echo "0 (no WORKFLOWS.md — run /neo:init or wait for neo-shadow to record some)" · Existing project skills: !ls .claude/skills 2>/dev/null || echo "none"
Steps
-
Guard: if
.neo/brain/WORKFLOWS.mdis missing or has no entries, stop — nothing to train on yet. Tell the user neo-shadow records candidates automatically at save time. -
Review the ledger: read
.neo/brain/WORKFLOWS.md. List entries to the user,proposedfirst (3+ sightings), thencandidate. Skipskilled— already promoted. If the user named a workflow, go straight to it; a user request overrides the 3-sighting threshold. -
Draft the skill for the chosen workflow:
- Directory name = the candidate's kebab-name (that becomes the command name).
- Frontmatter:
namematching the directory,descriptionbuilt from the entry'striggerline — concrete enough that auto-invocation fires on the right requests. - Body: the steps from the ledger, generalized (strip session-specific paths/values into placeholders), each step with its verify command where one exists.
- Keep it under a screen. A skill that needs scrolling needs splitting.
-
Approval gate: show the user the full draft and the target path
.claude/skills/<name>/SKILL.md(the project's skills directory — never the plugin's). Do not write without a yes. -
Write + record: on approval, write the file yourself (you, NEO, on the main thread — this is outside the shadow's jail, like
/neo:initwriting BRIEF.md). Then spawn neo-shadow with a one-line delta: mark the entrystatus: skilledinWORKFLOWS.mdand add a pointer to the new skill path. -
Report: "Trained: /<name> — invoke it directly or let auto-delegation pick it up. Restart or /reload-plugins not needed for project skills."
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.