Init
NEO — Claude Code plugin: Matrix-themed 11-agent orchestrator with a second brain that never forgets
npx -y skills add vidit19sharma/neogents --skill initAssembled 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
Initialize the NEO second brain in this project. Scaffolds .neo/brain/ from templates, runs a short interview to fill BRIEF.md, and writes a starter CLAUDE.md if none exists. Use when a project has no .neo/ directory yet.
SKILL.md
1.7 KB, 408 tokens by cl100k_base, as published. Nobody here has run it
/neo:init — bootstrap the second brain
Current state: !ls -d .neo 2>/dev/null || echo "no .neo directory" · CLAUDE.md: !ls CLAUDE.md 2>/dev/null || echo "absent"
Steps
-
Guard: if
.neo/brain/already exists, say so and stop — never overwrite a living brain. Suggest/neo:statusinstead. -
Scaffold:
mkdir -p .neo/brain .neo/plans cp "${CLAUDE_PLUGIN_ROOT}/templates/brain/"*.md .neo/brain/ -
Interview — ask ONE question at a time, offer your best-guess answer first (infer from the codebase before asking; if the repo answers a question, don't ask it):
- What is this project? (one paragraph)
- Who/what is it for, and why does it exist?
- Scope of the current version? Explicit non-goals?
- Hard constraints? (platform, language, performance, compliance)
- Build / test / lint commands? (read package.json, Makefile, etc. first — confirm, don't ask blind)
-
Write:
- Fill
.neo/brain/BRIEF.mdfrom the interview (replace all placeholder comments). - If the codebase is non-empty, do a quick pass (or spawn keymaker) to fill
.neo/brain/ARCHITECTURE.mdstack + layout sections. Leave patterns/gotchas to accumulate naturally. - If
CLAUDE.mdis absent, copy${CLAUDE_PLUGIN_ROOT}/templates/CLAUDE.mdand fill the command placeholders. If present, leave it alone.
- Fill
-
Report: list created files, then: "Brain initialized. It loads automatically next session; save anytime with /neo:save."
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.