nextlisted
Install: claude install-skill nullphase-net/enfurbish
# `/next` — manual NEXT_SESSION read
Use when the user wants to pick up where the last session left off and either the SessionStart hook didn't surface anything, was disabled, or the user wants to re-consult later in the session.
## Procedure
1. **Find the handoffs.** The skill's lib scripts live at the plugin root, two levels up from this SKILL.md. Use the base directory Claude told you about for this skill:
```bash
bun run "<skill-base-dir>/../../lib/handoffs.ts" --cwd "$(pwd)"
```
The report lists every `NEXT_SESSION.md` under the project root, newest first, `*` on the newest and `[local]` on the one in the current cwd. Read the header line before anything else — it names the count, how far behind the local pointer is when it is not the newest, and how many commits have landed since the newest handoff was written.
2. **Read the pointer the report marks `*`.** Not the local one, unless they are the same file. Cwd varies between sessions in one project — an autonomous run in a subdirectory writes its own handoff — and reading the cwd-local file because it was closest is what cost a session real turns on 2026-08-18.
- If the local file is not the newest, say so in one line before summarizing: which file you read, and how much staler the local one is.
- If there are no handoffs at all: tell the user nothing is staged and stop. Don't synthesize a follow-up plan from thin air.
- **If the header says commits are behind it, the file describes a repo stat