pi-ca-leash

Harness-aware Claude Code and Codex CLI extension for pi

Package details

extension

Install pi-ca-leash from npm and Pi will load the resources declared by the package manifest.

$ pi install npm:pi-ca-leash
Package
pi-ca-leash
Version
0.11.0
Published
May 4, 2026
Downloads
349/mo · 349/wk
Author
durandom
License
MIT
Types
extension
Size
454.7 KB
Dependencies
5 dependencies · 2 peers
Pi manifest JSON
{
  "extensions": [
    "./extensions"
  ],
  "image": "https://raw.githubusercontent.com/durandom/pi-ca-leash/main/pi-ca-leash-artifact-icon.png"
}

Security note

Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.

README

pi-ca-leash

Harness-aware Claude Code and Codex CLI extension for pi.

Claude Code and Codex CLI are more than model endpoints. They are coding harnesses with their own tool loops, session semantics, and increasingly harness-optimized models. pi-ca-leash treats them that way.

Pi stays in the brain seat — like a human coordinating multiple coding agents. It can start long-lived workers, hand them scoped tasks, wait for results, inspect what they did, and decide what happens next.

Claude is the default and most complete path today. Codex works too, but is still experimental and not parity-complete.

What it adds

After installation, pi gets:

  • named long-lived peers with /peer start, /peer ask, /peer send, /peer history, and /peer stop
  • a peer dashboard plus local attention state
  • LLM-callable peer tools such as peer_start, peer_ask, peer_send, peer_history, and runtime_models
  • a supported programmatic managed-peer API for downstream orchestrators via @pi-claude-code-agent/intercom-bridge
  • optional local subagent-style runs and local persistent teammates behind advanced commands/tools
  • optional live intercom transport when the broker is reachable

What this package does not claim:

  • no real upstream pi-subagents integration
  • no external pi-teams integration
  • no real Claude fork/session-tree semantics
  • no host-independent full pi extension smoke test

Example session

Fictional but representative flow:

You: /peer dashboard

You: Start a planner peer to understand the auth flow and propose the safest implementation plan.

You: Start an implementer peer too, but keep it waiting for my approved plan before editing anything.

Pi/main agent:
- uses peer tools to start both workers
- keeps control of the conversation
- receives planner output automatically when it is ready
- decides what plan to approve

Sample peer state:
- planner      idle      summarized auth flow and proposed scoped plan
- implementer  waiting   ready for approved implementation handoff

You: Send the approved plan to the implementer. Keep changes scoped. Report files changed, commands run, tests, and residual risk.

Pi/main agent:
- inspects the implementer result
- asks follow-up questions if needed
- gives the final answer to the user

That is core idea: pi is not replaced by child agents. Pi orchestrates them.

Once peer mode is active, you can often ask for this in natural language instead of manually driving every peer command.

Install

For most users, if pi already works on your machine and pi install works, you do not need to think about Node directly. pi install npm:pi-ca-leash is usually enough.

Requirements for normal use:

  • a working pi installation
  • at least one configured runtime:
    • Claude Code configured for Claude-backed execution, or
    • codex on PATH for experimental Codex-backed runtime checks

Requirements for local development or source installs:

  • Node.js 18 or newer
  • npm

Install from npm:

pi install npm:pi-ca-leash

Pin an explicit version when needed:

pi install npm:pi-ca-leash@0.11.0

Install from a pinned git release:

pi install git:github.com/durandom/pi-ca-leash@v0.11.0

Try this checkout locally:

npm install
npm test
npm run build
pi install /absolute/path/to/pi-ca-leash

npm install runs the workspace build through prepare, so local development and git-based installs have package dist/ files available.

Use Codex as the default runtime driver for newly started peers:

PI_CLAUDE_RUNTIME_DRIVER=codex-cli pi

Persisted peers keep their recorded driver.

Try this first

Inside pi:

/peer about
/peer init
/peer start reviewer | Review this repo briefly and report one concrete risk.
# keep working or wait; completion relays automatically
/peer ask reviewer | Reply with exactly: peer-ok
/peer dashboard advanced

If you want Codex-backed peers, inspect the bundled Codex catalog first:

/peer models codex-cli

How it works

After peer mode is active, the main agent can use the peer tools directly, and you can usually steer it in plain language.

Mental model:

  • the main agent stays in charge; peers are delegated workers, not replacements for the orchestrator
  • peers are long-lived sessions, so follow-up messages continue the same worker instead of starting from scratch
  • most peers work in the same repository checkout; prefer short prompts plus file-based handoffs over pasting large context
  • start bounded peer jobs, keep working in the main turn, and wait for the automatic completion/block/failure relay
  • use ask when you need a reply now, send for fire-and-forget follow-up work, and history only when you need to scroll back for evidence
  • do not babysit peers with repeated status polling

Primary slash-command surface:

/peer
/peer help
/peer about
/peer init
/peer dashboard
/peer dashboard advanced
/peer start <prompt>
/peer start <prompt> | <driver> | <model>
/peer start <name> | <prompt>
/peer start <name> | <prompt> | <driver> | <model>
/peer ask <name> | <message>
/peer send <name> | <message>
/peer list
/peer models [claude-sdk|codex-cli] [all|advanced|verbose]
/peer history <name> [cursor] [limit]
/peer interrupt <name>
/peer stop <name>
/peer stop --all --confirm

LLM-callable tools:

