Status
NEO — Claude Code plugin: Matrix-themed 11-agent orchestrator with a second brain that never forgets
npx -y skills add vidit19sharma/neogents --skill statusAssembled 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
Show NEO second brain status — brain freshness, current focus, file sizes, and available tooling. Use when the user asks "where were we", "what's the status", or wants to check brain health.
SKILL.md
1.2 KB, 290 tokens by cl100k_base, as published. Nobody here has run it
/neo:status — brain health check
- Brain files: !
wc -l .neo/brain/*.md 2>/dev/null || echo "no brain — run /neo:init" - Last save: !
git log -1 --format="%ar — %s" -- .neo/brain 2>/dev/null || echo "no brain commits yet" - Code since last save: !
git diff --stat $(git log -1 --format=%H -- .neo/brain 2>/dev/null) HEAD 2>/dev/null | tail -1 || echo "n/a" - Graphify: !
command -v graphify >/dev/null 2>&1 && echo "available" || echo "not installed"
Report (concise, from the data above + brain contents)
- Focus — read
.neo/brain/ACTIVE.md: current focus, next steps, open questions. - Freshness — compare last brain save vs code changes since. If code moved but the brain didn't: flag it, offer
/neo:save. - Size discipline — flag ACTIVE.md over 150 lines or ARCHITECTURE.md over 500 (time for shadow to migrate/extract).
- Tooling — one line: graphify available or not.
No essays. A tight status block the user can scan in ten seconds.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.