pi-muse-bridge
Add Muse Spark to Pi's official subagent tool through Muse Code
Package details
Install pi-muse-bridge from npm and Pi will load the resources declared by the package manifest.
$ pi install npm:pi-muse-bridge- Package
pi-muse-bridge- Version
0.3.0- Published
- Aug 12, 2026
- Downloads
- 633/mo · 53/wk
- Author
- ferdouspy
- License
- MIT
- Types
- extension
- Size
- 29 KB
- Dependencies
- 0 dependencies · 2 peers
Pi manifest JSON
{
"extensions": [
"./src/index.ts"
]
}Security note
Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.
README
pi-muse-bridge
Use Muse Spark as an agent in Pi's official subagent extension through an authenticated Muse Code installation.
The package registers Muse Code as a Pi model provider. It does not register another subagent tool or require a modified subagent host.
Requirements
- Pi 0.84.x
- Pi's official subagent extension
- Muse Code installed and authenticated with
muse login
Install
pi install npm:pi-muse-bridge
Restart Pi, then install the bundled agent definition explicitly:
/muse-setup
The command copies the bundled definition to ~/.pi/agent/agents/muse-spark.md. It is idempotent and refuses to overwrite an unrelated agent with the same name.
Pi's official subagent extension discovers agents when its tool runs, so no subagent-host fork or reload is required.
Use
subagent({ agent: "muse-spark", task: "Explain this repository" })
Official-host parallel and chain modes work normally:
subagent({
tasks: [
{ agent: "muse-spark", task: "Review the API" },
{ agent: "muse-spark", task: "Review the implementation" },
],
})
The official host launches a child Pi process with muse-code/muse-spark. The bridge provider then launches Muse Code and streams its response back as a regular Pi assistant message.
Models
muse-code/muse-spark is a stable alias for the model marked is_default in Muse's local catalog. Catalog models are also registered under muse-code/<model-id> and can be pinned by editing the installed agent definition:
model: muse-code/muse-spark-1.2
Missing, corrupt, or unknown catalog data produces an explicit execution error. The provider remains registered when Muse has not been installed yet so Pi itself can still start and explain the setup problem when the agent is used.
Pi thinking levels are passed to Muse (off becomes none, and max becomes ultra).
Security
Delegated runs use Muse's unrestricted mode by default:
muse exec --yolo
This disables Muse approval prompts and sandboxing. To retain Muse's sandbox while keeping headless approval prompts disabled, start Pi with:
pi --muse-sandboxed
For official subagents, the child Pi process receives Pi's extension flags only when they are part of its invocation. To apply sandboxing consistently to child Pi processes, set:
PI_MUSE_SANDBOXED=1 pi
Sandboxed mode uses muse exec --trust-workspace --disable-approval.
Extensions and unsandboxed agents execute with your user permissions. Only install packages you trust.
Remove the agent
/muse-remove
This removes only an agent definition managed by pi-muse-bridge. Removing the Pi package itself does not silently mutate your agent directory.
Development
npm install
npm run check
npm test