runtime_models(driver?, verbose?)
extension_log(category?, severity?, summary, observed?, expected?, reproduction?, suggestedFix?, relatedCommand?, relatedTool?, files?)
peer_start(prompt, name?, driver?, model?, cwd?)
peer_list()
peer_history(name, cursor?, limit?)
peer_ask(name, message, model?)
peer_send(name, message, model?)
peer_interrupt(name)
peer_stop(name?, all?, confirmAll?)

Advanced LLM-callable backend tools are hidden by default while their integration model is still being refined. Enable them only for development with PI_CLAUDE_ENABLE_ADVANCED_COMMANDS=1:

subagent_run(task, name?, prompt?, driver?, model?, cwd?, async?)
subagent_list()
subagent_status(runId)
team_spawn(name, prompt, driver?, model?, cwd?)
team_task(name, title, details)
team_message(name, message)
team_list()
team_stop(name)

Legacy /claude-* commands are hidden by default. Re-enable old peer commands only for compatibility:

PI_CA_LEASH_ENABLE_LEGACY_COMMANDS=1 pi

Re-enable old internal diagnostics for development:

PI_CA_LEASH_ENABLE_LEGACY_COMMANDS=1 PI_CLAUDE_ENABLE_ADVANCED_COMMANDS=1 pi

Behavior

The extension is lazy. Loading it registers commands and tools, but it does not start the Peers widget, background monitor, or intercom transport checks immediately. /peer with no args opens the dashboard and activates peer mode. /peer init also activates the peer workflow, adds the one-time orchestration guide to the main agent context, and shows the user a compact command cheat sheet as a user-only UI notification. The first actionable /peer command, such as /peer models, /peer dashboard, /peer list, or /peer start, also activates it and adds that agent guide once. /peer help and /peer about stay passive and show user-only UI notifications. /peer about reports the installed package version, package root, state root, default driver, and session mode.

Peers are asynchronous workers. The main agent should start a peer, continue useful work, and wait for the automatic peer completion, blocked, or failure relay. It should not poll peer_list, peer_history, or repeated peer_ask just to see whether the peer is done. When a peer returns, the main agent still owns verification, synthesis, and the final answer.

The extension keeps peer output quiet by default:

  • peer work does not stream child transcript spam into the main window
  • peer command acknowledgments and reports are user-only UI notifications, not main-agent context
  • peer completion is relayed back as one wrapped follow-up turn with the latest visible peer message
  • detailed backend diagnostics live in /peer dashboard advanced

Managed peers for downstream orchestrators

If another extension wants workers that behave like normal pi-ca-leash peers, use the supported managed-peer surface from @pi-claude-code-agent/intercom-bridge:

  • PiCaLeashManagedPeerApi
  • piCaLeashStateDir(...)
  • piCaLeashRuntimeStorageDir(...)
  • piCaLeashBridgeStorageDir(...)

That API gives downstream orchestrators the normal peer lifecycle (launch, attach, list, status, send, ask, interrupt, stop, reconcile) while writing to the same .pi-ca-leash/{runtime,bridge} state used by the extension.

Result: managed peers created by another extension can show up in the live /peer dashboard and peer_list without requiring a pi restart. The normal dashboard shows a compact managed:owner badge, and the advanced dashboard expands full managed-peer metadata.

Runtime driver notes:

  • claude-sdk is the default and most complete path
  • codex-cli is supported, but still experimental and not parity-complete
  • PI_CLAUDE_RUNTIME_DRIVER=codex-cli changes the default for newly started peers
  • /peer models and LLM-callable runtime_models show a short recommended model list by default, including advisory use cases
  • /peer models ... all and runtime_models(verbose: true) expose the full bundled Lanista-derived model catalog
  • LLM-callable peer_start, peer_ask, and peer_send can pass explicit model ids
  • /peer start can pass driver and model in pipe syntax
  • common catalog aliases such as sonnet, opus, haiku, mini, and spark are resolved to exact model ids before runtime launch
  • catalog validation is advisory; unknown model ids are still passed through to the runtime because provider and CLI availability is environment-dependent

Repository Layout

packages/
  runtime/            Claude/Codex runtime abstraction
  intercom-bridge/    named runtime-backed peers
  subagents-backend/  local subagent-style run backend
  teams-backend/      local persistent teammate backend
extensions/
  index.ts            pi extension wiring and command/tool surface
  prompts/            editable operator, tool, peer, and agent guidance text

Useful docs that should remain current:

  • ARCHITECTURE.md
  • KNOWN_LIMITS.md
  • CHANGELOG.md
  • DEVELOPMENT.md
  • AGENTS.md

Development

Start here:

npm test
npm run build
npm run smoke:dev
npm run smoke:last
npm run smoke:manual

For the full developer workflow, smoke-command reference, artifact/debugging guide, and manual release checklist, see DEVELOPMENT.md.

Persistence

Repository-local runtime state is written under:

.pi-ca-leash/
  runtime/
  bridge/
  subagents/
  teams/
  extension/
  log.md

These paths are ignored by git. log.md is an append-only local feedback log for extension UX rough edges, confusing guidance, poor defaults, and repeated interaction problems. Remove .pi-ca-leash/ when you need a clean local manual-test session.

Older local development state may also exist under ignored paths such as .pi-claude-code-agent/, .claude-runtime/, or undefined/. Those are not part of the package.

Limits

The short version:

  • full extension-host smoke testing still needs a real pi installation
  • live intercom broker transport is optional
  • Codex support is partial
  • runner=claude-code-agent rejects real fork
  • teams backend is local-only
  • attention ack/snooze is local extension state

See KNOWN_LIMITS.md for the detailed version.