pi-prompt-workflows
v0.16.1
Published
Prompt workflow extension for Pi coding agent
Maintainers
Readme
Pi Prompt Workflows
This package is an enhanced fork of
pi-prompt-template-model. It builds on the original extension's solid prompt-template foundation, stays close to upstream, and publishes the additional features under the separate package namepi-prompt-workflows.
Adds model selection, thinking levels, reusable prompt partials, and one-or-many skill injection to pi prompt templates. Define slash commands that switch to the right model, include shared instructions, load the exact skills needed, and auto-restore your session when done.
/review src/server.ts
→ switches to Sonnet
→ includes shared repo-review instructions
→ loads tmux + TypeScript skills
→ restores your previous model when finishedWhy?
Each prompt template becomes a self-contained agent mode. /quick-debug spins up a cheap model with REPL skills. /deep-analysis brings in extended thinking with refactoring expertise. /review can include the same shared repo rules every time without copying them into every template. When the command finishes, you're back to your daily driver without touching anything.
No more manually switching models, copying standard instructions between prompts, or hoping the agent picks up the right skills. You define the configuration once, and the slash command handles the rest.
What this adds
- Model routing: choose one model, an explicit provider/model pair, or a fallback list.
- Thinking control: set per-command thinking levels.
- Prompt includes: reuse shared Markdown partials with
includes,include,<includes />, and inline<include file="..." />directives. - Multiple skills: inject one skill with
skill, many skills withskills, or constrained wildcard groups likegolang-*. - Dry-run preview: inspect the exact rendered prompt body, metadata, warnings, and optional skill content before execution.
- Pi-native TUI: browse templates and inspect dry-run output interactively in Pi TUI mode without typing template names.
- Execution control: loops, model rotation, fresh context, boomerang collapse, delegated subagents, chains, and best-of-N compare prompts.
Differences from upstream
This package is an enhanced fork of pi-prompt-template-model, with compatibility preserved where practical and new workflow features kept opt-in where possible.
Additions
- Prompt includes from shared Markdown partials and prompt-library roots.
- Multiple skill injection via
skills, plus constrained wildcard skill selectors. - Dry-run previews and a Pi-native TUI picker/inspector for prompt templates.
- Loop controls, model rotation, fresh context, and boomerang context collapse.
- Chain templates, deterministic prompt steps, delegated subagents, and parallel delegation helpers.
- Best-of-N compare prompts with reusable preset catalogs.
- Richer
/validate-promptsdiagnostics, include graphs, and source summaries.
Behavior changes and stricter validation
- Invalid prompt config is reported and skipped more consistently instead of running with silently degraded behavior.
- Prompt-library commands have extra trust checks because they can come from project-local reusable libraries.
- Duplicate prompt and prompt-library precedence is deterministic and reported with diagnostics.
- Runtime flags are scoped to prompt types that support them; for example,
--presetonly affects compare prompts. - Project best-of-N presets require session approval and invalid project presets fail closed instead of falling back to same-named user presets.
Breaking or migration notes
- Compare prompt templates must use nested
bestOfN:frontmatter. Top-levelworkers,reviewers, andfinalApplierfields are rejected with migration diagnostics. skills:must be a list. Useskill: namefor a single skill.- Some fields that upstream accepted loosely are now type-checked before registration, including prompt includes, chain declarations, loop values, cwd paths, compare lineups, and preset catalogs.
- Best-of-N presets intentionally cannot set execution-policy fields such as
task,taskSuffix,cwd,finalApplier,worktree, dirty/report/commit policy, or other prompt-owned behavior.
Small tweaks
- Better command descriptions and runtime warnings for ignored or unsupported flags.
- More deterministic model/thinking fallback behavior in dry-run and execution paths.
- Packaged examples, authoring skill docs, and validation output are kept aligned with shipped behavior.
Installation
pi install npm:pi-prompt-workflowsIf you previously installed the package under its old name, remove it before installing the renamed package to avoid duplicate commands and tool conflicts:
pi remove npm:pi-prompt-template-model-enhanced
pi install npm:pi-prompt-workflowsRestart pi to load the extension.
For delegated subagent execution (subagent and inheritContext frontmatter), install pi-subagents separately:
pi install npm:pi-subagentspi-subagents is optional — everything else works without it. Using subagent: true without it installed fails fast with a clear error.
Quick Start
Add model, optional includes, and optional skill / skills to any prompt template:
---
description: Review TypeScript with shared repo rules
model: claude-sonnet-4-20250514
includes:
- shared/repo-rules.md
- shared/review-checklist.md
skills:
- tmux
- typescript-*
---
Review this change: $@Run /review src/server.ts and the agent switches to Sonnet, prepends the shared partials, injects the requested skills, and starts working. When it finishes, your previous model is restored.
For a smaller prompt, the old single-skill form still works:
---
description: Debug Python in tmux REPL
model: claude-sonnet-4-20250514
skill: tmux
---
Start a Python REPL session and help me debug: $@Validation
Run /validate-prompts to check prompt templates before using them. It reloads the project and user prompt directories, validates frontmatter, include paths, include cycles, chain declarations, reserved command names, and skill references that can be resolved from registered or filesystem skills.
Validation also reports an include graph for prompts that declare frontmatter includes (include / includes), use inline include directives, or fail include processing. Each relevant prompt is listed with its include dependencies, including nested partial-to-partial includes. The report also includes a source summary that separates project prompts, user prompts, prompt-library commands, and include-only prompt-library fragments so command-capable library entries are easy to distinguish from reusable parts.
A clean library reports success:
[pi-prompt-workflows] Prompt validation passed: 4 prompt template(s) loaded.
Include graph:
- review [ok] /repo/.pi/prompts/review.md
- review -> /repo/.pi/prompts/shared/rules.md (frontmatter shared/rules.md) [ok]Invalid libraries fail with explicit diagnostics:
[pi-prompt-workflows] Prompt validation failed: 2 issue(s) found across 3 loaded prompt template(s).
- include-not-found (project) /repo/.pi/prompts/review.md: Prompt include "shared/rules.md" was not found ...
- skill-not-found (project) /repo/.pi/prompts/debug.md: Prompt template ... references skill "tmux", but it was not found ...
Include graph:
- review [skipped] /repo/.pi/prompts/review.md
- review -> unresolved:shared/rules.md (frontmatter shared/rules.md) [failed]
! include-not-found: Prompt include "shared/rules.md" was not found ...Include graph statuses are concise: [ok] means the prompt or edge resolved successfully, [skipped] means the loader skipped that prompt because include processing failed or was invalid, and [failed] marks a failed edge or root diagnostic. Prompts skipped for missing, cyclic, or invalid includes still appear in the include graph with [skipped], failed include edges, and diagnostic codes such as include-not-found or include-cycle.
Dry-run and TUI preview
Use /print-prompt or /dry-run-prompt to preview what a prompt template would send before it executes. The preview uses the same include rendering, model conditionals, argument substitution, skill resolution, loop metadata, delegation metadata, and runtime flags as normal execution, but it does not switch models, send user messages, run deterministic commands, or start subagents.
/print-prompt review src/server.ts
/dry-run-prompt review --model=gpt-5.2 src/server.tsWith --plain, or in contexts without Pi UI, these commands print a Markdown report to stdout. In non-TUI UI contexts, they show the same report as a notification. For compare prompts, the report is a read-only preflight that shows the selected preset, worker/reviewer lineup, call count and cap, compare cwd, policies, artifact expectations, and warnings before any worker runs. By default, full skill content is hidden; add --show-skills when you explicitly want the preview to include loaded skill bodies. For delegated prompts, skill content is still reported in the report's skills section rather than inlined into the prompt body preview; at runtime the resolved skill block is prepended to the child task text before delegation.
/print-prompt review --show-skills src/server.ts
/dry-run-prompt best-of-n --preset quick --plain refactor the parserIn Pi TUI mode, the commands open an interactive picker/inspector by default:
/dry-run-prompt # pick a template from a searchable list
/print-prompt # same picker, useful when you do not remember the template name
/dry-run-prompt review # open the inspector directly for reviewTUI behavior:
- no template name opens a searchable template picker;
- picker rows label prompt-library commands as
project libraryoruser library, so reusable library commands are distinct from core.pi/promptstemplates; hidden: truecommand-capable prompts are omitted from the picker, but an exact/print-prompt <name>or/dry-run-prompt <name>still opens them;- a template name opens the inspector directly;
--plainforces the stdout/plain report even in TUI mode;- unsupported templates, such as deterministic or chain templates, show the same diagnostic as the plain path;
- full skill content remains hidden unless the dry-run result was created with
--show-skills; - the inspector always includes a static
Includespane. Prompts with include metadata or inline include directives show the include graph captured during dry-run rendering; prompts without includes showNo includes..
The inspector is read-only. It has no execute button and does not mutate the session.
Prompt Discovery
The extension scans the default prompt directories:
- User defaults:
~/.pi/agent/prompts/ - User prompt library:
~/.pi/agent/prompt-library/ - Project defaults:
<cwd>/.pi/prompts/ - Project prompt library:
<cwd>/.pi/prompt-library/
Project prompts override user prompts when names collide. Prompt-library files are command-capable only when they use extension metadata such as model, skill, skills, include, includes, chain, or bestOfN; plain prompt-library files stay available as include fragments instead of becoming slash commands.
Frontmatter Reference
All fields are optional. Templates that don't use any extension features (no model, skill, skills, include, includes, thinking, etc.) are left to pi's default prompt loader.
Core Fields
| Field | Default | What it does |
|-------|---------|--------------|
| model | current session model | Which model to use. Accepts a single model, a provider/model-id pair, or a comma-separated fallback list (see Model Format). Ignored when chain is set. |
| skill | — | Injects a skill, or a constrained suffix-* wildcard selector such as golang-*, as context before the agent handles your task. Kept for backward compatibility and simple prompts. See Skills. |
| skills | — | List of skills to inject, with optional suffix-* wildcard selectors such as golang-*. See Skills. |
| thinking | — | Thinking level for the model: off, minimal, low, medium, high, or xhigh. |
| includes | — | List of shared .md partials to insert into the prompt. See Prompt includes. |
| include | — | Shortcut for a single partial, equivalent to includes: [file.md]. See Prompt includes. |
| description | — | Short text shown next to the command in autocomplete. |
| hidden | false | Hide a command-capable prompt from slash-command registration and the TUI picker while keeping it addressable by exact /print-prompt / /dry-run-prompt name and usable as an internal chain step. Visibility metadata alone does not make a plain file command-capable. |
| chain | — | Declares a reusable pipeline of templates (step -> step). When set, the body is ignored. See Chain Templates. |
| chainContext | — | Chain templates only. Set to summary so delegated steps receive a compact summary of what previous steps did. Steps with inheritContext: true are excluded. See Chain context for delegated steps. |
Execution Control
| Field | Default | What it does |
|-------|---------|--------------|
| restore | true | After the command finishes, switch back to whatever model and thinking level were active before. Set false to stay on the new model. |
| loop | — | Run this template multiple times by default (1–999, true, or unlimited). CLI --loop overrides this. See Loop Execution. |
| rotate | false | When true and looping, cycle through models in the model list instead of using fallback semantics. Thinking levels can also be comma-separated to pair with each model. |
| fresh | false | When looping, collapse the conversation between iterations to a brief summary instead of carrying the full context forward. Saves tokens on long loops. |
| converge | true | When looping, stop early if an iteration makes no file changes. Set false to always run every iteration. |
| boomerang | false | After a non-chain prompt finishes, collapse its execution context back to the branch point with a brief summary. Works with loops, including fresh loop summaries. Useful for review prompts like /double-check. |
| worktree | false | When true, parallel delegated work runs in separate git worktrees. Valid on chain templates with parallel() steps, on delegated prompts with parallel: N, and on compare templates via bestOfN.worktree. |
Delegation
| Field | Default | What it does |
|-------|---------|--------------|
| subagent | — | Delegate execution to a subagent instead of running in the current session. true uses the default delegate agent; a string value like reviewer targets that specific agent. Requires pi-subagents. |
| inheritContext | false | Only meaningful with subagent. When true, the subagent receives a fork of the current conversation context instead of starting fresh. |
| parallel | — | Delegated prompts only. Repeats the same subagent in parallel N times. Each copy gets a slot header like [Parallel subagent 2/3] prepended to the task. Must be an integer greater than or equal to 2. |
| bestOfN | — | Compare templates only. Nested compare authoring block with workers, reviewers, optional preset, optional finalApplier, optional worktree, and optional commit: ask. Top-level compare fields are not supported in templates. |
| bestOfN.preset | — | Name of a best-of-N preset from ~/.pi/agent/best-of-n-presets.json or <compare-cwd>/.pi/best-of-n-presets.json. Presets can supply worker/reviewer agents, models, counts, defaultModel, and maxModelCalls; prompt templates still own task text, cwd, final apply, dirty/report/commit policy, and other execution policy. |
| bestOfN.workers | — | Ordered worker lineup used for the worker phase. Each slot object supports optional agent/subagent, optional model, optional task, optional taskSuffix, optional cwd, and optional count. If both agent and subagent are omitted, the default agent is delegate. |
| bestOfN.reviewers | — | Ordered reviewer lineup used after worker aggregation. Slot shape matches workers. If both agent and subagent are omitted, the default agent is reviewer. |
| bestOfN.finalApplier | — | Optional single-slot final apply phase that edits the real branch after reviewers. Supports optional agent/subagent, optional model, optional task, and optional taskSuffix. If both agent and subagent are omitted, the default agent is delegate. count and cwd are not supported. Requires bestOfN.worktree: true at runtime. |
| bestOfN.commit | — | Optional final-applier follow-up policy. ask does not commit automatically; after the final applier runs, a display-only approval block shows changed files, a diff summary, the report path, a suggested commit message, and safe git -C <compare-cwd> ... commands. Stage only intended tracked-file hunks with git add --patch; for intended new files shown as ??, mark the path with git add -N -- <path> or explicitly stage it before committing. Requires bestOfN.finalApplier. |
| cwd | — | Working directory for delegated subagent subprocesses. Must be an absolute path (~/... is expanded). Valid with subagent, on chain templates as the default cwd for delegated steps, and on compare prompts as the default repo cwd. Worker/reviewer slots can also set their own cwd inside bestOfN.workers / bestOfN.reviewers. |
Model Format
model: claude-sonnet-4-20250514 # bare model ID — auto-selects provider
model: anthropic/claude-sonnet-4-20250514 # explicit provider/modelBare model IDs resolve through a provider priority list: openai-codex → anthropic → github-copilot → openrouter. The first provider with valid auth wins.
For explicit control:
model: anthropic/claude-opus-4-5 # Direct Anthropic API
model: openai-codex/gpt-5.2 # Via Codex subscription (OAuth)
model: github-copilot/claude-opus-4-5 # Via Copilot subscription
model: openrouter/claude-opus-4-5 # Via OpenRouter
model: openai/gpt-5.2 # Direct OpenAI APIModel Fallback
Comma-separated lists try each model in order:
model: claude-haiku-4-5, claude-sonnet-4-20250514Haiku is tried first. If it can't be found or has no API key, Sonnet is used instead. If the session is already on one of the listed models, that one is kept without switching. When every candidate fails, you get a single error listing what was tried.
You can mix bare IDs and explicit provider specs:
model: anthropic/claude-haiku-4-5, openrouter/claude-haiku-4-5, claude-sonnet-4-20250514Skills
Normally, pi lists available skills in the system prompt, the agent reads your task, decides which skill it needs, and loads it with the read tool. That's an extra round-trip, and the agent might not pick the right one.
The skill field bypasses all of that and remains fully backward compatible:
---
description: Browser testing mode
model: claude-sonnet-4-20250514
skill: surf
---
$@The skill content is injected as a context message before the agent processes your task. No decision-making, no tool call — immediate expertise. If a requested skill can't be found or read, the command fails fast instead of running without it.
To load multiple skills, use skills: as a YAML list:
---
description: Go review mode
model: claude-sonnet-4-20250514
skills:
- tmux
- golang-style
- golang-tests
---
Review this change: $@Scalar skills values are invalid. Use skill: tmux for one skill, not skills: tmux. A prompt with invalid skills frontmatter is skipped with a diagnostic rather than registered without its requested context.
You can combine skill and skills during migration or composition. The singular skill is loaded first, followed by the list entries:
skill: tmux
skills:
- golang-style
- golang-tests
# loads: tmux, golang-style, golang-testsAfter wildcard expansion, duplicate skill names are removed from the final load list; the first requested occurrence wins. For example, skills: [golang-style, golang-*] injects golang-style only once even if the wildcard also matches it.
Skills are resolved and validated before any deterministic script runs, before model switching, and before the user prompt is sent. That means invalid skill configuration aborts before potentially side-effectful deterministic steps execute.
Skill Resolution
Skill names accept a bare name or a skill: prefix:
skill: tmux
skill: skill:tmux # equivalentThe same normalization applies inside skills: entries, including wildcard selectors: skill:golang-* is equivalent to golang-*.
Resolution order:
- Registered skill commands from
pi.getCommands()(source:"skill") <cwd>/.pi/skills/<name>/SKILL.mdor<cwd>/.pi/skills/<name>.md.agents/skillsin the current directory and ancestors (up to the git root, or the filesystem root if no git root is found)~/.pi/agent/skills/<name>/SKILL.mdor~/.pi/agent/skills/<name>.md~/.agents/skills/<name>/SKILL.mdor~/.agents/skills/<name>.md
Here <cwd> is the Pi session/project cwd used to register and execute the prompt command. Delegated prompts may also set frontmatter cwd: or receive runtime --cwd, but those values choose where the child agent runs; they do not change which skill library is searched. This keeps direct prompts, runtime --subagent, --fork, dry-run, and validation on one predictable skill lookup path.
Skill wildcards
skill and skills: entries may use one constrained wildcard form: a non-empty prefix followed by a final *. This means skill: golang-* is valid too; it can inject more than one matching skill while preserving the same ordering and de-dupe rules.
skills:
- golang-*
- repo-reviewThis is prefix matching, not general globbing. golang-* is valid; *, go**, go*lang, go?*, path-like selectors, and selectors containing whitespace or XML/quote characters are rejected.
Wildcard expansion searches the same skill sources as exact skill resolution, in the same source order. Within each source, matches are sorted lexically by normalized skill name. If the same normalized name appears in more than one source, the first source wins. If a wildcard matches nothing, prompt execution aborts with an error such as No skills matched "golang-*".
Wildcard discovery is bounded to direct skill entries only: direct name.md files and direct name/SKILL.md directories. It does not recursively scan nested directories.
Skill-to-skill references are not recursive in v1. Loaded skills are treated as Markdown content only; if a skill mentions another skill in prose, frontmatter, related_skills, or other metadata, that other skill is not loaded automatically. Add every required skill to the prompt's skill/skills frontmatter explicitly.
Skills with chains and subagents
skill and skills apply to direct prompt execution.
Chain wrapper templates ignore skill and skills; put skill frontmatter on the step templates instead. When a chain runs a step, that step uses its own skill configuration.
Delegated prompts can combine subagent: with skill or skills. The resolved skill content is prepended to the delegated task before the prompt body, so the child agent receives the same resolved skill content instead of silently dropping it. Runtime --subagent uses the same behavior for direct prompts and chain steps; runtime --fork uses it for direct prompts, while chain steps use their own inheritContext frontmatter.
Compare prompts (bestOfN) cannot combine with skill or skills in v1 because compare execution delegates worker/reviewer/final-applier tasks. Add required skill instructions to the compare prompt body instead.
Prompt includes
Prompt includes let you write the common parts of your prompts once and reuse them. Put shared Markdown in partials, then pull those partials into any prompt that needs them.
Prompt library
.pi/prompt-library/ is an extension-managed prompt library. Pi core does not load files from this directory. If you want a file managed only by this extension rather than Pi core, place it in .pi/prompt-library/ instead of .pi/prompts/.
User prompt-library files live at ~/.pi/agent/prompt-library/ (that is the current OS user's home directory as reported by the runtime, not the repository root).
Prompt-library files can be executable extension prompt templates, chain steps, or include targets. A prompt-library file becomes an extension command only when it is command-capable under the same rules as .pi/prompts templates: for example, it has extension frontmatter such as model, chain, skill, skills, include, includes, or other supported extension fields. Plain Markdown fragments under partials/ are intended to be included and should not appear as slash commands, chain steps, or dry-run targets. The partials/ directory name is a convention, not an enforced policy: any plain, non-command-capable prompt-library Markdown file can be included, and command-capable files can live under any non-hidden directory.
Set hidden: true on command-capable prompt-library files that should stay internal. Hidden commands are not registered as top-level slash commands and do not appear in the dry-run picker, but they can still be opened by exact /print-prompt <name> / /dry-run-prompt <name> and referenced by chains. Project prompt-library trust approval still applies when a hidden project-library step executes through a chain.
Dot-prefixed files and directories under prompt-library roots are ignored. Symlinks are followed only when their resolved target remains inside the canonical prompt root; symlinks that escape the root are skipped.
Project prompt-library commands require extension-side per-session UI approval before execution. This approval is separate from Pi's project trust state: even trusted projects still need the extension approval for commands loaded from .pi/prompt-library/. Non-UI/headless contexts cannot show that prompt, so move commands that must run headlessly in trusted projects to a core prompt root such as .pi/prompts/; keep .pi/prompt-library/ for UI-approved project commands and include-only fragments.
For example, a project prompt can include a standards fragment from the project prompt library:
.pi/prompts/review.md
.pi/prompt-library/partials/repo-standards.md---
description: Review with shared repo standards
model: claude-sonnet-4-20250514
include: partials/repo-standards.md
---
Review this change: $@With that layout, .pi/prompts/review.md resolves partials/repo-standards.md to .pi/prompt-library/partials/repo-standards.md when no closer match exists. Included prompt-library files insert only their Markdown body; frontmatter such as description, model, skill, or skills is not inherited by the including prompt.
Syntax
Use includes: for the shared block you want at the top of a prompt:
---
description: Review with shared repo rules
model: claude-sonnet-4-20250514
includes:
- shared/repo-rules.md
- shared/review-checklist.md
---
Review this change: $@If the body has no <includes /> marker, Pi prepends the rendered partials:
<rendered shared/repo-rules.md>
<rendered shared/review-checklist.md>
Review this change: $@Add <includes /> when the shared block belongs somewhere else:
---
model: claude-sonnet-4-20250514
includes:
- shared/context.md
- shared/checklist.md
---
Start with the project-specific context.
<includes />
Now answer the user's request: $@For one partial, include: is shorter:
---
model: claude-sonnet-4-20250514
include: shared/repo-rules.md
---
Apply the shared rules above, then inspect: $@Use an inline include when the partial belongs at an exact spot in the prompt:
---
model: claude-sonnet-4-20250514
includes:
- shared/repo-rules.md
---
<includes />
Focus area:
<include file="languages/typescript.md" />
Task: $@Partials can include other partials with the same inline syntax.
Partial roots and resolution order
Include paths are local .md files. Resolution starts next to the file that asked for the include. For frontmatter include / includes and inline includes in the prompt body, that means the prompt file. For nested inline includes, it means the current partial.
If Pi does not find the file there, it checks these roots in order:
- Current file directory
- Current owner root
- Original prompt root
- Project prompt-library (project prompts only; user/global prompts do not fall back into the current project's prompt library)
- User prompt-library
- Global prompt-partials
- Project prompt-partials
Example project layout:
<cwd>/.pi/prompts/review.md
<cwd>/.pi/prompts/shared/repo-rules.md
<cwd>/.pi/prompt-library/partials/repo-standards.md
~/.pi/agent/prompt-partials/shared/review-checklist.md
<cwd>/.pi/prompt-partials/languages/typescript.mdWith that layout, the project prompt .pi/prompts/review.md can include shared/repo-rules.md, partials/repo-standards.md, shared/review-checklist.md, and languages/typescript.md without absolute paths. The project-library fallback (partials/repo-standards.md) applies because review.md is a project prompt; a user prompt from ~/.pi/agent/prompts/ would not search <cwd>/.pi/prompt-library/ for that include.
Rules and guardrails
- Partials must be Markdown files (
.md). - Includes are local files. URLs and globs are rejected, even if a local file happens to have that name.
- Nested includes work. Cycles do not: Pi skips the command and reports a diagnostic.
- Include expansion stops after 64 nested levels. If a chain goes deeper, Pi skips the command and points the diagnostic at the partial with the include that crossed the limit.
- Partial frontmatter is stripped and ignored. Put active
include/includesmetadata on prompt templates, not inside partials. For nesting, use<include file="..." />in the partial body. - Missing or invalid includes skip command registration. Broken slash commands should fail loudly, not register half-rendered prompts.
chain:wrapper templates cannot use frontmatterincludeorincludesin v1. Put includes on the step templates instead.~/...paths are allowed only when they resolve under a Pi prompt root or prompt-partials root. Other absolute paths are rejected.- Include boundary comments appear only in debug/diagnostic mode. Normal prompt content does not contain
<!-- BEGIN include ... -->/<!-- END include ... -->comments. - Prompt and prompt-library command names are still plain basenames. There is no source or directory namespace for slash commands; if two effective templates use the same basename, normal source precedence/duplicate handling decides which one registers.
validate-promptsvalidates extension-visible prompts, command-capable prompt-library files, and include graphs. It is not a general filesystem audit; plain unreferenced fragments are ignored except when they are pulled into an include graph.
Inline Model Conditionals
Prompt bodies can include sections that only render for specific models:
---
description: Cross-model code review
model: claude-haiku-4-5, claude-sonnet-4-20250514
---
Summarize the change first.
<if-model is="claude-haiku-4-5">
Keep the answer brief and cost-conscious.
<else>
Do a deeper pass and call out subtle risks.
</if-model>Conditionals evaluate against whichever model actually runs — after fallback resolution for multi-model templates, or against the session model when model is omitted.
The is attribute supports exact model IDs, provider/model-id pairs, provider wildcards like anthropic/*, and comma-separated combinations:
<if-model is="anthropic/*">Anthropic-specific instructions</if-model>
<if-model is="openai/gpt-5.2, anthropic/*">Either OpenAI or Anthropic</if-model><else> is the fallback branch. Nested <if-model> blocks work.
Argument Substitution
Prompt bodies support placeholders that expand to the arguments passed after the command name:
| Placeholder | Expands to |
|-------------|------------|
| $1, $2, ... | The Nth argument (1-indexed) |
| $@ or @$ or $ARGUMENTS | All arguments joined with spaces |
| ${@:N} | All arguments from position N onward |
| ${@:N:L} | L arguments starting from position N |
---
model: claude-sonnet-4-20250514
---
Analyze $1 focusing on $2. Additional context: ${@:3}/analyze src/main.ts performance edge cases error handling expands $1 to src/main.ts, $2 to performance, and ${@:3} to edge cases error handling.
Delegated Subagent Execution
Instead of running a prompt in the current session, you can hand it off to a subagent:
---
model: anthropic/claude-sonnet-4-20250514
subagent: true
---
Review and simplify this code: $@subagent: true delegates to the default delegate agent. To target a specific agent:
---
model: anthropic/claude-sonnet-4-20250514
subagent: reviewer
inheritContext: true
---
Audit this diff for correctness and edge cases: $@inheritContext: true forks the current conversation so the subagent has full context. Without it, the subagent starts fresh.
To force a subagent into a specific working directory, add cwd:
---
model: claude-sonnet-4-20250514
subagent: browser-screenshoter
cwd: /tmp/screenshots
---
Use url in the prompt to take screenshot: $@The subagent process runs with /tmp/screenshots as its working directory. Paths must be absolute (~/... is expanded). The directory is validated at execution time.
To fan the same delegated prompt out to multiple copies in parallel, add parallel: N:
---
model: anthropic/claude-sonnet-4-20250514
subagent: simplifier
inheritContext: true
parallel: 3
worktree: true
---
Review changed code and fix any issues found.This expands to three parallel pi-subagents tasks targeting the same agent. Each one receives the same rendered prompt plus an automatic slot header like [Parallel subagent 1/3], [Parallel subagent 2/3], and [Parallel subagent 3/3] so the body can assign different roles to each copy. worktree: true is optional here and gives each parallel run its own git worktree.
During execution, a live progress widget appears above the editor showing elapsed time, tool count, token usage, and the current tool. When the run finishes, it's replaced by a completion card with the task preview, tool call history, output, and usage stats.
You can override delegation at runtime per invocation with --subagent, --subagent=<name>, --subagent:<name>, or --cwd=<path>. --cwd=<path> must be absolute after optional ~/... expansion. Runtime flags take precedence for that invocation only.
Two additional runtime flags work for any prompt (not just delegated ones):
--model=provider/model-id— override the template'smodelfor this invocation. Works with single execution, loops, and delegation.--fork— run withinheritContext(forked context). Implies--subagentif not already set.
/double-check --model=anthropic/claude-opus-4-6
/double-check --fork --subagent:worker
/deslop --model=openai/gpt-5.4 --loop 3Compare templates also accept runtime lineup overrides:
Prompt-template frontmatter authoring uses bestOfN:. Runtime overrides stay on the low-level flags below.
--workers=<json-array>/--reviewers=<json-array>replace the corresponding frontmatter lineup.--workers-append=<json-array>/--reviewers-append=<json-array>append to the corresponding lineup.--final-applier=<json-object-or-one-element-array>replaces the optional final apply slot.--preset=<name>/--preset <name>selects a best-of-N preset for compare prompts only; it is ignored on non-compare prompts.--keep-artifactsretains raw worker, reviewer, and final-applier outputs next to the generated run report.
Each worker/reviewer JSON array entry must be an object with either subagent or agent, plus optional model, task, taskSuffix, cwd, and count. In worker slots, "subagent": true maps to delegate. In reviewer slots, "subagent": true maps to reviewer. --final-applier= accepts one slot object (or a one-element array) with subagent/agent, optional model, optional task, and optional taskSuffix; for this final slot, "subagent": true maps to delegate, and both count and cwd are not supported.
Best-of-N Compare Prompt
This repo ships one example compare prompt under examples/:
examples/best-of-n.mdinstalls as/best-of-n, runs in the current repo, and shows mixed workers, mixed reviewers, and an optional final apply phase.- Smoke test:
/best-of-n smoke test.
Install it manually from this repo checkout (or from the installed package directory):
PTM_DIR=/path/to/pi-prompt-workflows
mkdir -p ~/.pi/agent/prompts
cp "$PTM_DIR/examples/best-of-n.md" ~/.pi/agent/prompts/best-of-n.mdAfter copying the file, restart pi if it is already running. The prompt then runs an explicit compare flow:
Compare prompt templates are authored under bestOfN:. Top-level workers, reviewers, and finalApplier frontmatter fields are rejected with migration diagnostics.
- Worker phase: run the worker lineup in parallel (
context: fork) so workers generate candidate implementations in temporary worktrees. - Continue as long as at least one worker succeeds. Reviewer slots receive successful worker outputs plus worker/worktree summaries and produce findings only.
- Optional final apply phase: if
finalApplieris configured, run one delegated apply step on the real compare repo (compareCwd) to pick a winner or synthesize/cherry-pick and apply the final patch. - If all reviewers fail but
finalApplierexists, the final apply step still runs with fallback context from workers plus reviewer failure summaries. - Every successful compare run writes
.pi/runs/best-of-n/<timestamp>-<prompt>-<id>/report.mdpluslineup.json; pass--keep-artifactsto also retain raw worker/reviewer/final-applier outputs as separate Markdown files. - If
bestOfN.commit: askis set, the apply completion adds a display-only manual commit approval block with changed files, diff summary, report path, suggested commit message, and copyablegit -C <compare-cwd> add --patch/git -C <compare-cwd> commit -m ...commands. For intended new files shown as??, mark them withgit -C <compare-cwd> add -N -- <path>or explicitly stage them before committing. The extension never commits for you.
Worker/reviewer lineups are fully configurable from bestOfN frontmatter, presets, or runtime overrides, so there is no fixed three-model worker assumption. If a compare prompt omits bestOfN.workers, it falls back to one delegate worker using the current/main model. If it omits bestOfN.reviewers, it falls back to one reviewer slot. bestOfN.finalApplier is optional, and compare runs reject an effective final applier unless bestOfN.worktree: true is set.
Best-of-N presets
Presets keep expensive lineup choices reusable without letting project config own prompt policy. Define them in either place:
- User presets:
~/.pi/agent/best-of-n-presets.json,.yaml, or.yml - Project presets:
<compare-cwd>/.pi/best-of-n-presets.json,.yaml, or.yml
Only the first existing file in each location is loaded, in json, yaml, then yml order. Project presets override user presets of the same name. If a project preset with a name is invalid, that name fails closed instead of falling back to the user preset. Compare prompts that set cwd, runtime --cwd, or use parallel-patch-compare-at-path resolve project presets from the effective compare cwd. /validate-prompts mirrors prompt cwd where it can be known statically.
{
"presets": {
"quick": {
"description": "Two cheap workers, one reviewer",
"defaultModel": "openai-codex/gpt-5.4-mini:low",
"maxModelCalls": 3,
"workers": [{ "agent": "delegate", "count": 2 }],
"reviewers": [{ "agent": "reviewer" }]
}
}
}Use from a prompt:
bestOfN:
preset: quickOr at runtime:
/best-of-n --preset quick refactor the parserList available presets without approving or running them:
/compare-presets
/compare-presets --plain/compare-presets reports each preset's source file, trust label, default model, maxModelCalls, expanded worker/reviewer counts, and diagnostics. The default UI path uses a notification/custom UI surface; --plain writes deterministic stdout for scripts.
Preview the effective lineup before execution:
/dry-run-prompt best-of-n --preset quick refactor the parser
/print-prompt best-of-n --preset quick --plain refactor the parserDry-run and preset listing are read-only: they do not approve project presets, start subagents, write reports, or switch models. Running a compare prompt with a project preset asks for per-session approval first. User presets are trusted user config; project presets are treated as untrusted project input until approved for the session.
Compare workflow examples
Use these as copyable starting points for the full compare workflow.
Adversarial oracle review: run a read-only tournament and retain enough evidence to inspect afterwards.
/compare-presets --plain
/dry-run-prompt best-of-n --preset quick --plain review the auth refactor for security and regression risk
/best-of-n --preset quick --keep-artifacts review the auth refactor for security and regression risk
/compare-runs --plain --limit 5
/compare-runs --plain --id <run-id>Compare, then inspect history: preflight the effective lineup, execute the compare, then browse run history in Pi TUI mode or print one run deterministically.
/compare-presets
/print-prompt best-of-n --preset quick --plain refactor the parser
/best-of-n --preset quick refactor the parser
/compare-runs
/compare-runs --plain --run <run-id>In Pi TUI mode, /compare-runs opens a read-only picker/detail inspector. --plain forces stdout output for scripts and logs.
Safe final-applier with manual commit approval: keep worktree: true, configure one finalApplier, and set commit: ask in the prompt so the extension shows a display-only commit handoff instead of committing automatically.
bestOfN:
preset: quick
worktree: true
finalApplier:
agent: delegate
model: anthropic/claude-sonnet-4-20250514:high
taskSuffix: Apply the final patch on the current branch and report verification.
commit: ask/dry-run-prompt best-of-n --preset quick --plain implement the parser cleanup
/best-of-n --preset quick implement the parser cleanupAfter the final applier finishes, review the reported diff and run only the suggested git -C <compare-cwd> add --patch / git -C <compare-cwd> commit -m ... commands you actually approve. For intended new files shown as ??, use git -C <compare-cwd> add -N -- <path> before patch-staging.
Preset slot fields are intentionally limited to agent/subagent, model, and count. Presets cannot set task, taskSuffix, cwd, finalApplier, worktree, dirty/report/commit behavior, or other execution policy. Invalid selected presets fail closed instead of falling back to same-named user presets, and maxModelCalls caps the expanded worker + reviewer calls before any subagents start.
For same-model best-of-N, use count: N on one worker slot:
bestOfN:
workers:
- model: openai-codex/gpt-5.4:low
count: 4You can also mix models and give each slot its own count:
bestOfN:
workers:
- model: openai-codex/gpt-5.4:low
count: 3
- model: google/gemini-2.5-pro:medium
count: 2
- model: anthropic/claude-sonnet-4-20250514:highReviewer slots support the same lineup shape, and bestOfN.finalApplier is one optional single-slot final apply step:
bestOfN:
reviewers:
- model: openai-codex/gpt-5.4:low
count: 2
- model: google/gemini-2.5-pro:medium
taskSuffix: Focus on regression risk.
finalApplier:
model: anthropic/claude-sonnet-4-20250514:high
taskSuffix: Apply the final patch on the current branch and report verification.
worktree: true
commit: askWithin compare lineups, omitting both agent and subagent uses phase defaults: delegate in workers, reviewer in reviewers, and delegate in finalApplier. You can still set explicit agent or subagent when needed.
Explicitly repeating the same slot still works, but count: N is the cleaner shorthand when the slot is identical.
Within a compare lineup, use task for a full per-slot override and taskSuffix for a small per-slot append. taskSuffix is added after the shared worker task (or after the slot's task if you set one), which makes it the better fit for things like per-model output file names.
When a compare prompt uses bestOfN.worktree: true, all worker slots must resolve to the same cwd. Mixed worker cwd values are only allowed when worktree isolation is off. Worktree isolation is for the worker phase only; bestOfN.finalApplier always applies on the real branch (compareCwd). bestOfN.commit: ask is only valid with a final applier; it reports what changed after that apply step but leaves the branch uncommitted until you approve and run the suggested git command yourself.
Deterministic Steps
Prompt templates can run one deterministic command or script before any optional LLM turn. Use this when the first step should be direct code, not model latency.
The flow is simple:
- Run one command or script.
- Always render a visible deterministic result card with the command, exit code, duration, and stdout/stderr previews.
- Optionally hand the structured result to the model as a
[Deterministic step]preamble before the prompt body. - If
handoff: never, stop after the result card and a visible completion marker — no LLM turn happens.
That handoff preamble is intentionally structured and uses stable field names like status, executionKind, command, cwd, exitCode, signal, durationMs, timedOut, lineCount, charCount, truncated, omittedChars, and preview.
V1 scope is intentionally narrow: deterministic execution only works on single prompt templates. It does not combine with chain templates, delegated/subagent prompts, parallel, or loops. At runtime, deterministic prompts explicitly reject --loop, --subagent, and --fork in v1.
Authoring forms
You can write deterministic steps as top-level shorthand or nested under deterministic:. Both are equivalent. Use shorthand for brevity, nested when you want everything grouped under one key.
Top-level shorthand — put run, script, handoff, timeout, cwd, env, and nonInteractive directly in frontmatter:
---
run: git push origin HEAD:main
handoff: on-failure
timeout: 30000
---
If the push failed, explain why and suggest the next step.You can also use script: as shorthand:
---
script: ./scripts/ship.sh
handoff: always
timeout: 15000
---
Summarize the script result.Nested form — group everything under deterministic::
---
model: claude-sonnet-4-20250514
deterministic:
script:
path: ./scripts/ship.sh
args:
- --fast
handoff: always
timeout: 15000
cwd: ~/src/my-repo
---
Summarize the script result and call out anything risky.Structured command form — when you need explicit args instead of a single shell string, use deterministic.run.command with args:
---
model: claude-sonnet-4-20250514
deterministic:
run:
command: git
args: [status, --short]
handoff: always
---
Interpret the repo state.Do not mix top-level shorthand with nested deterministic: in the same prompt. Pick one style.
Model requirement
Deterministic prompts that hand off to the model (handoff: always, on-success, or on-failure) need a model to continue into. You can either:
- Add a
model:field explicitly - Omit
model:and let the prompt inherit whatever model is currently active
handoff: never prompts do not need a model field because they never reach the LLM.
Handoff values
always— always continue into the LLM after the deterministic card is emitted.never— stop after the deterministic card and completion marker.on-success— continue only when the command exits0.on-failure— continue only when the command exits non-zero.
Command descriptions in the slash-command picker show this feature as deterministic-step:<handoff>.
Timeout
timeout is in milliseconds. When a timeout fires, the runner sends SIGTERM first. If the process still has not exited after a short grace window, it escalates to SIGKILL.
Script path resolution
Relative script paths resolve from the prompt file's directory first, then fall back to the command invocation cwd. Absolute script paths also work.
Environment and non-interactive mode
You can provide explicit environment variables and control the runner's non-interactive guardrails:
---
deterministic:
run: ./deploy.sh
handoff: never
nonInteractive: false
env:
SPECIAL_TOKEN: abc123
RETRIES: 2
---nonInteractive defaults to true. In that mode the runner keeps stdin ignored and adds a few guardrail environment defaults such as CI=1, GIT_TERMINAL_PROMPT=0, PAGER=cat, and GIT_PAGER=cat. Set nonInteractive: false when the command needs a more normal process environment and you explicitly want to opt out of those defaults. Explicit env values override the built-in defaults.
Output capping
Large stdout/stderr streams are capped before they are stored in the conversation card payload. The card and the LLM handoff block both show the total character and line counts plus explicit truncation metadata when output was capped.
Loop Execution
Run a template multiple times with --loop:
/deslop --loop 5
/deslop --loop=5
/deslop --loop # unlimited — runs until convergence or cap (999)You can also set a default in frontmatter. CLI --loop always overrides:
---
loop: 5
---Use loop: unlimited (or loop: true) for open-ended loops that run until convergence, user interrupt, or the safety cap of 999 iterations:
---
loop: unlimited
converge: false
fresh: true
subagent: true
---How looping works
Each iteration runs the same prompt. By default, context accumulates — iteration 3 sees the full conversation from iterations 1 and 2 and builds on that work.
Convergence: If an iteration makes no file changes (no write or edit tool calls), the loop stops early. This is on by default. Use --no-converge or converge: false to always run every iteration.
Fresh context: Add --fresh (or fresh: true in frontmatter) to collapse the conversation between iterations. Each iteration gets a clean slate with only brief summaries of what previous iterations did. Good for long loops where accumulated context would blow up the token count.
Status: The TUI status bar shows loop 2/5 during execution.
Model, thinking level, and skill are maintained throughout. If restore: true (the default), everything is restored after the final iteration.
Model Rotation
rotate: true turns a comma-separated model list from a fallback chain into a cycling list. Each loop iteration uses the next model in the list, wrapping around:
---
model: claude-opus-4-6, gpt-5.4, gpt-5.3-codex
thinking: high, xhigh, off
loop: 9
rotate: true
fresh: true
---
Review and fix issues in this codebase.Iteration 1 runs Opus + high, iteration 2 runs GPT-5.4 + xhigh, iteration 3 runs Codex + off, then wraps back to Opus. The status bar shows which model is active: loop 2/9 · gpt-5.4 xhigh.
This is especially useful for ralph-style loops where different models catch different things. The subagent examples below require pi-subagents. A single-model ralph loop that delegates with fresh context each iteration:
---
model: claude-sonnet-4-20250514
subagent: true
inheritContext: true
loop: 5
fresh: true
---
Simplify this code: $@Add rotate and multiple models to cycle different perspectives on each pass:
---
model: claude-opus-4-6, gpt-5.4, gpt-5.3-codex
thinking: xhigh, high, high
loop: 9
rotate: true
fresh: true
subagent: true
---
Review and fix issues in this codebase.Each iteration gets fresh context, a different model, and its own thinking level. Convergence stops the loop when an iteration makes no file changes — use converge: false to guarantee every model gets at least one shot.
thinking pairing with rotate: true:
- Single value (
thinking: high) — applied to every model. - Comma-separated (
thinking: high, xhigh, off) — positional, must match the number of models. - Omitted — each iteration inherits the session default.
Without loop, rotate has no effect and comma-separated model keeps normal fallback behavior.
Chaining Templates
/chain-prompts runs multiple templates in sequence. Each step uses its own model, skill, and thinking level, while conversation context flows between them:
/chain-prompts analyze-code -> fix-plan -> summarize -- src/main.tsThis runs analyze-code, then fix-plan (which sees the analysis), then summarize. The -- separator marks shared args — everything after it is passed to each step as $@, unless a step has its own inline args:
/chain-prompts analyze-code "error handling" -> fix-plan -> summarize -- src/main.tsStep 1 gets "error handling" as its args. Steps 2 and 3 fall back to the shared "src/main.ts".
The chain captures your model and thinking level before starting and restores them when finished (or if any step fails).
Chain Templates
For reusable pipelines, put the chain in frontmatter:
---
description: Review then clean up
chain: double-check --loop 2 -> deslop --loop 2
---This registers the file's name as a command that runs double-check twice, then deslop twice. Per-step --loop N repeats that step before moving to the next, with per-step convergence (stops early if no changes, unless the step's template has converge: false).
Chain declarations also support parallel groups with parallel(...):
---
chain: parallel(scan-frontend, scan-backend) -> consolidate
---Each entry inside parallel(...) runs as a delegated subagent task concurrently. Parallel entries can include per-step args (for example parallel(scan-frontend, scan-backend "auth")), but per-step --loop is not supported inside parallel groups. Nested parallel(...) is rejected. Parallel entries must be delegated templates (subagent: ... or runtime --subagent override). All entries in the same parallel group must resolve to the same inheritContext mode. Mixed cwd values are allowed normally, but when worktree: true is enabled they must all resolve to the same cwd.
Add worktree: true (or --worktree at runtime) so each parallel subagent runs in its own git worktree, avoiding file conflicts when agents edit concurrently:
---
chain: parallel(scan-frontend, scan-backend) -> consolidate
worktree: true
---worktree requires a chain with at least one parallel() step. The flag is passed to pi-subagents, which handles worktree creation and cleanup.
Steps with a model field use their own model. Steps without one inherit a snapshot of whatever model was active when the chain started — not the previous step's model. This keeps behavior deterministic regardless of what earlier steps do.
Chain templates support loop, fresh, converge, restore, worktree, and cwd in their frontmatter for controlling the overall execution:
---
chain: analyze -> fix
loop: 3
fresh: true
converge: false
---This runs the full analyze → fix chain 3 times, with fresh context between iterations and no early stopping. Chain nesting is not supported — steps can't reference other chain templates.
When a chain template sets cwd, it becomes the default delegated subprocess working directory for all delegated steps in that chain. Runtime --cwd=<path> overrides the chain template value.
Chain context for delegated steps
Delegated chain steps start fresh — they don't see what earlier steps did. Chain context prepends a compact summary of previous steps to each delegated task so later steps can build on earlier work.
Enable it chain-wide with chainContext: summary in frontmatter or --chain-context on the CLI:
---
chain: analyze -> fix
chainContext: summary
---/chain-prompts analyze -> fix --chain-contextTo enable it for a single step, attach --with-context to that step name:
/chain-prompts analyze -> reviewer --with-context -> summarizeHere only reviewer receives the summary of analyze. The summarize step does not.
Steps using inheritContext: true already fork the full parent conversation and skip the summary preamble. --with-context is not supported inside parallel(...) groups. When a chain uses loop, summaries reset each iteration.
Parallel and looping from the CLI
Parallel groups work in /chain-prompts too:
/chain-prompts parallel(scan-fe, scan-be) -> review
/chain-prompts parallel(scan-fe, scan-be) -> review --worktreeLooping applies to the entire chain:
/chain-prompts analyze -> fix --loop 3
/chain-prompts analyze -> fix --loop 3 --fresh
/chain-prompts analyze -> fix --loop 3 --no-converge
/chain-prompts analyze -> fix --loopConvergence applies across all steps in each iteration — if no step made file changes, the loop stops. Templates are re-read from disk between iterations, so edits take effect live.
Agent Tool
The agent can invoke prompt templates itself via a run-prompt tool. It's off by default:
/prompt-tool onOnce enabled, the agent sees run-prompt in its tool list:
run-prompt({ command: "deslop --loop 5 --fresh" })
run-prompt({ command: "chain-prompts analyze -> fix --chain-context" })
run-prompt({ command: "chain-prompts analyze -> fix --loop 3" })
run-prompt({ command: "deslop --subagent" })The tool queues the command for execution after the agent's current turn ends. All loop, chain, and convergence features work the same as slash commands.
You can add guidance to steer when the agent reaches for it:
/prompt-tool on Use run-prompt for iterative code improvement tasks
/prompt-tool guidance Use sparingly, only for multi-pass refinement
/prompt-tool guidance clear
/prompt-tool off
/prompt-tool # show current statusConfig persists across sessions in ~/.pi/agent/prompt-template-model.json.
Autocomplete
Commands show their configuration in the autocomplete description:
/debug-python Debug Python session [sonnet +tmux] (user)
/deep-analysis Deep code analysis [sonnet high] (user)
/save-progress Save progress doc [haiku|sonnet] (user)
/component Create React component [sonnet] (user:frontend)Subdirectories
Organize prompts in subdirectories for namespacing:
~/.pi/agent/prompts/
├── quick.md → /quick (user)
├── debug-python.md → /debug-python (user)
└── frontend/
├── component.md → /component (user:frontend)
└── hook.md → /hook (user:frontend)The subdirectory shows as the source label in autocomplete. Command names are based on filename only. Duplicates within the same source layer are skipped with a warning, as are reserved names like model, reload, and chain-prompts.
Print Mode
These commands work in pi -p too:
pi -p "/debug-python my code crashes on line 42"The model switches, skill is injected, the agent responds, and output goes to stdout. Useful for scripting or piping.
Examples
Thinking levels — max thinking for thorny analysis:
---
description: Deep code analysis with extended thinking
model: claude-sonnet-4-20250514
thinking: high
---
Analyze this code thoroughly, considering edge cases and potential issues: $@Sticky mode switch — switch models for the rest of the session:
---
description: Switch to Haiku for this session
model: claude-haiku-4-5
restore: false
---
Switched to Haiku. How can I help?Cross-provider fallback — try the same model on different providers:
---
description: Quick analysis
model: anthropic/claude-haiku-4-5, openrouter/claude-haiku-4-5
---
$@Release process
Releases are managed with Release Please from conventional commits on main.
- Land normal commits such as
feat:,fix:,docs:, orchore:. - Release Please opens a release PR that updates
package.json,package-lock.json,CHANGELOG.md, and the release manifest. - Merge the release PR to create the GitHub Release/tag.
- The publish workflow verifies the tag matches
package.json, runs the Node 24 test suite, checks production audit, verifies package contents, and publishes to npm with provenance through trusted publishing.
Limitations
- Prompt files are reloaded on session start and whenever an extension-owned command runs. If you add a new prompt file mid-session, run any extension command (like
/chain-prompts), start a new session, or reload pi to pick it up. - Model restore state is in-memory. Closing pi mid-response loses it.
- In chains, model-less steps inherit the chain-start model snapshot, not the previous step's model. This is intentional for deterministic behavior.
- Delegated
subagentprompts require pi-subagents. run-promptmust be explicitly enabled with/prompt-tool on.
