0
1
Source

OpenProse VM skill pack. Activate on any `prose` command, .prose files, or OpenProse mentions; orchestrates multi-agent workflows.

Install

mkdir -p .claude/skills/prose && curl -L -o skill.zip "https://mcp.directory/api/skills/download/4421" && unzip -o skill.zip -d .claude/skills/prose && rm skill.zip

Installs to .claude/skills/prose

About this skill

OpenProse Skill

OpenProse is a programming language for AI sessions. LLMs are simulators—when given a detailed system description, they don't just describe it, they simulate it. The prose.md specification describes a virtual machine with enough fidelity that a Prose Complete system reading it becomes that VM. Simulation with sufficient fidelity is implementation. You are the Prose Complete system.

OpenClaw Runtime Mapping

  • Task tool in the upstream spec == OpenClaw sessions_spawn
  • File I/O == OpenClaw read/write
  • Remote fetch == OpenClaw web_fetch (or exec with curl when POST is required)

When to Activate

Activate this skill when the user:

  • Uses ANY prose command (e.g., prose boot, prose run, prose compile, prose update, prose help, etc.)
  • Asks to run a .prose file
  • Mentions "OpenProse" or "prose program"
  • Wants to orchestrate multiple AI agents from a script
  • Has a file with session "..." or agent name: syntax
  • Wants to create a reusable workflow

Command Routing

When a user invokes prose <command>, intelligently route based on intent:

CommandAction
prose helpLoad help.md, guide user to what they need
prose run <file>Load VM (prose.md + state backend), execute the program
prose run handle/slugFetch from registry, then execute (see Remote Programs below)
prose compile <file>Load compiler.md, validate the program
prose updateRun migration (see Migration section below)
prose examplesShow or run example programs from examples/
OtherIntelligently interpret based on context

Important: Single Skill

There is only ONE skill: open-prose. There are NO separate skills like prose-run, prose-compile, or prose-boot. All prose commands route through this single skill.

Resolving Example References

Examples are bundled in examples/ (same directory as this file). When users reference examples by name (e.g., "run the gastown example"):

  1. Read examples/ to list available files
  2. Match by partial name, keyword, or number
  3. Run with: prose run examples/28-gas-town.prose

Common examples by keyword:

KeywordFile
hello, hello worldexamples/01-hello-world.prose
gas town, gastownexamples/28-gas-town.prose
captain, chairexamples/29-captains-chair.prose
forge, browserexamples/37-the-forge.prose
parallelexamples/16-parallel-reviews.prose
pipelineexamples/21-pipeline-operations.prose
error, retryexamples/22-error-handling.prose

Remote Programs

You can run any .prose program from a URL or registry reference:

# Direct URL — any fetchable URL works
prose run https://raw.githubusercontent.com/openprose/prose/main/skills/open-prose/examples/48-habit-miner.prose

# Registry shorthand — handle/slug resolves to p.prose.md
prose run irl-danb/habit-miner
prose run alice/code-review

Resolution rules:

InputResolution
Starts with http:// or https://Fetch directly from URL
Contains / but no protocolResolve to https://p.prose.md/{path}
OtherwiseTreat as local file path

Steps for remote programs:

  1. Apply resolution rules above
  2. Fetch the .prose content
  3. Load the VM and execute as normal

This same resolution applies to use statements inside .prose files:

use "https://example.com/my-program.prose"  # Direct URL
use "alice/research" as research             # Registry shorthand

File Locations

Do NOT search for OpenProse documentation files. All skill files are co-located with this SKILL.md file:

FileLocationPurpose
prose.mdSame directory as this fileVM semantics (load to run programs)
help.mdSame directory as this fileHelp, FAQs, onboarding (load for prose help)
state/filesystem.mdSame directory as this fileFile-based state (default, load with VM)
state/in-context.mdSame directory as this fileIn-context state (on request)
state/sqlite.mdSame directory as this fileSQLite state (experimental, on request)
state/postgres.mdSame directory as this filePostgreSQL state (experimental, on request)
compiler.mdSame directory as this fileCompiler/validator (load only on request)
guidance/patterns.mdSame directory as this fileBest practices (load when writing .prose)
guidance/antipatterns.mdSame directory as this fileWhat to avoid (load when writing .prose)
examples/Same directory as this file37 example programs

User workspace files (these ARE in the user's project):

File/DirectoryLocationPurpose
.prose/.envUser's working directoryConfig (key=value format)
.prose/runs/User's working directoryRuntime state for file-based mode
.prose/agents/User's working directoryProject-scoped persistent agents
*.prose filesUser's projectUser-created programs to execute

User-level files (in user's home directory, shared across all projects):

File/DirectoryLocationPurpose
~/.prose/agents/User's home dirUser-scoped persistent agents (cross-project)

When you need to read prose.md or compiler.md, read them from the same directory where you found this SKILL.md file. Never search the user's workspace for these files.


Core Documentation

FilePurposeWhen to Load
prose.mdVM / InterpreterAlways load to run programs
state/filesystem.mdFile-based stateLoad with VM (default)
state/in-context.mdIn-context stateOnly if user requests --in-context or says "use in-context state"
state/sqlite.mdSQLite state (experimental)Only if user requests --state=sqlite (requires sqlite3 CLI)
state/postgres.mdPostgreSQL state (experimental)Only if user requests --state=postgres (requires psql + PostgreSQL)
compiler.mdCompiler / ValidatorOnly when user asks to compile or validate
guidance/patterns.mdBest practicesLoad when writing new .prose files
guidance/antipatterns.mdWhat to avoidLoad when writing new .prose files

Authoring Guidance

When the user asks you to write or create a new .prose file, load the guidance files:

  • guidance/patterns.md — Proven patterns for robust, efficient programs
  • guidance/antipatterns.md — Common mistakes to avoid

Do not load these when running or compiling—they're for authoring only.

State Modes

OpenProse supports three state management approaches:

ModeWhen to UseState Location
filesystem (default)Complex programs, resumption needed, debugging.prose/runs/{id}/ files
in-contextSimple programs (<30 statements), no persistence neededConversation history
sqlite (experimental)Queryable state, atomic transactions, flexible schema.prose/runs/{id}/state.db
postgres (experimental)True concurrent writes, external integrations, team collaborationPostgreSQL database

Default behavior: When loading prose.md, also load state/filesystem.md. This is the recommended mode for most programs.

Switching modes: If the user says "use in-context state" or passes --in-context, load state/in-context.md instead.

Experimental SQLite mode: If the user passes --state=sqlite or says "use sqlite state", load state/sqlite.md. This mode requires sqlite3 CLI to be installed (pre-installed on macOS, available via package managers on Linux/Windows). If sqlite3 is unavailable, warn the user and fall back to filesystem state.

Experimental PostgreSQL mode: If the user passes --state=postgres or says "use postgres state":

⚠️ Security Note: Database credentials in OPENPROSE_POSTGRES_URL are passed to subagent sessions and visible in logs.


Content truncated.

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

1,6851,430

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

1,2681,335

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

1,5431,151

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

1,357809

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

1,264728

pdf-to-markdown

aliceisjustplaying

Convert entire PDF documents to clean, structured Markdown for full context loading. Use this skill when the user wants to extract ALL text from a PDF into context (not grep/search), when discussing or analyzing PDF content in full, when the user mentions "load the whole PDF", "bring the PDF into context", "read the entire PDF", or when partial extraction/grepping would miss important context. This is the preferred method for PDF text extraction over page-by-page or grep approaches.

1,491684