原始内容
pi-m3fix
Pi extension for repairing session files affected by flattened reasoning blocks.
"M3" in this name/doc refers to whatever model is currently exhibiting this
behavior in your session — not a hardcoded requirement. The tool has zero
dependency on any specific provider or model name. With no explicit target,
/m3fix resolves to ctx.model (Pi's currently selected model), whatever
that is: a built-in provider, or a fully custom one you registered yourself
under any name, doesn't matter. Whatever is currently selected becomes the target
that the whole session gets synced to. --provider/--api/--model override
it explicitly if you need to target something other than the current model.
Install
From npm (recommended, versioned):
pi install npm:pi-m3fix
Pin to a specific version:
pi install npm:pi-m3fix@0.5.0
From GitHub, latest main:
pi install git:github.com/hypernewbie/pi-m3fix
From GitHub, pinned to a released tag:
pi install git:github.com/hypernewbie/pi-m3fix@v0.5.0
v0.1.0 was broken (see CHANGELOG.md) and has been removed. Do not install it.
Local development checkout:
pi install /path/to/pi-m3fix
Restart Pi or run /reload, then use /m3fix.
Usage
/m3fix [partial-session-id|session-file] [options]
Examples:
/m3fix --dry-run
/m3fix --force-live
/m3fix 019f311c --provider m3 --api anthropic-messages --model MiniMax-M3
/m3fix /absolute/path/to/session.jsonl --dry-run
Options:
--dry-run,-n— show changes without writing.--force-live— repair the loaded session and reload it from disk.--provider <id>— override the target provider.--api <api>— override the target API.--model <id>— override the target model.--no-relabel— skip provider/API/model relabeling.--no-unflatten— skip text-to-thinking repair.--no-synthetic-thinking— skip synthetic thinking insertion (see below).--rewrite— also catch toolCall-bearing turns with no thinking that are already labeled as the target provider (see below). Opt-in.--no-sign— skip filling signatures into empty-signature thinking blocks (see below). Use for providers that cryptographically validate thinking signatures.--allow-empty-signature— deprecated no-op (kept for backward compatibility). The repair now always runs foranthropic-messagesmodels regardless of registry metadata.
Behavior
For assistant messages, /m3fix can:
- Set
provider,api, andmodelto the selected target model. - Clear stale
thinkingSignaturevalues — but only on messages actually being relabeled away from a different provider. A signature on a message that already belongs to the target provider is left completely untouched. - Neutralize foreign
redactedthinking blocks — same rule: only when the message is being relabeled away from a different provider. - Convert leaked-reasoning text blocks back into thinking blocks.
- Insert a synthetic thinking block before a different-provider turn's genuine reply when that turn has no thinking block at all.
- Fill a deterministic non-empty signature into every non-redacted thinking block that has an empty one (anthropic-messages targets only).
The first five operations work for any API (anthropic-messages,
openai-completions, openai-responses, etc.) — there is no API allowlist.
M3 can be proxied through any of them, and none of these repairs are
Anthropic-specific: thinkingSignature is a generic Pi concept (for
OpenAI Responses it holds a JSON-encoded reasoning-item id, not a signature),
and the leak-pattern match is pure text matching.
Leaked-reasoning detection uses pattern matching: a text block is only
converted to thinking if it consists entirely of **bold phrase** segments with
no prose content. This matches M3's flattened reasoning output
("**Checking license metadata**", "**Planning X**\n\n**Doing Y**") while
preserving real responses that happen to start with bold
("**Vibe: hard.** This is not a shallow port..." → kept as text).
Use --no-unflatten to skip this step.
Unflatten applies to every assistant turn, including the most recently produced one. Pre-compaction turns are included because they are displayed in the TUI (even though they aren't sent to the LLM), and leaving leaked reasoning visible is the exact problem this tool solves.
A turn that genuinely came from a different provider (a real model switch,
not M3's own leak) can have a real reply with no thinking block at all -
some providers don't emit anthropic-style thinking. Once relabeled and
replayed to M3 on a later call, that turn is serialized as a bare
text/tool-call-only assistant turn, indistinguishable from M3's own broken
shape - and M3 can pick up that shape on its very next reply. /m3fix closes
this gap by inserting a synthetic thinking block before the existing reply
(never replacing or hiding it), picked deterministically from a small
rotating pool of generic placeholders so repeated runs stay idempotent. Use
--no-synthetic-thinking to skip this step.
Once a turn has been relabeled to the target provider - by this tool, an
older version of it, or any other script - its provider field permanently
reads as native. If that relabeling happened before synthetic thinking
insertion existed, there is no way for a normal run to know the turn used to
be foreign, and it stays stuck with no thinking forever, no matter how many
times /m3fix runs afterward. --rewrite catches this: it also inserts
synthetic thinking on any toolCall-bearing turn with no thinking block,
regardless of its current provider label - trusting the verified invariant
that M3 always thinks before any tool call. It deliberately does not
touch text-only turns with no tool call, even with --rewrite: those might
be genuine M3 final summaries (verified real: stop-reason, text-only,
no-toolCall replies in real sessions were substantive genuine answers, not
leaks), and once the provider label is gone there's no way to tell a
laundered-foreign clean reply apart from one of those by content alone.
Signing exists because a repair that writes empty signatures is invisible
where it matters: Pi's anthropic-messages request serialization only
replays a thinking block as thinking when its signature is non-empty
(unless the model registry sets compat.allowEmptySignature, which is
unset for most anthropic-compatible providers). An empty-signature block is
converted back to plain text at request time — so a session can look fully
repaired on disk while the model still receives a history of text-only
assistant turns. Natively produced thinking blocks always carry a
signature; /m3fix fills a deterministic sha256-based one (idempotent
across re-runs) so repaired blocks serialize the same way native ones do.
This runs only for anthropic-messages targets: under other APIs the
signature field holds provider-specific payloads that cannot be
fabricated. Anthropic-compatible endpoints generally do not validate
signature contents; for one that does, use --no-sign.
Safety
- Creates a one-time
.bak2backup before writing. - Writes through a temporary file and atomic rename.
- Re-opens the repaired file with Pi's
SessionManagerto validate it. - Refuses to modify the loaded session unless
--force-liveis supplied.
Development
npm install
npm test
npm run typecheck
npm pack --dry-run
Releasing (maintainers)
CI publishes to npm via OIDC trusted publishing — no npm token involved. To cut a release:
- Bump
versioninpackage.json. - Commit, then tag
vX.Y.Zmatching that version and push both:git tag -a vX.Y.Z -m "vX.Y.Z" git push origin main git push origin vX.Y.Z - CI runs tests, verifies the tag matches
package.json's version, then publishes via OIDC. Provenance is generated automatically.
The npm package's Trusted Publisher is configured to only accept publishes from this repo's .github/workflows/ci.yml workflow. Publishing access via classic/granular tokens is disabled on npmjs.com ("Require two-factor authentication and disallow tokens"), so a compromised or misconfigured token cannot publish a release.