| name | bm-checkpoint |
| description | Save a deliberate Codex work checkpoint to Basic Memory with changed files, verification, decisions, blockers, and the next action. |
Checkpoint Codex Work
Create a durable handoff note for current Codex work. Use this when the user asks
to checkpoint, wrap up, hand off, remember the state of the work, or when the
Stop hook requests the deliberate handoff after compaction.
Gather
Read ~/.codex/basic-memory.json, then the nearest project
.codex/basic-memory.json; project keys override user keys except that
redactKeys and redactPaths accumulate so project config cannot weaken user
privacy:
primaryProject, default omitted
captureFolder, default codex/<git top-level directory name>
placementConventions, optional
sessionProfile, default general
repository, required when sessionProfile is coding
redactKeys, optional additional secret field names
redactPaths, optional additional private directory prefixes
Apply the bm-writing skill before drafting the note.
Gather repo evidence:
- the original problem or goal and why it mattered
- the approach taken and why it solves the problem
- the current system state and practical impact
- tradeoffs, sharp edges, useful simplifications, and intentionally parked work
git status --short
- current branch
- repository root and current working directory
- current Git SHA
- current pull request number, title, URL, state, base, and head when one exists
- changed files you touched
- tests or checks actually run
- failures or skipped checks
- decisions made in this thread
- unresolved blockers
- next action
- current username, hostname, and timestamp
Do not claim a test passed unless you ran it or the user supplied the result.
Privacy Gate
Apply this gate to deliberate checkpoints and Stop-requested checkpoints alike.
It is mandatory before any write_note call:
- Merge user and project
redactKeys and redactPaths by accumulation. Include
the built-in secret-key families (secret, token, password, credential,
auth, API/access/private keys) and private roots (~/.ssh, ~/.aws, and
~/.gnupg). Never copy the redaction rules themselves into the note.
- Expand
~ for comparison and normalize both slash styles. A denied path
matches its exact directory or a descendant, not a sibling that merely shares
its text prefix.
- Scrub every string passed to
write_note: title, directory, tags,
frontmatter, body, observations, relations, changed-file paths, command
output, repository evidence, and pull-request evidence. Replace a whole path
value under a denied root, or an embedded denied-path token, with
[REDACTED_PATH]. Do not omit schema-required path fields; use the marker.
- When gathered structured evidence has a key matching a built-in or configured
redactKeys entry, replace its entire value with [REDACTED]. Never reproduce
credentials, tokens, or private-key material from config, environment, tool
output, or compacted conversation context.
- Review the final note arguments once more before writing. If any value cannot
be confidently scrubbed, fail closed: skip the checkpoint and report that
privacy policy blocked the write. Do not fall back to an unredacted note.
Write
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 a note to Basic Memory. For the general profile:
title: Codex checkpoint - <short topic>
directory: configured captureFolder
tags: ["codex", "checkpoint"]
- frontmatter:
type: codex_session
status: open
project: <primaryProject if known>
cwd: <current cwd>
started: <current timestamp>
username: <current username>
hostname: <current hostname>
capture: deliberate
For the coding profile, write 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,
pull_request_state, pull_request_base, and pull_request_head. Resolve the
pull request with a read-only GitHub query; 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
## Changed Files, when paths are useful for resuming
## Verification, for checks actually run and their outcomes
## Observations
## Relations, when the thread has an obvious graph target
Use 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 detail
Do 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.
Confirm
Reply with the permalink and the one next action the checkpoint preserves.