refactor: rename to openclaw

This commit is contained in:
Peter Steinberger
2026-01-30 03:15:10 +01:00
parent 4583f88626
commit 9a7160786a
2357 changed files with 16688 additions and 16788 deletions

View File

@@ -1,5 +1,5 @@
---
summary: "OpenProse: .prose workflows, slash commands, and state in Moltbot"
summary: "OpenProse: .prose workflows, slash commands, and state in OpenClaw"
read_when:
- You want to run or write .prose workflows
- You want to enable the OpenProse plugin
@@ -7,7 +7,7 @@ read_when:
---
# OpenProse
OpenProse is a portable, markdown-first workflow format for orchestrating AI sessions. In Moltbot it ships as a plugin that installs an OpenProse skill pack plus a `/prose` slash command. Programs live in `.prose` files and can spawn multiple sub-agents with explicit control flow.
OpenProse is a portable, markdown-first workflow format for orchestrating AI sessions. In OpenClaw it ships as a plugin that installs an OpenProse skill pack plus a `/prose` slash command. Programs live in `.prose` files and can spawn multiple sub-agents with explicit control flow.
Official site: https://www.prose.md
@@ -22,18 +22,18 @@ Official site: https://www.prose.md
Bundled plugins are disabled by default. Enable OpenProse:
```bash
moltbot plugins enable open-prose
openclaw plugins enable open-prose
```
Restart the Gateway after enabling the plugin.
Dev/local checkout: `moltbot plugins install ./extensions/open-prose`
Dev/local checkout: `openclaw plugins install ./extensions/open-prose`
Related docs: [Plugins](/plugin), [Plugin manifest](/plugins/manifest), [Skills](/tools/skills).
## Slash command
OpenProse registers `/prose` as a user-invocable skill command. It routes to the OpenProse VM instructions and uses Moltbot tools under the hood.
OpenProse registers `/prose` as a user-invocable skill command. It routes to the OpenProse VM instructions and uses OpenClaw tools under the hood.
Common commands:
@@ -112,11 +112,11 @@ Notes:
`/prose run <handle/slug>` resolves to `https://p.prose.md/<handle>/<slug>`.
Direct URLs are fetched as-is. This uses the `web_fetch` tool (or `exec` for POST).
## Moltbot runtime mapping
## OpenClaw runtime mapping
OpenProse programs map to Moltbot primitives:
OpenProse programs map to OpenClaw primitives:
| OpenProse concept | Moltbot tool |
| OpenProse concept | OpenClaw tool |
| --- | --- |
| Spawn session / Task tool | `sessions_spawn` |
| File read/write | `read` / `write` |
@@ -126,6 +126,6 @@ If your tool allowlist blocks these tools, OpenProse programs will fail. See [Sk
## Security + approvals
Treat `.prose` files like code. Review before running. Use Moltbot tool allowlists and approval gates to control side effects.
Treat `.prose` files like code. Review before running. Use OpenClaw tool allowlists and approval gates to control side effects.
For deterministic, approval-gated workflows, compare with [Lobster](/tools/lobster).