Save a deliberate work checkpoint to Basic Memory with the story, changed files, verification, decisions, blockers, and the next action. Use when the user asks to checkpoint, wrap up, hand off, or remember the state of the work.
79
100%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Create a durable handoff note for the current work. Use this when the user asks to checkpoint, wrap up, hand off, remember the state of the work, or before a long context transition. This is the deliberate, high-signal counterpart to the automatic PreCompact checkpoint.
Resolve config: read the basicMemory block with the same precedence the hooks
use — user-level ~/.claude/settings.json as the base, then the project's
.claude/settings.json and .claude/settings.local.json override it per key:
primaryProject, default omitted (Basic Memory's default project)captureFolder, default sessionsplacementConventions, optionalsessionProfile, default generalrepository, required when sessionProfile is codingApply the bm-writing skill before drafting the note.
Gather evidence:
git status --shortDo not claim a test passed unless you ran it or the user supplied the result.
A checkpoint is a durable handoff, not a status dump or commit-by-commit changelog. Tell the story for a human or agent returning later.
Write the note with write_note, routed to primaryProject (pass it as
project, or as project_id if it's an external_id UUID). For the general
profile:
title: Claude checkpoint - <short topic>directory: configured captureFoldertags: ["claude", "checkpoint"]note_type: sessionmetadata (frontmatter):
status: openproject: <primaryProject if known>cwd: <current cwd>started: <current timestamp>username: <current username>hostname: <current hostname>capture: deliberateFor the coding profile, write note_type: coding_session (frontmatter
type: coding_session) and use the same common frontmatter plus these
schema-required fields:
repository: <confirmed stable repository identifier>repo_root: <git rev-parse --show-toplevel>cwd: <current cwd>branch: <git rev-parse --abbrev-ref HEAD>git_sha: <git rev-parse HEAD>When the current branch has a pull request, also add the typed optional fields
pull_request_number, pull_request_title, pull_request_url, lowercase
pull_request_state, pull_request_base, and pull_request_head. Resolve the
pull request with a read-only GitHub query (e.g. gh pr view --json ...); omit
those fields when no PR exists. Write the number as a quoted string, for example
pull_request_number: "123", so exact metadata queries behave consistently
across storage backends. Never infer or copy repository/PR identity only from
conversation text. Stop if the required coding fields cannot be proven.
Begin the body with # <exact note title>.
Use these sections, omitting optional ones that add no value:
## Summary: one concrete sentence that does not merely repeat the title## Story: problem -> approach -> current state and impact in substantive prose## Project Memory, when the work surfaced a durable lesson future readers
need — the constraint discovered, the boundary made explicit, the shortcut to
avoid## Changed Files, when paths are useful for resuming## Verification, for checks actually run and their outcomes## Observations## Relations, when the session has an obvious graph targetUse observations to distill durable facts for structured recall rather than duplicating every narrative sentence:
[result] for concrete outcomes[decision] for each decision made or preserved[blocker] for each unresolved blocker[next_step] for the next concrete action; include at least one[verification] or [changed_file] only when the item is itself important
project memory, not merely supporting detailDo not create separate Decisions, Blockers, or Next Action sections with plain bullets. Omit empty categories instead of writing placeholder text such as "None."
Relations are not observations. Put them under ## Relations using Basic
Memory relation syntax, for example - relates_to [[Exact existing note title]].
Never write [relates_to] or a bare memory:// URL as an observation. Only add
a relation when its target is an existing task, decision, spec, issue, or PR note.
Reply with the permalink and the one next action the checkpoint preserves.
cb95e59
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.