Loom session end
Skill DanielC000/loom/packages/daemon/assets/skills/loom-session-end
Orchestrate a fleet of real Claude Code agents on your Claude subscription, not per-token API bills - local-first.
npx -y skills add DanielC000/loom --skill loom-session-endAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 6 stars6 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
Use when wrapping up work — "done for now", "wrapping up", "end session", "log this", "save progress". Records progress + decisions on the board task and leaves the work clean and resumable by the next session.
SKILL.md
2.6 KB, as published. Nobody here has run it
Session End (Loom)
Leave the work picked-up-able by the next session. The board is the source of truth; the vault holds prose. The daemon auto-commits the vault — never run manual vault git.
Steps
- Update the board task (
tasks_update): note what was completed in the body, record decisions + their rationale, and add items for what remains. Move the task to its correct column by ROLE (review / terminal / parked). Only move to a terminal column if it's actually true — scoped work outstanding means it isn't done. - Code state — ensure the build/gate passes; commit only if asked. Report any uncommitted changes
plainly. When you do commit, stage an explicit list of the paths this session touched
(
git add <path> …) — nevergit add -Aorgit add .in a shared workspace: other unrelated in-flight work may be present and a blanket stage would sweep it into your commit. Its subject follows the card's Conventional-Commits title (type(scope): summary). Push with plaingit push(it already refuses a non-fast-forward — there is no valid--ff-onlypush flag); reach for--force-with-leaseonly as a deliberate guard when a force is genuinely intended. - Prose — if you changed design/architecture notes in the project's vault, apply
/loom-doc-hygiene(rewrite in place, no contradictions, bounded). - Living resume doc (leads) — if you keep one, make sure it's current: what's merged, the prioritized backlog, key decisions, where things stand. A successor should be able to read it cold.
- Summary — a short, factual wrap-up: what shipped, what's verified, what's left.
By role
- Worker: finish with
worker_report—done(one-line summary + key decisions) orblocked(withneeds). Don't merge; your manager reviews and gates. See/worker. - Manager near your context window: hand OFF YOURSELF via
recycle_me, seeding the successor from your living resume doc (worker_recycleis for recycling a subordinate worker, not yourself). See/orchestrate.
Lifecycle close-out
Once the board and code are clean, park the session honestly:
- Genuinely complete, session should stop: end it with
end_me(self-terminal). - More to do later, should resume:
wake_me(a delay + a note) to park it for a later wake rather than leaving it idle.