are-we-done
[Adam''s Skills] Deterministic close-out gate for a session or work tree. Sweeps a fixed set of sources — the todo list, this session''s own promises, git…
[Adam''s Skills] Print a plain-English re-entry briefing for a user who has lost the thread of a long-running session — after a distraction, overnight, or over a weekend. Re-explains what the session is, where it got to, what state the work is in right now, what Claude is
$ npx -y skills add adamlinscott/claude-skills --skill brief-me --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/brief-meContext preview
The summary Claude sees to decide when to auto-load this skill.
[Adam''s Skills] Print a plain-English re-entry briefing for a user who has lost the thread of a long-running session — after a distraction, overnight, or over a weekend. Re-explains what the session is, where it got to, what state the work is in right now, what Claude is
name: brief-me description: '[Adam''s Skills] Print a plain-English re-entry briefing for a user who has lost the thread of a long-running session — after a distraction, overnight, or over a weekend. Re-explains what the session is, where it got to, what state the work is in right now, what Claude is waiting on from the user, and the single next step. Grounds every claim in git and files on disk before narrating, so it re-explains the session rather than inventing a tidy story of it. Report only: it writes nothing and never resumes work. Invoke with /brief-me.' disable-model-invocation: true allowed-tools: Read, Grep, Glob, Bash
The user has come back to this session with weak or no memory of it. Reading the last message will not fix that: the last message was written for someone who was here five minutes ago. It leans on pronouns, on shorthand coined mid-session, and on file names introduced hours back. It continues the thread; it does not introduce it.
Produce **one short briefing that puts them back in the chair.** Then stop.
The failure mode of this skill is a fluent, confident, wrong story. Guard against it by reading the real state first, not your memory of it:
is anything half-applied?
Then hold two categories apart as you write. A claim backed by disk or git is stated flat. A claim recalled from the conversation and not checkable is marked as recalled, with the check named. Never assert a piece of work is finished without confirming the file exists.
Six headings, in this order. The whole thing fits on one screen.
**In one line** — the entire session in one sentence a stranger could follow.
**What we're doing** — the goal in plain terms, one or two sentences. This thread, not the codebase.
**Where we got to** — the arc so far. Up to five bullets. Completed work only.
**Right now** — the frozen frame. What is on disk this second. Say loudly if anything is half-applied or the working tree is incoherent; coming back to a partly-finished multi-file edit is the case that hurts most. Note when tests last ran and what happened.
**Waiting on you** — split three ways, dropping any that are empty:
If all three are empty, one line: `Nothing — say go.`
**If you just say go** — the single next concrete step. Not the rest of the plan.
If `/check-skill-updates` is installed, run it after the brief and append its single line if it has one. Coming back after time away is when an update is most likely to be waiting and least likely to interrupt anything. Skip it silently if it is not installed, and drop it entirely if the brief had to report a half-applied edit or an incoherent tree — that is the user's first problem, not this.
Render these only if there is something real to put in them. Omit them silently otherwise.
**While you were away** — the repo moved under them. New commits on the branch, changes they did not make, a base branch that advanced, uncommitted files from another session. Write it in plain terms: "someone changed three files in the project since Friday", not a raw `git log`.
**Thin spots** — where this brief is unreliable. If the session was compacted, say so and say where the detail runs out. If a claim is recalled rather than verified, name it and say how to check. Do not narrate over a gap as though it were solid.
Follow the *Sentence-level shaping* rules in the `ttp` skill (`../ttp/SKILL.md`, or `~/.claude/skills/ttp/SKILL.md` when installed). Do not restate them here. Three rules on top, specific to re-entry:
pronoun whose referent lives in the transcript. The reader has no transcript.
highest-risk vocabulary in the brief: familiar to you, invisible to them. Same for acronyms and internal nicknames.
"`install.mjs`, the installer script" — not "the config file". They have to go and find these things.
End with exactly this pull line:
> Say `more` for the full history, or `go` to continue.
On `more`, expand: the reasoning behind the current approach, what was tried and rejected and why, and the detail cut from *Where we got to*. Length is fine there; add headers so it can be skimmed. On `go`, resume normally.
step 1, and do not invent a session that did not happen. If gstack's `/context-restore` is installed, point at it — that skill rebuilds context from saved artifacts.
*Thin spots*.
headings out of two exchanges.
`/reground` also stops and takes
Each skill lives under skills//SKILL.md and is the single source of truth; an install script links them into the global skills directory (~/.claude/skills/) so Claude loads them in every session, on every machine.
Repo: adamlinscott/claude-skills
[Adam''s Skills] Deterministic close-out gate for a session or work tree. Sweeps a fixed set of sources — the todo list, this session''s own promises, git…
[Adam''s Skills] DEPRECATED — superseded by /build-it. Do not use for new work. Surfaced the load-bearing assumptions behind a task before a long run — goal,…
[Adam''s Skills] Build a piece of work, from wherever it is written down — a ticket number or URL, a plan or spec file, the plan agreed in the conversation…
[Adam''s Skills] Check whether the installed copy of this skills collection is behind its remote, and offer to update it. Runs a script that resolves the clone…
[Adam''s Skills] Audits a repository''s Claude context-injection setup — CLAUDE.md, CONTEXT.md, docs/, .claude/agents/, and the per-project memory directory.…
[Adam''s Skills] BETA / under development. Mine the current project''s Claude Code sessions for recurring corrections, then interrogate them — consolidate…