Save
Save session context to the NEO second brain. Spawns neo-shadow to update .neo/brain/ files (ACTIVE, PROGRESS, DECISIONS, LESSONS) from the session delta. Use at task boundaries, before ending a session, before compaction, or whenever the user says "save context" or "update the brain".From its SKILL.md
npx -y skills add vidit19sharma/neogents --skill saveAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 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.
SKILL.md
1.7 KB, 360 tokens by cl100k_base, as published. Nobody here has run it
/neo:save — persist session memory
Brain: !ls .neo/brain 2>/dev/null || echo "MISSING — run /neo:init first" · Uncommitted: !git diff --stat HEAD 2>/dev/null | tail -1 || echo "not a git repo"
Steps
-
Guard: if
.neo/brain/is missing, stop and point to/neo:init. -
Assemble the session delta (you, NEO, know the session — the shadow doesn't):
- What was worked on and what state it reached (done / in-flight / blocked)
- What changed on disk (summarize from the git stat above; include key file paths)
- Decisions made this session, with the why and the rejected alternatives
- Anything that bit us — mistakes, surprises, gotchas worth a lesson
- What comes next + open questions
-
Spawn neo-shadow (Agent tool) with the 6-section contract. TASK: update the brain from this delta. EXPECTED OUTCOME: ACTIVE rewritten (cap 150 lines), PROGRESS appended under today's date, DECISIONS/LESSONS updated only if the delta earns it, ARCHITECTURE only if patterns changed, WORKFLOWS updated if the session repeated a known multi-step sequence. MUST NOT: touch anything outside
.neo/. CONTEXT: the full delta from step 2. -
Verify: confirm from the shadow's report which files changed. Relay one line to the user: "Brain saved — ACTIVE rewritten, PROGRESS +1 entry" (adjust to reality). If the report flags a workflow at 3+ sightings, offer
/neo:train.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.