Skip to content

OpenProse

OpenProse is a portable, markdown-first workflow format for orchestrating AI sessions. In RemoteClaw it ships as a plugin that installs an OpenProse skill pack and a /prose slash command. Programs live in .prose files and can spawn multiple sub-agents with explicit control flow.

Enable the OpenProse plugin and restart the Gateway. Use `/prose run` to execute a `.prose` file or remote program. Author multi-agent workflows with parallel and sequential steps.

Install

Bundled plugins are disabled by default. Enable OpenProse:
```bash
remoteclaw plugins enable open-prose
```
```bash remoteclaw gateway restart ``` ```bash remoteclaw plugins list | grep prose ```
You should see `open-prose` as enabled. The `/prose` skill command is now
available in chat.

For a local checkout: remoteclaw plugins install ./path/to/local/open-prose-plugin

Slash command

OpenProse registers /prose as a user-invocable skill command:

/prose help
/prose run <file.prose>
/prose run <handle/slug>
/prose run <https://example.com/file.prose>
/prose compile <file.prose>
/prose examples
/prose update

/prose run <handle/slug> resolves to https://p.prose.md/<handle>/<slug>. Direct URLs are fetched as-is using the web_fetch tool.

What it can do

  • Multi-agent research and synthesis with explicit parallelism.
  • Repeatable, approval-safe workflows (code review, incident triage, content pipelines).
  • Reusable .prose programs you can run across supported agent runtimes.

Example: parallel research and synthesis

# Research + synthesis with two agents running in parallel.
input topic: "What should we research?"
agent researcher:
model: sonnet
prompt: "You research thoroughly and cite sources."
agent writer:
model: opus
prompt: "You write a concise summary."
parallel:
findings = session: researcher
prompt: "Research {topic}."
draft = session: writer
prompt: "Summarize {topic}."
session "Merge the findings + draft into a final answer."
context: { findings, draft }

RemoteClaw runtime mapping

OpenProse programs map to RemoteClaw primitives:

OpenProse conceptRemoteClaw tool
Spawn session / Task toolsessions_spawn
File read / writeread / write
Web fetchweb_fetch
If your tool allowlist blocks `sessions_spawn`, `read`, `write`, or `web_fetch`, OpenProse programs will fail. Check your [tools allowlist config](/gateway/config-tools).

File locations

OpenProse keeps state under .prose/ in your workspace:

.prose/
├── .env
├── runs/
│ └── {YYYYMMDD}-{HHMMSS}-{random}/
│ ├── program.prose
│ ├── state.md
│ ├── bindings/
│ └── agents/
└── agents/

User-level persistent agents live at:

~/.prose/agents/

State backends

State is written to `.prose/runs/...` in the workspace. No extra dependencies required. Transient state kept in the context window. Suitable for small, short-lived programs. Requires the `sqlite3` binary on `PATH`. Requires `psql` and a connection string.
<Warning>
Postgres credentials flow into sub-agent logs. Use a dedicated,
least-privileged database.
</Warning>

Security

Treat .prose files like code. Review them before running. Use RemoteClaw tool allowlists and approval gates to control side effects. For deterministic, approval-gated workflows, compare with Lobster.

How OpenProse's skill pack loads and what gates apply. RemoteClaw's native multi-agent coordination layer. Add audio output to your workflows. All available chat commands including /prose.

Official site: https://www.prose.md