[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-deepgram-prose":3,"mdc--47wzz1-key":32,"related-repo-deepgram-prose":3055,"related-org-deepgram-prose":3148},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":30,"mdContent":31},"prose","orchestrate multi-agent workflows with OpenProse","OpenProse VM skill pack. Activate on any `prose` command, .prose files, or OpenProse mentions; orchestrates multi-agent workflows.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"deepgram","Deepgram","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fdeepgram.png",[12,16,19],{"name":13,"slug":14,"type":15},"Automation","automation","tag",{"name":17,"slug":18,"type":15},"Agents","agents",{"name":20,"slug":21,"type":15},"Multi-Agent","multi-agent",23,"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fdglabs-deepclaw","2026-07-12T08:30:08.578493",null,9,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":25},[],"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fdglabs-deepclaw\u002Ftree\u002FHEAD\u002Fextensions\u002Fopen-prose\u002Fskills\u002Fprose","---\nname: prose\ndescription: OpenProse VM skill pack. Activate on any `prose` command, .prose files, or OpenProse mentions; orchestrates multi-agent workflows.\nmetadata: { \"openclaw\": { \"emoji\": \"🪶\", \"homepage\": \"https:\u002F\u002Fwww.prose.md\" } }\n---\n\n# OpenProse Skill\n\nOpenProse 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.**\n\n## OpenClaw Runtime Mapping\n\n- **Task tool** in the upstream spec == OpenClaw `sessions_spawn`\n- **File I\u002FO** == OpenClaw `read`\u002F`write`\n- **Remote fetch** == OpenClaw `web_fetch` (or `exec` with curl when POST is required)\n\n## When to Activate\n\nActivate this skill when the user:\n\n- **Uses ANY `prose` command** (e.g., `prose boot`, `prose run`, `prose compile`, `prose update`, `prose help`, etc.)\n- Asks to run a `.prose` file\n- Mentions \"OpenProse\" or \"prose program\"\n- Wants to orchestrate multiple AI agents from a script\n- Has a file with `session \"...\"` or `agent name:` syntax\n- Wants to create a reusable workflow\n\n## Command Routing\n\nWhen a user invokes `prose \u003Ccommand>`, intelligently route based on intent:\n\n| Command                 | Action                                                        |\n| ----------------------- | ------------------------------------------------------------- |\n| `prose help`            | Load `help.md`, guide user to what they need                  |\n| `prose run \u003Cfile>`      | Load VM (`prose.md` + state backend), execute the program     |\n| `prose run handle\u002Fslug` | Fetch from registry, then execute (see Remote Programs below) |\n| `prose compile \u003Cfile>`  | Load `compiler.md`, validate the program                      |\n| `prose update`          | Run migration (see Migration section below)                   |\n| `prose examples`        | Show or run example programs from `examples\u002F`                 |\n| Other                   | Intelligently interpret based on context                      |\n\n### Important: Single Skill\n\nThere 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.\n\n### Resolving Example References\n\n**Examples are bundled in `examples\u002F` (same directory as this file).** When users reference examples by name (e.g., \"run the gastown example\"):\n\n1. Read `examples\u002F` to list available files\n2. Match by partial name, keyword, or number\n3. Run with: `prose run examples\u002F28-gas-town.prose`\n\n**Common examples by keyword:**\n| Keyword | File |\n|---------|------|\n| hello, hello world | `examples\u002F01-hello-world.prose` |\n| gas town, gastown | `examples\u002F28-gas-town.prose` |\n| captain, chair | `examples\u002F29-captains-chair.prose` |\n| forge, browser | `examples\u002F37-the-forge.prose` |\n| parallel | `examples\u002F16-parallel-reviews.prose` |\n| pipeline | `examples\u002F21-pipeline-operations.prose` |\n| error, retry | `examples\u002F22-error-handling.prose` |\n\n### Remote Programs\n\nYou can run any `.prose` program from a URL or registry reference:\n\n```bash\n# Direct URL — any fetchable URL works\nprose run https:\u002F\u002Fraw.githubusercontent.com\u002Fopenprose\u002Fprose\u002Fmain\u002Fskills\u002Fopen-prose\u002Fexamples\u002F48-habit-miner.prose\n\n# Registry shorthand — handle\u002Fslug resolves to p.prose.md\nprose run irl-danb\u002Fhabit-miner\nprose run alice\u002Fcode-review\n```\n\n**Resolution rules:**\n\n| Input                               | Resolution                             |\n| ----------------------------------- | -------------------------------------- |\n| Starts with `http:\u002F\u002F` or `https:\u002F\u002F` | Fetch directly from URL                |\n| Contains `\u002F` but no protocol        | Resolve to `https:\u002F\u002Fp.prose.md\u002F{path}` |\n| Otherwise                           | Treat as local file path               |\n\n**Steps for remote programs:**\n\n1. Apply resolution rules above\n2. Fetch the `.prose` content\n3. Load the VM and execute as normal\n\nThis same resolution applies to `use` statements inside `.prose` files:\n\n```prose\nuse \"https:\u002F\u002Fexample.com\u002Fmy-program.prose\"  # Direct URL\nuse \"alice\u002Fresearch\" as research             # Registry shorthand\n```\n\n---\n\n## File Locations\n\n**Do NOT search for OpenProse documentation files.** All skill files are co-located with this SKILL.md file:\n\n| File                       | Location                    | Purpose                                        |\n| -------------------------- | --------------------------- | ---------------------------------------------- |\n| `prose.md`                 | Same directory as this file | VM semantics (load to run programs)            |\n| `help.md`                  | Same directory as this file | Help, FAQs, onboarding (load for `prose help`) |\n| `state\u002Ffilesystem.md`      | Same directory as this file | File-based state (default, load with VM)       |\n| `state\u002Fin-context.md`      | Same directory as this file | In-context state (on request)                  |\n| `state\u002Fsqlite.md`          | Same directory as this file | SQLite state (experimental, on request)        |\n| `state\u002Fpostgres.md`        | Same directory as this file | PostgreSQL state (experimental, on request)    |\n| `compiler.md`              | Same directory as this file | Compiler\u002Fvalidator (load only on request)      |\n| `guidance\u002Fpatterns.md`     | Same directory as this file | Best practices (load when writing .prose)      |\n| `guidance\u002Fantipatterns.md` | Same directory as this file | What to avoid (load when writing .prose)       |\n| `examples\u002F`                | Same directory as this file | 37 example programs                            |\n\n**User workspace files** (these ARE in the user's project):\n\n| File\u002FDirectory   | Location                 | Purpose                           |\n| ---------------- | ------------------------ | --------------------------------- |\n| `.prose\u002F.env`    | User's working directory | Config (key=value format)         |\n| `.prose\u002Fruns\u002F`   | User's working directory | Runtime state for file-based mode |\n| `.prose\u002Fagents\u002F` | User's working directory | Project-scoped persistent agents  |\n| `*.prose` files  | User's project           | User-created programs to execute  |\n\n**User-level files** (in user's home directory, shared across all projects):\n\n| File\u002FDirectory     | Location        | Purpose                                       |\n| ------------------ | --------------- | --------------------------------------------- |\n| `~\u002F.prose\u002Fagents\u002F` | User's home dir | User-scoped persistent agents (cross-project) |\n\nWhen 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.\n\n---\n\n## Core Documentation\n\n| File                       | Purpose                         | When to Load                                                          |\n| -------------------------- | ------------------------------- | --------------------------------------------------------------------- |\n| `prose.md`                 | VM \u002F Interpreter                | Always load to run programs                                           |\n| `state\u002Ffilesystem.md`      | File-based state                | Load with VM (default)                                                |\n| `state\u002Fin-context.md`      | In-context state                | Only if user requests `--in-context` or says \"use in-context state\"   |\n| `state\u002Fsqlite.md`          | SQLite state (experimental)     | Only if user requests `--state=sqlite` (requires sqlite3 CLI)         |\n| `state\u002Fpostgres.md`        | PostgreSQL state (experimental) | Only if user requests `--state=postgres` (requires psql + PostgreSQL) |\n| `compiler.md`              | Compiler \u002F Validator            | **Only** when user asks to compile or validate                        |\n| `guidance\u002Fpatterns.md`     | Best practices                  | Load when **writing** new .prose files                                |\n| `guidance\u002Fantipatterns.md` | What to avoid                   | Load when **writing** new .prose files                                |\n\n### Authoring Guidance\n\nWhen the user asks you to **write or create** a new `.prose` file, load the guidance files:\n\n- `guidance\u002Fpatterns.md` — Proven patterns for robust, efficient programs\n- `guidance\u002Fantipatterns.md` — Common mistakes to avoid\n\nDo **not** load these when running or compiling—they're for authoring only.\n\n### State Modes\n\nOpenProse supports three state management approaches:\n\n| Mode                        | When to Use                                                       | State Location              |\n| --------------------------- | ----------------------------------------------------------------- | --------------------------- |\n| **filesystem** (default)    | Complex programs, resumption needed, debugging                    | `.prose\u002Fruns\u002F{id}\u002F` files   |\n| **in-context**              | Simple programs (\u003C30 statements), no persistence needed           | Conversation history        |\n| **sqlite** (experimental)   | Queryable state, atomic transactions, flexible schema             | `.prose\u002Fruns\u002F{id}\u002Fstate.db` |\n| **postgres** (experimental) | True concurrent writes, external integrations, team collaboration | PostgreSQL database         |\n\n**Default behavior:** When loading `prose.md`, also load `state\u002Ffilesystem.md`. This is the recommended mode for most programs.\n\n**Switching modes:** If the user says \"use in-context state\" or passes `--in-context`, load `state\u002Fin-context.md` instead.\n\n**Experimental SQLite mode:** If the user passes `--state=sqlite` or says \"use sqlite state\", load `state\u002Fsqlite.md`. This mode requires `sqlite3` CLI to be installed (pre-installed on macOS, available via package managers on Linux\u002FWindows). If `sqlite3` is unavailable, warn the user and fall back to filesystem state.\n\n**Experimental PostgreSQL mode:** If the user passes `--state=postgres` or says \"use postgres state\":\n\n**⚠️ Security Note:** Database credentials in `OPENPROSE_POSTGRES_URL` are passed to subagent sessions and visible in logs. Advise users to use a dedicated database with limited-privilege credentials. See `state\u002Fpostgres.md` for secure setup guidance.\n\n1. **Check for connection configuration first:**\n\n   ```bash\n   # Check .prose\u002F.env for OPENPROSE_POSTGRES_URL\n   cat .prose\u002F.env 2>\u002Fdev\u002Fnull | grep OPENPROSE_POSTGRES_URL\n   # Or check environment variable\n   echo $OPENPROSE_POSTGRES_URL\n   ```\n\n2. **If connection string exists, verify connectivity:**\n\n   ```bash\n   psql \"$OPENPROSE_POSTGRES_URL\" -c \"SELECT 1\" 2>&1\n   ```\n\n3. **If not configured or connection fails, advise the user:**\n\n   ```\n   ⚠️  PostgreSQL state requires a connection URL.\n\n   To configure:\n   1. Set up a PostgreSQL database (Docker, local, or cloud)\n   2. Add connection string to .prose\u002F.env:\n\n      echo \"OPENPROSE_POSTGRES_URL=postgresql:\u002F\u002Fuser:pass@localhost:5432\u002Fprose\" >> .prose\u002F.env\n\n   Quick Docker setup:\n      docker run -d --name prose-pg -e POSTGRES_DB=prose -e POSTGRES_HOST_AUTH_METHOD=trust -p 5432:5432 postgres:16\n      echo \"OPENPROSE_POSTGRES_URL=postgresql:\u002F\u002Fpostgres@localhost:5432\u002Fprose\" >> .prose\u002F.env\n\n   See state\u002Fpostgres.md for detailed setup options.\n   ```\n\n4. **Only after successful connection check, load `state\u002Fpostgres.md`**\n\nThis mode requires both `psql` CLI and a running PostgreSQL server. If either is unavailable, warn and offer fallback to filesystem state.\n\n**Context warning:** `compiler.md` is large. Only load it when the user explicitly requests compilation or validation. After compiling, recommend `\u002Fcompact` or a new session before running—don't keep both docs in context.\n\n## Examples\n\nThe `examples\u002F` directory contains 37 example programs:\n\n- **01-08**: Basics (hello world, research, code review, debugging)\n- **09-12**: Agents and skills\n- **13-15**: Variables and composition\n- **16-19**: Parallel execution\n- **20-21**: Loops and pipelines\n- **22-23**: Error handling\n- **24-27**: Advanced (choice, conditionals, blocks, interpolation)\n- **28**: Gas Town (multi-agent orchestration)\n- **29-31**: Captain's chair pattern (persistent orchestrator)\n- **33-36**: Production workflows (PR auto-fix, content pipeline, feature factory, bug hunter)\n- **37**: The Forge (build a browser from scratch)\n\nStart with `01-hello-world.prose` or try `37-the-forge.prose` to watch AI build a web browser.\n\n## Execution\n\nWhen first invoking the OpenProse VM in a session, display this banner:\n\n```\n┌─────────────────────────────────────┐\n│         ◇ OpenProse VM ◇            │\n│       A new kind of computer        │\n└─────────────────────────────────────┘\n```\n\nTo execute a `.prose` file, you become the OpenProse VM:\n\n1. **Read `prose.md`** — this document defines how you embody the VM\n2. **You ARE the VM** — your conversation is its memory, your tools are its instructions\n3. **Spawn sessions** — each `session` statement triggers a Task tool call\n4. **Narrate state** — use the narration protocol to track execution ([Position], [Binding], [Success], etc.)\n5. **Evaluate intelligently** — `**...**` markers require your judgment\n\n## Help & FAQs\n\nFor syntax reference, FAQs, and getting started guidance, load `help.md`.\n\n---\n\n## Migration (`prose update`)\n\nWhen a user invokes `prose update`, check for legacy file structures and migrate them to the current format.\n\n### Legacy Paths to Check\n\n| Legacy Path         | Current Path   | Notes                            |\n| ------------------- | -------------- | -------------------------------- |\n| `.prose\u002Fstate.json` | `.prose\u002F.env`  | Convert JSON to key=value format |\n| `.prose\u002Fexecution\u002F` | `.prose\u002Fruns\u002F` | Rename directory                 |\n\n### Migration Steps\n\n1. **Check for `.prose\u002Fstate.json`**\n   - If exists, read the JSON content\n   - Convert to `.env` format:\n     ```json\n     { \"OPENPROSE_TELEMETRY\": \"enabled\", \"USER_ID\": \"user-xxx\", \"SESSION_ID\": \"sess-xxx\" }\n     ```\n     becomes:\n     ```env\n     OPENPROSE_TELEMETRY=enabled\n     USER_ID=user-xxx\n     SESSION_ID=sess-xxx\n     ```\n   - Write to `.prose\u002F.env`\n   - Delete `.prose\u002Fstate.json`\n\n2. **Check for `.prose\u002Fexecution\u002F`**\n   - If exists, rename to `.prose\u002Fruns\u002F`\n   - The internal structure of run directories may also have changed; migration of individual run state is best-effort\n\n3. **Create `.prose\u002Fagents\u002F` if missing**\n   - This is a new directory for project-scoped persistent agents\n\n### Migration Output\n\n```\n🔄 Migrating OpenProse workspace...\n  ✓ Converted .prose\u002Fstate.json → .prose\u002F.env\n  ✓ Renamed .prose\u002Fexecution\u002F → .prose\u002Fruns\u002F\n  ✓ Created .prose\u002Fagents\u002F\n✅ Migration complete. Your workspace is up to date.\n```\n\nIf no legacy files are found:\n\n```\n✅ Workspace already up to date. No migration needed.\n```\n\n### Skill File References (for maintainers)\n\nThese documentation files were renamed in the skill itself (not user workspace):\n\n| Legacy Name       | Current Name               |\n| ----------------- | -------------------------- |\n| `docs.md`         | `compiler.md`              |\n| `patterns.md`     | `guidance\u002Fpatterns.md`     |\n| `antipatterns.md` | `guidance\u002Fantipatterns.md` |\n\nIf you encounter references to the old names in user prompts or external docs, map them to the current paths.\n",{"data":33,"body":38},{"name":4,"description":6,"metadata":34},{"openclaw":35},{"emoji":36,"homepage":37},"🪶","https:\u002F\u002Fwww.prose.md",{"type":39,"children":40},"root",[41,50,86,93,163,169,174,280,286,299,468,475,518,524,541,573,581,722,728,740,836,844,931,939,964,984,1008,1012,1018,1028,1268,1278,1391,1401,1447,1465,1468,1474,1705,1711,1730,1753,1765,1771,1776,1901,1925,1949,1988,2004,2029,2209,2221,2246,2252,2264,2377,2398,2404,2409,2418,2430,2521,2527,2539,2542,2554,2565,2571,2648,2654,2922,2928,2937,2942,2951,2957,2962,3044,3049],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"openprose-skill",[47],{"type":48,"value":49},"text","OpenProse Skill",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54,56,62,64,71,73,78,80],{"type":48,"value":55},"OpenProse is a programming language for AI sessions. LLMs are simulators—when given a detailed system description, they don't just describe it, they ",{"type":42,"tag":57,"props":58,"children":59},"em",{},[60],{"type":48,"value":61},"simulate",{"type":48,"value":63}," it. The ",{"type":42,"tag":65,"props":66,"children":68},"code",{"className":67},[],[69],{"type":48,"value":70},"prose.md",{"type":48,"value":72}," specification describes a virtual machine with enough fidelity that a Prose Complete system reading it ",{"type":42,"tag":57,"props":74,"children":75},{},[76],{"type":48,"value":77},"becomes",{"type":48,"value":79}," that VM. Simulation with sufficient fidelity is implementation. ",{"type":42,"tag":81,"props":82,"children":83},"strong",{},[84],{"type":48,"value":85},"You are the Prose Complete system.",{"type":42,"tag":87,"props":88,"children":90},"h2",{"id":89},"openclaw-runtime-mapping",[91],{"type":48,"value":92},"OpenClaw Runtime Mapping",{"type":42,"tag":94,"props":95,"children":96},"ul",{},[97,114,138],{"type":42,"tag":98,"props":99,"children":100},"li",{},[101,106,108],{"type":42,"tag":81,"props":102,"children":103},{},[104],{"type":48,"value":105},"Task tool",{"type":48,"value":107}," in the upstream spec == OpenClaw ",{"type":42,"tag":65,"props":109,"children":111},{"className":110},[],[112],{"type":48,"value":113},"sessions_spawn",{"type":42,"tag":98,"props":115,"children":116},{},[117,122,124,130,132],{"type":42,"tag":81,"props":118,"children":119},{},[120],{"type":48,"value":121},"File I\u002FO",{"type":48,"value":123}," == OpenClaw ",{"type":42,"tag":65,"props":125,"children":127},{"className":126},[],[128],{"type":48,"value":129},"read",{"type":48,"value":131},"\u002F",{"type":42,"tag":65,"props":133,"children":135},{"className":134},[],[136],{"type":48,"value":137},"write",{"type":42,"tag":98,"props":139,"children":140},{},[141,146,147,153,155,161],{"type":42,"tag":81,"props":142,"children":143},{},[144],{"type":48,"value":145},"Remote fetch",{"type":48,"value":123},{"type":42,"tag":65,"props":148,"children":150},{"className":149},[],[151],{"type":48,"value":152},"web_fetch",{"type":48,"value":154}," (or ",{"type":42,"tag":65,"props":156,"children":158},{"className":157},[],[159],{"type":48,"value":160},"exec",{"type":48,"value":162}," with curl when POST is required)",{"type":42,"tag":87,"props":164,"children":166},{"id":165},"when-to-activate",[167],{"type":48,"value":168},"When to Activate",{"type":42,"tag":51,"props":170,"children":171},{},[172],{"type":48,"value":173},"Activate this skill when the user:",{"type":42,"tag":94,"props":175,"children":176},{},[177,231,244,249,254,275],{"type":42,"tag":98,"props":178,"children":179},{},[180,192,194,200,202,208,209,215,216,222,223,229],{"type":42,"tag":81,"props":181,"children":182},{},[183,185,190],{"type":48,"value":184},"Uses ANY ",{"type":42,"tag":65,"props":186,"children":188},{"className":187},[],[189],{"type":48,"value":4},{"type":48,"value":191}," command",{"type":48,"value":193}," (e.g., ",{"type":42,"tag":65,"props":195,"children":197},{"className":196},[],[198],{"type":48,"value":199},"prose boot",{"type":48,"value":201},", ",{"type":42,"tag":65,"props":203,"children":205},{"className":204},[],[206],{"type":48,"value":207},"prose run",{"type":48,"value":201},{"type":42,"tag":65,"props":210,"children":212},{"className":211},[],[213],{"type":48,"value":214},"prose compile",{"type":48,"value":201},{"type":42,"tag":65,"props":217,"children":219},{"className":218},[],[220],{"type":48,"value":221},"prose update",{"type":48,"value":201},{"type":42,"tag":65,"props":224,"children":226},{"className":225},[],[227],{"type":48,"value":228},"prose help",{"type":48,"value":230},", etc.)",{"type":42,"tag":98,"props":232,"children":233},{},[234,236,242],{"type":48,"value":235},"Asks to run a ",{"type":42,"tag":65,"props":237,"children":239},{"className":238},[],[240],{"type":48,"value":241},".prose",{"type":48,"value":243}," file",{"type":42,"tag":98,"props":245,"children":246},{},[247],{"type":48,"value":248},"Mentions \"OpenProse\" or \"prose program\"",{"type":42,"tag":98,"props":250,"children":251},{},[252],{"type":48,"value":253},"Wants to orchestrate multiple AI agents from a script",{"type":42,"tag":98,"props":255,"children":256},{},[257,259,265,267,273],{"type":48,"value":258},"Has a file with ",{"type":42,"tag":65,"props":260,"children":262},{"className":261},[],[263],{"type":48,"value":264},"session \"...\"",{"type":48,"value":266}," or ",{"type":42,"tag":65,"props":268,"children":270},{"className":269},[],[271],{"type":48,"value":272},"agent name:",{"type":48,"value":274}," syntax",{"type":42,"tag":98,"props":276,"children":277},{},[278],{"type":48,"value":279},"Wants to create a reusable workflow",{"type":42,"tag":87,"props":281,"children":283},{"id":282},"command-routing",[284],{"type":48,"value":285},"Command Routing",{"type":42,"tag":51,"props":287,"children":288},{},[289,291,297],{"type":48,"value":290},"When a user invokes ",{"type":42,"tag":65,"props":292,"children":294},{"className":293},[],[295],{"type":48,"value":296},"prose \u003Ccommand>",{"type":48,"value":298},", intelligently route based on intent:",{"type":42,"tag":300,"props":301,"children":302},"table",{},[303,322],{"type":42,"tag":304,"props":305,"children":306},"thead",{},[307],{"type":42,"tag":308,"props":309,"children":310},"tr",{},[311,317],{"type":42,"tag":312,"props":313,"children":314},"th",{},[315],{"type":48,"value":316},"Command",{"type":42,"tag":312,"props":318,"children":319},{},[320],{"type":48,"value":321},"Action",{"type":42,"tag":323,"props":324,"children":325},"tbody",{},[326,351,375,392,416,432,455],{"type":42,"tag":308,"props":327,"children":328},{},[329,338],{"type":42,"tag":330,"props":331,"children":332},"td",{},[333],{"type":42,"tag":65,"props":334,"children":336},{"className":335},[],[337],{"type":48,"value":228},{"type":42,"tag":330,"props":339,"children":340},{},[341,343,349],{"type":48,"value":342},"Load ",{"type":42,"tag":65,"props":344,"children":346},{"className":345},[],[347],{"type":48,"value":348},"help.md",{"type":48,"value":350},", guide user to what they need",{"type":42,"tag":308,"props":352,"children":353},{},[354,363],{"type":42,"tag":330,"props":355,"children":356},{},[357],{"type":42,"tag":65,"props":358,"children":360},{"className":359},[],[361],{"type":48,"value":362},"prose run \u003Cfile>",{"type":42,"tag":330,"props":364,"children":365},{},[366,368,373],{"type":48,"value":367},"Load VM (",{"type":42,"tag":65,"props":369,"children":371},{"className":370},[],[372],{"type":48,"value":70},{"type":48,"value":374}," + state backend), execute the program",{"type":42,"tag":308,"props":376,"children":377},{},[378,387],{"type":42,"tag":330,"props":379,"children":380},{},[381],{"type":42,"tag":65,"props":382,"children":384},{"className":383},[],[385],{"type":48,"value":386},"prose run handle\u002Fslug",{"type":42,"tag":330,"props":388,"children":389},{},[390],{"type":48,"value":391},"Fetch from registry, then execute (see Remote Programs below)",{"type":42,"tag":308,"props":393,"children":394},{},[395,404],{"type":42,"tag":330,"props":396,"children":397},{},[398],{"type":42,"tag":65,"props":399,"children":401},{"className":400},[],[402],{"type":48,"value":403},"prose compile \u003Cfile>",{"type":42,"tag":330,"props":405,"children":406},{},[407,408,414],{"type":48,"value":342},{"type":42,"tag":65,"props":409,"children":411},{"className":410},[],[412],{"type":48,"value":413},"compiler.md",{"type":48,"value":415},", validate the program",{"type":42,"tag":308,"props":417,"children":418},{},[419,427],{"type":42,"tag":330,"props":420,"children":421},{},[422],{"type":42,"tag":65,"props":423,"children":425},{"className":424},[],[426],{"type":48,"value":221},{"type":42,"tag":330,"props":428,"children":429},{},[430],{"type":48,"value":431},"Run migration (see Migration section below)",{"type":42,"tag":308,"props":433,"children":434},{},[435,444],{"type":42,"tag":330,"props":436,"children":437},{},[438],{"type":42,"tag":65,"props":439,"children":441},{"className":440},[],[442],{"type":48,"value":443},"prose examples",{"type":42,"tag":330,"props":445,"children":446},{},[447,449],{"type":48,"value":448},"Show or run example programs from ",{"type":42,"tag":65,"props":450,"children":452},{"className":451},[],[453],{"type":48,"value":454},"examples\u002F",{"type":42,"tag":308,"props":456,"children":457},{},[458,463],{"type":42,"tag":330,"props":459,"children":460},{},[461],{"type":48,"value":462},"Other",{"type":42,"tag":330,"props":464,"children":465},{},[466],{"type":48,"value":467},"Intelligently interpret based on context",{"type":42,"tag":469,"props":470,"children":472},"h3",{"id":471},"important-single-skill",[473],{"type":48,"value":474},"Important: Single Skill",{"type":42,"tag":51,"props":476,"children":477},{},[478,480,486,488,494,495,501,503,509,511,516],{"type":48,"value":479},"There is only ONE skill: ",{"type":42,"tag":65,"props":481,"children":483},{"className":482},[],[484],{"type":48,"value":485},"open-prose",{"type":48,"value":487},". There are NO separate skills like ",{"type":42,"tag":65,"props":489,"children":491},{"className":490},[],[492],{"type":48,"value":493},"prose-run",{"type":48,"value":201},{"type":42,"tag":65,"props":496,"children":498},{"className":497},[],[499],{"type":48,"value":500},"prose-compile",{"type":48,"value":502},", or ",{"type":42,"tag":65,"props":504,"children":506},{"className":505},[],[507],{"type":48,"value":508},"prose-boot",{"type":48,"value":510},". All ",{"type":42,"tag":65,"props":512,"children":514},{"className":513},[],[515],{"type":48,"value":4},{"type":48,"value":517}," commands route through this single skill.",{"type":42,"tag":469,"props":519,"children":521},{"id":520},"resolving-example-references",[522],{"type":48,"value":523},"Resolving Example References",{"type":42,"tag":51,"props":525,"children":526},{},[527,539],{"type":42,"tag":81,"props":528,"children":529},{},[530,532,537],{"type":48,"value":531},"Examples are bundled in ",{"type":42,"tag":65,"props":533,"children":535},{"className":534},[],[536],{"type":48,"value":454},{"type":48,"value":538}," (same directory as this file).",{"type":48,"value":540}," When users reference examples by name (e.g., \"run the gastown example\"):",{"type":42,"tag":542,"props":543,"children":544},"ol",{},[545,557,562],{"type":42,"tag":98,"props":546,"children":547},{},[548,550,555],{"type":48,"value":549},"Read ",{"type":42,"tag":65,"props":551,"children":553},{"className":552},[],[554],{"type":48,"value":454},{"type":48,"value":556}," to list available files",{"type":42,"tag":98,"props":558,"children":559},{},[560],{"type":48,"value":561},"Match by partial name, keyword, or number",{"type":42,"tag":98,"props":563,"children":564},{},[565,567],{"type":48,"value":566},"Run with: ",{"type":42,"tag":65,"props":568,"children":570},{"className":569},[],[571],{"type":48,"value":572},"prose run examples\u002F28-gas-town.prose",{"type":42,"tag":51,"props":574,"children":575},{},[576],{"type":42,"tag":81,"props":577,"children":578},{},[579],{"type":48,"value":580},"Common examples by keyword:",{"type":42,"tag":300,"props":582,"children":583},{},[584,600],{"type":42,"tag":304,"props":585,"children":586},{},[587],{"type":42,"tag":308,"props":588,"children":589},{},[590,595],{"type":42,"tag":312,"props":591,"children":592},{},[593],{"type":48,"value":594},"Keyword",{"type":42,"tag":312,"props":596,"children":597},{},[598],{"type":48,"value":599},"File",{"type":42,"tag":323,"props":601,"children":602},{},[603,620,637,654,671,688,705],{"type":42,"tag":308,"props":604,"children":605},{},[606,611],{"type":42,"tag":330,"props":607,"children":608},{},[609],{"type":48,"value":610},"hello, hello world",{"type":42,"tag":330,"props":612,"children":613},{},[614],{"type":42,"tag":65,"props":615,"children":617},{"className":616},[],[618],{"type":48,"value":619},"examples\u002F01-hello-world.prose",{"type":42,"tag":308,"props":621,"children":622},{},[623,628],{"type":42,"tag":330,"props":624,"children":625},{},[626],{"type":48,"value":627},"gas town, gastown",{"type":42,"tag":330,"props":629,"children":630},{},[631],{"type":42,"tag":65,"props":632,"children":634},{"className":633},[],[635],{"type":48,"value":636},"examples\u002F28-gas-town.prose",{"type":42,"tag":308,"props":638,"children":639},{},[640,645],{"type":42,"tag":330,"props":641,"children":642},{},[643],{"type":48,"value":644},"captain, chair",{"type":42,"tag":330,"props":646,"children":647},{},[648],{"type":42,"tag":65,"props":649,"children":651},{"className":650},[],[652],{"type":48,"value":653},"examples\u002F29-captains-chair.prose",{"type":42,"tag":308,"props":655,"children":656},{},[657,662],{"type":42,"tag":330,"props":658,"children":659},{},[660],{"type":48,"value":661},"forge, browser",{"type":42,"tag":330,"props":663,"children":664},{},[665],{"type":42,"tag":65,"props":666,"children":668},{"className":667},[],[669],{"type":48,"value":670},"examples\u002F37-the-forge.prose",{"type":42,"tag":308,"props":672,"children":673},{},[674,679],{"type":42,"tag":330,"props":675,"children":676},{},[677],{"type":48,"value":678},"parallel",{"type":42,"tag":330,"props":680,"children":681},{},[682],{"type":42,"tag":65,"props":683,"children":685},{"className":684},[],[686],{"type":48,"value":687},"examples\u002F16-parallel-reviews.prose",{"type":42,"tag":308,"props":689,"children":690},{},[691,696],{"type":42,"tag":330,"props":692,"children":693},{},[694],{"type":48,"value":695},"pipeline",{"type":42,"tag":330,"props":697,"children":698},{},[699],{"type":42,"tag":65,"props":700,"children":702},{"className":701},[],[703],{"type":48,"value":704},"examples\u002F21-pipeline-operations.prose",{"type":42,"tag":308,"props":706,"children":707},{},[708,713],{"type":42,"tag":330,"props":709,"children":710},{},[711],{"type":48,"value":712},"error, retry",{"type":42,"tag":330,"props":714,"children":715},{},[716],{"type":42,"tag":65,"props":717,"children":719},{"className":718},[],[720],{"type":48,"value":721},"examples\u002F22-error-handling.prose",{"type":42,"tag":469,"props":723,"children":725},{"id":724},"remote-programs",[726],{"type":48,"value":727},"Remote Programs",{"type":42,"tag":51,"props":729,"children":730},{},[731,733,738],{"type":48,"value":732},"You can run any ",{"type":42,"tag":65,"props":734,"children":736},{"className":735},[],[737],{"type":48,"value":241},{"type":48,"value":739}," program from a URL or registry reference:",{"type":42,"tag":741,"props":742,"children":747},"pre",{"className":743,"code":744,"language":745,"meta":746,"style":746},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Direct URL — any fetchable URL works\nprose run https:\u002F\u002Fraw.githubusercontent.com\u002Fopenprose\u002Fprose\u002Fmain\u002Fskills\u002Fopen-prose\u002Fexamples\u002F48-habit-miner.prose\n\n# Registry shorthand — handle\u002Fslug resolves to p.prose.md\nprose run irl-danb\u002Fhabit-miner\nprose run alice\u002Fcode-review\n","bash","",[748],{"type":42,"tag":65,"props":749,"children":750},{"__ignoreMap":746},[751,763,783,793,802,819],{"type":42,"tag":752,"props":753,"children":756},"span",{"class":754,"line":755},"line",1,[757],{"type":42,"tag":752,"props":758,"children":760},{"style":759},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[761],{"type":48,"value":762},"# Direct URL — any fetchable URL works\n",{"type":42,"tag":752,"props":764,"children":766},{"class":754,"line":765},2,[767,772,778],{"type":42,"tag":752,"props":768,"children":770},{"style":769},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[771],{"type":48,"value":4},{"type":42,"tag":752,"props":773,"children":775},{"style":774},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[776],{"type":48,"value":777}," run",{"type":42,"tag":752,"props":779,"children":780},{"style":774},[781],{"type":48,"value":782}," https:\u002F\u002Fraw.githubusercontent.com\u002Fopenprose\u002Fprose\u002Fmain\u002Fskills\u002Fopen-prose\u002Fexamples\u002F48-habit-miner.prose\n",{"type":42,"tag":752,"props":784,"children":786},{"class":754,"line":785},3,[787],{"type":42,"tag":752,"props":788,"children":790},{"emptyLinePlaceholder":789},true,[791],{"type":48,"value":792},"\n",{"type":42,"tag":752,"props":794,"children":796},{"class":754,"line":795},4,[797],{"type":42,"tag":752,"props":798,"children":799},{"style":759},[800],{"type":48,"value":801},"# Registry shorthand — handle\u002Fslug resolves to p.prose.md\n",{"type":42,"tag":752,"props":803,"children":805},{"class":754,"line":804},5,[806,810,814],{"type":42,"tag":752,"props":807,"children":808},{"style":769},[809],{"type":48,"value":4},{"type":42,"tag":752,"props":811,"children":812},{"style":774},[813],{"type":48,"value":777},{"type":42,"tag":752,"props":815,"children":816},{"style":774},[817],{"type":48,"value":818}," irl-danb\u002Fhabit-miner\n",{"type":42,"tag":752,"props":820,"children":822},{"class":754,"line":821},6,[823,827,831],{"type":42,"tag":752,"props":824,"children":825},{"style":769},[826],{"type":48,"value":4},{"type":42,"tag":752,"props":828,"children":829},{"style":774},[830],{"type":48,"value":777},{"type":42,"tag":752,"props":832,"children":833},{"style":774},[834],{"type":48,"value":835}," alice\u002Fcode-review\n",{"type":42,"tag":51,"props":837,"children":838},{},[839],{"type":42,"tag":81,"props":840,"children":841},{},[842],{"type":48,"value":843},"Resolution rules:",{"type":42,"tag":300,"props":845,"children":846},{},[847,863],{"type":42,"tag":304,"props":848,"children":849},{},[850],{"type":42,"tag":308,"props":851,"children":852},{},[853,858],{"type":42,"tag":312,"props":854,"children":855},{},[856],{"type":48,"value":857},"Input",{"type":42,"tag":312,"props":859,"children":860},{},[861],{"type":48,"value":862},"Resolution",{"type":42,"tag":323,"props":864,"children":865},{},[866,892,918],{"type":42,"tag":308,"props":867,"children":868},{},[869,887],{"type":42,"tag":330,"props":870,"children":871},{},[872,874,880,881],{"type":48,"value":873},"Starts with ",{"type":42,"tag":65,"props":875,"children":877},{"className":876},[],[878],{"type":48,"value":879},"http:\u002F\u002F",{"type":48,"value":266},{"type":42,"tag":65,"props":882,"children":884},{"className":883},[],[885],{"type":48,"value":886},"https:\u002F\u002F",{"type":42,"tag":330,"props":888,"children":889},{},[890],{"type":48,"value":891},"Fetch directly from URL",{"type":42,"tag":308,"props":893,"children":894},{},[895,907],{"type":42,"tag":330,"props":896,"children":897},{},[898,900,905],{"type":48,"value":899},"Contains ",{"type":42,"tag":65,"props":901,"children":903},{"className":902},[],[904],{"type":48,"value":131},{"type":48,"value":906}," but no protocol",{"type":42,"tag":330,"props":908,"children":909},{},[910,912],{"type":48,"value":911},"Resolve to ",{"type":42,"tag":65,"props":913,"children":915},{"className":914},[],[916],{"type":48,"value":917},"https:\u002F\u002Fp.prose.md\u002F{path}",{"type":42,"tag":308,"props":919,"children":920},{},[921,926],{"type":42,"tag":330,"props":922,"children":923},{},[924],{"type":48,"value":925},"Otherwise",{"type":42,"tag":330,"props":927,"children":928},{},[929],{"type":48,"value":930},"Treat as local file path",{"type":42,"tag":51,"props":932,"children":933},{},[934],{"type":42,"tag":81,"props":935,"children":936},{},[937],{"type":48,"value":938},"Steps for remote programs:",{"type":42,"tag":542,"props":940,"children":941},{},[942,947,959],{"type":42,"tag":98,"props":943,"children":944},{},[945],{"type":48,"value":946},"Apply resolution rules above",{"type":42,"tag":98,"props":948,"children":949},{},[950,952,957],{"type":48,"value":951},"Fetch the ",{"type":42,"tag":65,"props":953,"children":955},{"className":954},[],[956],{"type":48,"value":241},{"type":48,"value":958}," content",{"type":42,"tag":98,"props":960,"children":961},{},[962],{"type":48,"value":963},"Load the VM and execute as normal",{"type":42,"tag":51,"props":965,"children":966},{},[967,969,975,977,982],{"type":48,"value":968},"This same resolution applies to ",{"type":42,"tag":65,"props":970,"children":972},{"className":971},[],[973],{"type":48,"value":974},"use",{"type":48,"value":976}," statements inside ",{"type":42,"tag":65,"props":978,"children":980},{"className":979},[],[981],{"type":48,"value":241},{"type":48,"value":983}," files:",{"type":42,"tag":741,"props":985,"children":988},{"className":986,"code":987,"language":4,"meta":746,"style":746},"language-prose shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","use \"https:\u002F\u002Fexample.com\u002Fmy-program.prose\"  # Direct URL\nuse \"alice\u002Fresearch\" as research             # Registry shorthand\n",[989],{"type":42,"tag":65,"props":990,"children":991},{"__ignoreMap":746},[992,1000],{"type":42,"tag":752,"props":993,"children":994},{"class":754,"line":755},[995],{"type":42,"tag":752,"props":996,"children":997},{},[998],{"type":48,"value":999},"use \"https:\u002F\u002Fexample.com\u002Fmy-program.prose\"  # Direct URL\n",{"type":42,"tag":752,"props":1001,"children":1002},{"class":754,"line":765},[1003],{"type":42,"tag":752,"props":1004,"children":1005},{},[1006],{"type":48,"value":1007},"use \"alice\u002Fresearch\" as research             # Registry shorthand\n",{"type":42,"tag":1009,"props":1010,"children":1011},"hr",{},[],{"type":42,"tag":87,"props":1013,"children":1015},{"id":1014},"file-locations",[1016],{"type":48,"value":1017},"File Locations",{"type":42,"tag":51,"props":1019,"children":1020},{},[1021,1026],{"type":42,"tag":81,"props":1022,"children":1023},{},[1024],{"type":48,"value":1025},"Do NOT search for OpenProse documentation files.",{"type":48,"value":1027}," All skill files are co-located with this SKILL.md file:",{"type":42,"tag":300,"props":1029,"children":1030},{},[1031,1051],{"type":42,"tag":304,"props":1032,"children":1033},{},[1034],{"type":42,"tag":308,"props":1035,"children":1036},{},[1037,1041,1046],{"type":42,"tag":312,"props":1038,"children":1039},{},[1040],{"type":48,"value":599},{"type":42,"tag":312,"props":1042,"children":1043},{},[1044],{"type":48,"value":1045},"Location",{"type":42,"tag":312,"props":1047,"children":1048},{},[1049],{"type":48,"value":1050},"Purpose",{"type":42,"tag":323,"props":1052,"children":1053},{},[1054,1075,1102,1123,1144,1165,1186,1206,1227,1248],{"type":42,"tag":308,"props":1055,"children":1056},{},[1057,1065,1070],{"type":42,"tag":330,"props":1058,"children":1059},{},[1060],{"type":42,"tag":65,"props":1061,"children":1063},{"className":1062},[],[1064],{"type":48,"value":70},{"type":42,"tag":330,"props":1066,"children":1067},{},[1068],{"type":48,"value":1069},"Same directory as this file",{"type":42,"tag":330,"props":1071,"children":1072},{},[1073],{"type":48,"value":1074},"VM semantics (load to run programs)",{"type":42,"tag":308,"props":1076,"children":1077},{},[1078,1086,1090],{"type":42,"tag":330,"props":1079,"children":1080},{},[1081],{"type":42,"tag":65,"props":1082,"children":1084},{"className":1083},[],[1085],{"type":48,"value":348},{"type":42,"tag":330,"props":1087,"children":1088},{},[1089],{"type":48,"value":1069},{"type":42,"tag":330,"props":1091,"children":1092},{},[1093,1095,1100],{"type":48,"value":1094},"Help, FAQs, onboarding (load for ",{"type":42,"tag":65,"props":1096,"children":1098},{"className":1097},[],[1099],{"type":48,"value":228},{"type":48,"value":1101},")",{"type":42,"tag":308,"props":1103,"children":1104},{},[1105,1114,1118],{"type":42,"tag":330,"props":1106,"children":1107},{},[1108],{"type":42,"tag":65,"props":1109,"children":1111},{"className":1110},[],[1112],{"type":48,"value":1113},"state\u002Ffilesystem.md",{"type":42,"tag":330,"props":1115,"children":1116},{},[1117],{"type":48,"value":1069},{"type":42,"tag":330,"props":1119,"children":1120},{},[1121],{"type":48,"value":1122},"File-based state (default, load with VM)",{"type":42,"tag":308,"props":1124,"children":1125},{},[1126,1135,1139],{"type":42,"tag":330,"props":1127,"children":1128},{},[1129],{"type":42,"tag":65,"props":1130,"children":1132},{"className":1131},[],[1133],{"type":48,"value":1134},"state\u002Fin-context.md",{"type":42,"tag":330,"props":1136,"children":1137},{},[1138],{"type":48,"value":1069},{"type":42,"tag":330,"props":1140,"children":1141},{},[1142],{"type":48,"value":1143},"In-context state (on request)",{"type":42,"tag":308,"props":1145,"children":1146},{},[1147,1156,1160],{"type":42,"tag":330,"props":1148,"children":1149},{},[1150],{"type":42,"tag":65,"props":1151,"children":1153},{"className":1152},[],[1154],{"type":48,"value":1155},"state\u002Fsqlite.md",{"type":42,"tag":330,"props":1157,"children":1158},{},[1159],{"type":48,"value":1069},{"type":42,"tag":330,"props":1161,"children":1162},{},[1163],{"type":48,"value":1164},"SQLite state (experimental, on request)",{"type":42,"tag":308,"props":1166,"children":1167},{},[1168,1177,1181],{"type":42,"tag":330,"props":1169,"children":1170},{},[1171],{"type":42,"tag":65,"props":1172,"children":1174},{"className":1173},[],[1175],{"type":48,"value":1176},"state\u002Fpostgres.md",{"type":42,"tag":330,"props":1178,"children":1179},{},[1180],{"type":48,"value":1069},{"type":42,"tag":330,"props":1182,"children":1183},{},[1184],{"type":48,"value":1185},"PostgreSQL state (experimental, on request)",{"type":42,"tag":308,"props":1187,"children":1188},{},[1189,1197,1201],{"type":42,"tag":330,"props":1190,"children":1191},{},[1192],{"type":42,"tag":65,"props":1193,"children":1195},{"className":1194},[],[1196],{"type":48,"value":413},{"type":42,"tag":330,"props":1198,"children":1199},{},[1200],{"type":48,"value":1069},{"type":42,"tag":330,"props":1202,"children":1203},{},[1204],{"type":48,"value":1205},"Compiler\u002Fvalidator (load only on request)",{"type":42,"tag":308,"props":1207,"children":1208},{},[1209,1218,1222],{"type":42,"tag":330,"props":1210,"children":1211},{},[1212],{"type":42,"tag":65,"props":1213,"children":1215},{"className":1214},[],[1216],{"type":48,"value":1217},"guidance\u002Fpatterns.md",{"type":42,"tag":330,"props":1219,"children":1220},{},[1221],{"type":48,"value":1069},{"type":42,"tag":330,"props":1223,"children":1224},{},[1225],{"type":48,"value":1226},"Best practices (load when writing .prose)",{"type":42,"tag":308,"props":1228,"children":1229},{},[1230,1239,1243],{"type":42,"tag":330,"props":1231,"children":1232},{},[1233],{"type":42,"tag":65,"props":1234,"children":1236},{"className":1235},[],[1237],{"type":48,"value":1238},"guidance\u002Fantipatterns.md",{"type":42,"tag":330,"props":1240,"children":1241},{},[1242],{"type":48,"value":1069},{"type":42,"tag":330,"props":1244,"children":1245},{},[1246],{"type":48,"value":1247},"What to avoid (load when writing .prose)",{"type":42,"tag":308,"props":1249,"children":1250},{},[1251,1259,1263],{"type":42,"tag":330,"props":1252,"children":1253},{},[1254],{"type":42,"tag":65,"props":1255,"children":1257},{"className":1256},[],[1258],{"type":48,"value":454},{"type":42,"tag":330,"props":1260,"children":1261},{},[1262],{"type":48,"value":1069},{"type":42,"tag":330,"props":1264,"children":1265},{},[1266],{"type":48,"value":1267},"37 example programs",{"type":42,"tag":51,"props":1269,"children":1270},{},[1271,1276],{"type":42,"tag":81,"props":1272,"children":1273},{},[1274],{"type":48,"value":1275},"User workspace files",{"type":48,"value":1277}," (these ARE in the user's project):",{"type":42,"tag":300,"props":1279,"children":1280},{},[1281,1300],{"type":42,"tag":304,"props":1282,"children":1283},{},[1284],{"type":42,"tag":308,"props":1285,"children":1286},{},[1287,1292,1296],{"type":42,"tag":312,"props":1288,"children":1289},{},[1290],{"type":48,"value":1291},"File\u002FDirectory",{"type":42,"tag":312,"props":1293,"children":1294},{},[1295],{"type":48,"value":1045},{"type":42,"tag":312,"props":1297,"children":1298},{},[1299],{"type":48,"value":1050},{"type":42,"tag":323,"props":1301,"children":1302},{},[1303,1325,1346,1367],{"type":42,"tag":308,"props":1304,"children":1305},{},[1306,1315,1320],{"type":42,"tag":330,"props":1307,"children":1308},{},[1309],{"type":42,"tag":65,"props":1310,"children":1312},{"className":1311},[],[1313],{"type":48,"value":1314},".prose\u002F.env",{"type":42,"tag":330,"props":1316,"children":1317},{},[1318],{"type":48,"value":1319},"User's working directory",{"type":42,"tag":330,"props":1321,"children":1322},{},[1323],{"type":48,"value":1324},"Config (key=value format)",{"type":42,"tag":308,"props":1326,"children":1327},{},[1328,1337,1341],{"type":42,"tag":330,"props":1329,"children":1330},{},[1331],{"type":42,"tag":65,"props":1332,"children":1334},{"className":1333},[],[1335],{"type":48,"value":1336},".prose\u002Fruns\u002F",{"type":42,"tag":330,"props":1338,"children":1339},{},[1340],{"type":48,"value":1319},{"type":42,"tag":330,"props":1342,"children":1343},{},[1344],{"type":48,"value":1345},"Runtime state for file-based mode",{"type":42,"tag":308,"props":1347,"children":1348},{},[1349,1358,1362],{"type":42,"tag":330,"props":1350,"children":1351},{},[1352],{"type":42,"tag":65,"props":1353,"children":1355},{"className":1354},[],[1356],{"type":48,"value":1357},".prose\u002Fagents\u002F",{"type":42,"tag":330,"props":1359,"children":1360},{},[1361],{"type":48,"value":1319},{"type":42,"tag":330,"props":1363,"children":1364},{},[1365],{"type":48,"value":1366},"Project-scoped persistent agents",{"type":42,"tag":308,"props":1368,"children":1369},{},[1370,1381,1386],{"type":42,"tag":330,"props":1371,"children":1372},{},[1373,1379],{"type":42,"tag":65,"props":1374,"children":1376},{"className":1375},[],[1377],{"type":48,"value":1378},"*.prose",{"type":48,"value":1380}," files",{"type":42,"tag":330,"props":1382,"children":1383},{},[1384],{"type":48,"value":1385},"User's project",{"type":42,"tag":330,"props":1387,"children":1388},{},[1389],{"type":48,"value":1390},"User-created programs to execute",{"type":42,"tag":51,"props":1392,"children":1393},{},[1394,1399],{"type":42,"tag":81,"props":1395,"children":1396},{},[1397],{"type":48,"value":1398},"User-level files",{"type":48,"value":1400}," (in user's home directory, shared across all projects):",{"type":42,"tag":300,"props":1402,"children":1403},{},[1404,1422],{"type":42,"tag":304,"props":1405,"children":1406},{},[1407],{"type":42,"tag":308,"props":1408,"children":1409},{},[1410,1414,1418],{"type":42,"tag":312,"props":1411,"children":1412},{},[1413],{"type":48,"value":1291},{"type":42,"tag":312,"props":1415,"children":1416},{},[1417],{"type":48,"value":1045},{"type":42,"tag":312,"props":1419,"children":1420},{},[1421],{"type":48,"value":1050},{"type":42,"tag":323,"props":1423,"children":1424},{},[1425],{"type":42,"tag":308,"props":1426,"children":1427},{},[1428,1437,1442],{"type":42,"tag":330,"props":1429,"children":1430},{},[1431],{"type":42,"tag":65,"props":1432,"children":1434},{"className":1433},[],[1435],{"type":48,"value":1436},"~\u002F.prose\u002Fagents\u002F",{"type":42,"tag":330,"props":1438,"children":1439},{},[1440],{"type":48,"value":1441},"User's home dir",{"type":42,"tag":330,"props":1443,"children":1444},{},[1445],{"type":48,"value":1446},"User-scoped persistent agents (cross-project)",{"type":42,"tag":51,"props":1448,"children":1449},{},[1450,1452,1457,1458,1463],{"type":48,"value":1451},"When you need to read ",{"type":42,"tag":65,"props":1453,"children":1455},{"className":1454},[],[1456],{"type":48,"value":70},{"type":48,"value":266},{"type":42,"tag":65,"props":1459,"children":1461},{"className":1460},[],[1462],{"type":48,"value":413},{"type":48,"value":1464},", read them from the same directory where you found this SKILL.md file. Never search the user's workspace for these files.",{"type":42,"tag":1009,"props":1466,"children":1467},{},[],{"type":42,"tag":87,"props":1469,"children":1471},{"id":1470},"core-documentation",[1472],{"type":48,"value":1473},"Core Documentation",{"type":42,"tag":300,"props":1475,"children":1476},{},[1477,1496],{"type":42,"tag":304,"props":1478,"children":1479},{},[1480],{"type":42,"tag":308,"props":1481,"children":1482},{},[1483,1487,1491],{"type":42,"tag":312,"props":1484,"children":1485},{},[1486],{"type":48,"value":599},{"type":42,"tag":312,"props":1488,"children":1489},{},[1490],{"type":48,"value":1050},{"type":42,"tag":312,"props":1492,"children":1493},{},[1494],{"type":48,"value":1495},"When to Load",{"type":42,"tag":323,"props":1497,"children":1498},{},[1499,1520,1541,1570,1598,1626,1652,1680],{"type":42,"tag":308,"props":1500,"children":1501},{},[1502,1510,1515],{"type":42,"tag":330,"props":1503,"children":1504},{},[1505],{"type":42,"tag":65,"props":1506,"children":1508},{"className":1507},[],[1509],{"type":48,"value":70},{"type":42,"tag":330,"props":1511,"children":1512},{},[1513],{"type":48,"value":1514},"VM \u002F Interpreter",{"type":42,"tag":330,"props":1516,"children":1517},{},[1518],{"type":48,"value":1519},"Always load to run programs",{"type":42,"tag":308,"props":1521,"children":1522},{},[1523,1531,1536],{"type":42,"tag":330,"props":1524,"children":1525},{},[1526],{"type":42,"tag":65,"props":1527,"children":1529},{"className":1528},[],[1530],{"type":48,"value":1113},{"type":42,"tag":330,"props":1532,"children":1533},{},[1534],{"type":48,"value":1535},"File-based state",{"type":42,"tag":330,"props":1537,"children":1538},{},[1539],{"type":48,"value":1540},"Load with VM (default)",{"type":42,"tag":308,"props":1542,"children":1543},{},[1544,1552,1557],{"type":42,"tag":330,"props":1545,"children":1546},{},[1547],{"type":42,"tag":65,"props":1548,"children":1550},{"className":1549},[],[1551],{"type":48,"value":1134},{"type":42,"tag":330,"props":1553,"children":1554},{},[1555],{"type":48,"value":1556},"In-context state",{"type":42,"tag":330,"props":1558,"children":1559},{},[1560,1562,1568],{"type":48,"value":1561},"Only if user requests ",{"type":42,"tag":65,"props":1563,"children":1565},{"className":1564},[],[1566],{"type":48,"value":1567},"--in-context",{"type":48,"value":1569}," or says \"use in-context state\"",{"type":42,"tag":308,"props":1571,"children":1572},{},[1573,1581,1586],{"type":42,"tag":330,"props":1574,"children":1575},{},[1576],{"type":42,"tag":65,"props":1577,"children":1579},{"className":1578},[],[1580],{"type":48,"value":1155},{"type":42,"tag":330,"props":1582,"children":1583},{},[1584],{"type":48,"value":1585},"SQLite state (experimental)",{"type":42,"tag":330,"props":1587,"children":1588},{},[1589,1590,1596],{"type":48,"value":1561},{"type":42,"tag":65,"props":1591,"children":1593},{"className":1592},[],[1594],{"type":48,"value":1595},"--state=sqlite",{"type":48,"value":1597}," (requires sqlite3 CLI)",{"type":42,"tag":308,"props":1599,"children":1600},{},[1601,1609,1614],{"type":42,"tag":330,"props":1602,"children":1603},{},[1604],{"type":42,"tag":65,"props":1605,"children":1607},{"className":1606},[],[1608],{"type":48,"value":1176},{"type":42,"tag":330,"props":1610,"children":1611},{},[1612],{"type":48,"value":1613},"PostgreSQL state (experimental)",{"type":42,"tag":330,"props":1615,"children":1616},{},[1617,1618,1624],{"type":48,"value":1561},{"type":42,"tag":65,"props":1619,"children":1621},{"className":1620},[],[1622],{"type":48,"value":1623},"--state=postgres",{"type":48,"value":1625}," (requires psql + PostgreSQL)",{"type":42,"tag":308,"props":1627,"children":1628},{},[1629,1637,1642],{"type":42,"tag":330,"props":1630,"children":1631},{},[1632],{"type":42,"tag":65,"props":1633,"children":1635},{"className":1634},[],[1636],{"type":48,"value":413},{"type":42,"tag":330,"props":1638,"children":1639},{},[1640],{"type":48,"value":1641},"Compiler \u002F Validator",{"type":42,"tag":330,"props":1643,"children":1644},{},[1645,1650],{"type":42,"tag":81,"props":1646,"children":1647},{},[1648],{"type":48,"value":1649},"Only",{"type":48,"value":1651}," when user asks to compile or validate",{"type":42,"tag":308,"props":1653,"children":1654},{},[1655,1663,1668],{"type":42,"tag":330,"props":1656,"children":1657},{},[1658],{"type":42,"tag":65,"props":1659,"children":1661},{"className":1660},[],[1662],{"type":48,"value":1217},{"type":42,"tag":330,"props":1664,"children":1665},{},[1666],{"type":48,"value":1667},"Best practices",{"type":42,"tag":330,"props":1669,"children":1670},{},[1671,1673,1678],{"type":48,"value":1672},"Load when ",{"type":42,"tag":81,"props":1674,"children":1675},{},[1676],{"type":48,"value":1677},"writing",{"type":48,"value":1679}," new .prose files",{"type":42,"tag":308,"props":1681,"children":1682},{},[1683,1691,1696],{"type":42,"tag":330,"props":1684,"children":1685},{},[1686],{"type":42,"tag":65,"props":1687,"children":1689},{"className":1688},[],[1690],{"type":48,"value":1238},{"type":42,"tag":330,"props":1692,"children":1693},{},[1694],{"type":48,"value":1695},"What to avoid",{"type":42,"tag":330,"props":1697,"children":1698},{},[1699,1700,1704],{"type":48,"value":1672},{"type":42,"tag":81,"props":1701,"children":1702},{},[1703],{"type":48,"value":1677},{"type":48,"value":1679},{"type":42,"tag":469,"props":1706,"children":1708},{"id":1707},"authoring-guidance",[1709],{"type":48,"value":1710},"Authoring Guidance",{"type":42,"tag":51,"props":1712,"children":1713},{},[1714,1716,1721,1723,1728],{"type":48,"value":1715},"When the user asks you to ",{"type":42,"tag":81,"props":1717,"children":1718},{},[1719],{"type":48,"value":1720},"write or create",{"type":48,"value":1722}," a new ",{"type":42,"tag":65,"props":1724,"children":1726},{"className":1725},[],[1727],{"type":48,"value":241},{"type":48,"value":1729}," file, load the guidance files:",{"type":42,"tag":94,"props":1731,"children":1732},{},[1733,1743],{"type":42,"tag":98,"props":1734,"children":1735},{},[1736,1741],{"type":42,"tag":65,"props":1737,"children":1739},{"className":1738},[],[1740],{"type":48,"value":1217},{"type":48,"value":1742}," — Proven patterns for robust, efficient programs",{"type":42,"tag":98,"props":1744,"children":1745},{},[1746,1751],{"type":42,"tag":65,"props":1747,"children":1749},{"className":1748},[],[1750],{"type":48,"value":1238},{"type":48,"value":1752}," — Common mistakes to avoid",{"type":42,"tag":51,"props":1754,"children":1755},{},[1756,1758,1763],{"type":48,"value":1757},"Do ",{"type":42,"tag":81,"props":1759,"children":1760},{},[1761],{"type":48,"value":1762},"not",{"type":48,"value":1764}," load these when running or compiling—they're for authoring only.",{"type":42,"tag":469,"props":1766,"children":1768},{"id":1767},"state-modes",[1769],{"type":48,"value":1770},"State Modes",{"type":42,"tag":51,"props":1772,"children":1773},{},[1774],{"type":48,"value":1775},"OpenProse supports three state management approaches:",{"type":42,"tag":300,"props":1777,"children":1778},{},[1779,1800],{"type":42,"tag":304,"props":1780,"children":1781},{},[1782],{"type":42,"tag":308,"props":1783,"children":1784},{},[1785,1790,1795],{"type":42,"tag":312,"props":1786,"children":1787},{},[1788],{"type":48,"value":1789},"Mode",{"type":42,"tag":312,"props":1791,"children":1792},{},[1793],{"type":48,"value":1794},"When to Use",{"type":42,"tag":312,"props":1796,"children":1797},{},[1798],{"type":48,"value":1799},"State Location",{"type":42,"tag":323,"props":1801,"children":1802},{},[1803,1831,1852,1879],{"type":42,"tag":308,"props":1804,"children":1805},{},[1806,1816,1821],{"type":42,"tag":330,"props":1807,"children":1808},{},[1809,1814],{"type":42,"tag":81,"props":1810,"children":1811},{},[1812],{"type":48,"value":1813},"filesystem",{"type":48,"value":1815}," (default)",{"type":42,"tag":330,"props":1817,"children":1818},{},[1819],{"type":48,"value":1820},"Complex programs, resumption needed, debugging",{"type":42,"tag":330,"props":1822,"children":1823},{},[1824,1830],{"type":42,"tag":65,"props":1825,"children":1827},{"className":1826},[],[1828],{"type":48,"value":1829},".prose\u002Fruns\u002F{id}\u002F",{"type":48,"value":1380},{"type":42,"tag":308,"props":1832,"children":1833},{},[1834,1842,1847],{"type":42,"tag":330,"props":1835,"children":1836},{},[1837],{"type":42,"tag":81,"props":1838,"children":1839},{},[1840],{"type":48,"value":1841},"in-context",{"type":42,"tag":330,"props":1843,"children":1844},{},[1845],{"type":48,"value":1846},"Simple programs (\u003C30 statements), no persistence needed",{"type":42,"tag":330,"props":1848,"children":1849},{},[1850],{"type":48,"value":1851},"Conversation history",{"type":42,"tag":308,"props":1853,"children":1854},{},[1855,1865,1870],{"type":42,"tag":330,"props":1856,"children":1857},{},[1858,1863],{"type":42,"tag":81,"props":1859,"children":1860},{},[1861],{"type":48,"value":1862},"sqlite",{"type":48,"value":1864}," (experimental)",{"type":42,"tag":330,"props":1866,"children":1867},{},[1868],{"type":48,"value":1869},"Queryable state, atomic transactions, flexible schema",{"type":42,"tag":330,"props":1871,"children":1872},{},[1873],{"type":42,"tag":65,"props":1874,"children":1876},{"className":1875},[],[1877],{"type":48,"value":1878},".prose\u002Fruns\u002F{id}\u002Fstate.db",{"type":42,"tag":308,"props":1880,"children":1881},{},[1882,1891,1896],{"type":42,"tag":330,"props":1883,"children":1884},{},[1885,1890],{"type":42,"tag":81,"props":1886,"children":1887},{},[1888],{"type":48,"value":1889},"postgres",{"type":48,"value":1864},{"type":42,"tag":330,"props":1892,"children":1893},{},[1894],{"type":48,"value":1895},"True concurrent writes, external integrations, team collaboration",{"type":42,"tag":330,"props":1897,"children":1898},{},[1899],{"type":48,"value":1900},"PostgreSQL database",{"type":42,"tag":51,"props":1902,"children":1903},{},[1904,1909,1911,1916,1918,1923],{"type":42,"tag":81,"props":1905,"children":1906},{},[1907],{"type":48,"value":1908},"Default behavior:",{"type":48,"value":1910}," When loading ",{"type":42,"tag":65,"props":1912,"children":1914},{"className":1913},[],[1915],{"type":48,"value":70},{"type":48,"value":1917},", also load ",{"type":42,"tag":65,"props":1919,"children":1921},{"className":1920},[],[1922],{"type":48,"value":1113},{"type":48,"value":1924},". This is the recommended mode for most programs.",{"type":42,"tag":51,"props":1926,"children":1927},{},[1928,1933,1935,1940,1942,1947],{"type":42,"tag":81,"props":1929,"children":1930},{},[1931],{"type":48,"value":1932},"Switching modes:",{"type":48,"value":1934}," If the user says \"use in-context state\" or passes ",{"type":42,"tag":65,"props":1936,"children":1938},{"className":1937},[],[1939],{"type":48,"value":1567},{"type":48,"value":1941},", load ",{"type":42,"tag":65,"props":1943,"children":1945},{"className":1944},[],[1946],{"type":48,"value":1134},{"type":48,"value":1948}," instead.",{"type":42,"tag":51,"props":1950,"children":1951},{},[1952,1957,1959,1964,1966,1971,1973,1979,1981,1986],{"type":42,"tag":81,"props":1953,"children":1954},{},[1955],{"type":48,"value":1956},"Experimental SQLite mode:",{"type":48,"value":1958}," If the user passes ",{"type":42,"tag":65,"props":1960,"children":1962},{"className":1961},[],[1963],{"type":48,"value":1595},{"type":48,"value":1965}," or says \"use sqlite state\", load ",{"type":42,"tag":65,"props":1967,"children":1969},{"className":1968},[],[1970],{"type":48,"value":1155},{"type":48,"value":1972},". This mode requires ",{"type":42,"tag":65,"props":1974,"children":1976},{"className":1975},[],[1977],{"type":48,"value":1978},"sqlite3",{"type":48,"value":1980}," CLI to be installed (pre-installed on macOS, available via package managers on Linux\u002FWindows). If ",{"type":42,"tag":65,"props":1982,"children":1984},{"className":1983},[],[1985],{"type":48,"value":1978},{"type":48,"value":1987}," is unavailable, warn the user and fall back to filesystem state.",{"type":42,"tag":51,"props":1989,"children":1990},{},[1991,1996,1997,2002],{"type":42,"tag":81,"props":1992,"children":1993},{},[1994],{"type":48,"value":1995},"Experimental PostgreSQL mode:",{"type":48,"value":1958},{"type":42,"tag":65,"props":1998,"children":2000},{"className":1999},[],[2001],{"type":48,"value":1623},{"type":48,"value":2003}," or says \"use postgres state\":",{"type":42,"tag":51,"props":2005,"children":2006},{},[2007,2012,2014,2020,2022,2027],{"type":42,"tag":81,"props":2008,"children":2009},{},[2010],{"type":48,"value":2011},"⚠️ Security Note:",{"type":48,"value":2013}," Database credentials in ",{"type":42,"tag":65,"props":2015,"children":2017},{"className":2016},[],[2018],{"type":48,"value":2019},"OPENPROSE_POSTGRES_URL",{"type":48,"value":2021}," are passed to subagent sessions and visible in logs. Advise users to use a dedicated database with limited-privilege credentials. See ",{"type":42,"tag":65,"props":2023,"children":2025},{"className":2024},[],[2026],{"type":48,"value":1176},{"type":48,"value":2028}," for secure setup guidance.",{"type":42,"tag":542,"props":2030,"children":2031},{},[2032,2117,2178,2196],{"type":42,"tag":98,"props":2033,"children":2034},{},[2035,2040],{"type":42,"tag":81,"props":2036,"children":2037},{},[2038],{"type":48,"value":2039},"Check for connection configuration first:",{"type":42,"tag":741,"props":2041,"children":2043},{"className":743,"code":2042,"language":745,"meta":746,"style":746},"# Check .prose\u002F.env for OPENPROSE_POSTGRES_URL\ncat .prose\u002F.env 2>\u002Fdev\u002Fnull | grep OPENPROSE_POSTGRES_URL\n# Or check environment variable\necho $OPENPROSE_POSTGRES_URL\n",[2044],{"type":42,"tag":65,"props":2045,"children":2046},{"__ignoreMap":746},[2047,2055,2094,2102],{"type":42,"tag":752,"props":2048,"children":2049},{"class":754,"line":755},[2050],{"type":42,"tag":752,"props":2051,"children":2052},{"style":759},[2053],{"type":48,"value":2054},"# Check .prose\u002F.env for OPENPROSE_POSTGRES_URL\n",{"type":42,"tag":752,"props":2056,"children":2057},{"class":754,"line":765},[2058,2063,2068,2074,2079,2084,2089],{"type":42,"tag":752,"props":2059,"children":2060},{"style":769},[2061],{"type":48,"value":2062},"cat",{"type":42,"tag":752,"props":2064,"children":2065},{"style":774},[2066],{"type":48,"value":2067}," .prose\u002F.env",{"type":42,"tag":752,"props":2069,"children":2071},{"style":2070},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[2072],{"type":48,"value":2073}," 2>",{"type":42,"tag":752,"props":2075,"children":2076},{"style":774},[2077],{"type":48,"value":2078},"\u002Fdev\u002Fnull",{"type":42,"tag":752,"props":2080,"children":2081},{"style":2070},[2082],{"type":48,"value":2083}," |",{"type":42,"tag":752,"props":2085,"children":2086},{"style":769},[2087],{"type":48,"value":2088}," grep",{"type":42,"tag":752,"props":2090,"children":2091},{"style":774},[2092],{"type":48,"value":2093}," OPENPROSE_POSTGRES_URL\n",{"type":42,"tag":752,"props":2095,"children":2096},{"class":754,"line":785},[2097],{"type":42,"tag":752,"props":2098,"children":2099},{"style":759},[2100],{"type":48,"value":2101},"# Or check environment variable\n",{"type":42,"tag":752,"props":2103,"children":2104},{"class":754,"line":795},[2105,2111],{"type":42,"tag":752,"props":2106,"children":2108},{"style":2107},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[2109],{"type":48,"value":2110},"echo",{"type":42,"tag":752,"props":2112,"children":2114},{"style":2113},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[2115],{"type":48,"value":2116}," $OPENPROSE_POSTGRES_URL\n",{"type":42,"tag":98,"props":2118,"children":2119},{},[2120,2125],{"type":42,"tag":81,"props":2121,"children":2122},{},[2123],{"type":48,"value":2124},"If connection string exists, verify connectivity:",{"type":42,"tag":741,"props":2126,"children":2128},{"className":743,"code":2127,"language":745,"meta":746,"style":746},"psql \"$OPENPROSE_POSTGRES_URL\" -c \"SELECT 1\" 2>&1\n",[2129],{"type":42,"tag":65,"props":2130,"children":2131},{"__ignoreMap":746},[2132],{"type":42,"tag":752,"props":2133,"children":2134},{"class":754,"line":755},[2135,2140,2145,2150,2155,2160,2164,2169,2173],{"type":42,"tag":752,"props":2136,"children":2137},{"style":769},[2138],{"type":48,"value":2139},"psql",{"type":42,"tag":752,"props":2141,"children":2142},{"style":2070},[2143],{"type":48,"value":2144}," \"",{"type":42,"tag":752,"props":2146,"children":2147},{"style":2113},[2148],{"type":48,"value":2149},"$OPENPROSE_POSTGRES_URL",{"type":42,"tag":752,"props":2151,"children":2152},{"style":2070},[2153],{"type":48,"value":2154},"\"",{"type":42,"tag":752,"props":2156,"children":2157},{"style":774},[2158],{"type":48,"value":2159}," -c",{"type":42,"tag":752,"props":2161,"children":2162},{"style":2070},[2163],{"type":48,"value":2144},{"type":42,"tag":752,"props":2165,"children":2166},{"style":774},[2167],{"type":48,"value":2168},"SELECT 1",{"type":42,"tag":752,"props":2170,"children":2171},{"style":2070},[2172],{"type":48,"value":2154},{"type":42,"tag":752,"props":2174,"children":2175},{"style":2070},[2176],{"type":48,"value":2177}," 2>&1\n",{"type":42,"tag":98,"props":2179,"children":2180},{},[2181,2186],{"type":42,"tag":81,"props":2182,"children":2183},{},[2184],{"type":48,"value":2185},"If not configured or connection fails, advise the user:",{"type":42,"tag":741,"props":2187,"children":2191},{"className":2188,"code":2190,"language":48},[2189],"language-text","⚠️  PostgreSQL state requires a connection URL.\n\nTo configure:\n1. Set up a PostgreSQL database (Docker, local, or cloud)\n2. Add connection string to .prose\u002F.env:\n\n   echo \"OPENPROSE_POSTGRES_URL=postgresql:\u002F\u002Fuser:pass@localhost:5432\u002Fprose\" >> .prose\u002F.env\n\nQuick Docker setup:\n   docker run -d --name prose-pg -e POSTGRES_DB=prose -e POSTGRES_HOST_AUTH_METHOD=trust -p 5432:5432 postgres:16\n   echo \"OPENPROSE_POSTGRES_URL=postgresql:\u002F\u002Fpostgres@localhost:5432\u002Fprose\" >> .prose\u002F.env\n\nSee state\u002Fpostgres.md for detailed setup options.\n",[2192],{"type":42,"tag":65,"props":2193,"children":2194},{"__ignoreMap":746},[2195],{"type":48,"value":2190},{"type":42,"tag":98,"props":2197,"children":2198},{},[2199],{"type":42,"tag":81,"props":2200,"children":2201},{},[2202,2204],{"type":48,"value":2203},"Only after successful connection check, load ",{"type":42,"tag":65,"props":2205,"children":2207},{"className":2206},[],[2208],{"type":48,"value":1176},{"type":42,"tag":51,"props":2210,"children":2211},{},[2212,2214,2219],{"type":48,"value":2213},"This mode requires both ",{"type":42,"tag":65,"props":2215,"children":2217},{"className":2216},[],[2218],{"type":48,"value":2139},{"type":48,"value":2220}," CLI and a running PostgreSQL server. If either is unavailable, warn and offer fallback to filesystem state.",{"type":42,"tag":51,"props":2222,"children":2223},{},[2224,2229,2231,2236,2238,2244],{"type":42,"tag":81,"props":2225,"children":2226},{},[2227],{"type":48,"value":2228},"Context warning:",{"type":48,"value":2230}," ",{"type":42,"tag":65,"props":2232,"children":2234},{"className":2233},[],[2235],{"type":48,"value":413},{"type":48,"value":2237}," is large. Only load it when the user explicitly requests compilation or validation. After compiling, recommend ",{"type":42,"tag":65,"props":2239,"children":2241},{"className":2240},[],[2242],{"type":48,"value":2243},"\u002Fcompact",{"type":48,"value":2245}," or a new session before running—don't keep both docs in context.",{"type":42,"tag":87,"props":2247,"children":2249},{"id":2248},"examples",[2250],{"type":48,"value":2251},"Examples",{"type":42,"tag":51,"props":2253,"children":2254},{},[2255,2257,2262],{"type":48,"value":2256},"The ",{"type":42,"tag":65,"props":2258,"children":2260},{"className":2259},[],[2261],{"type":48,"value":454},{"type":48,"value":2263}," directory contains 37 example programs:",{"type":42,"tag":94,"props":2265,"children":2266},{},[2267,2277,2287,2297,2307,2317,2327,2337,2347,2357,2367],{"type":42,"tag":98,"props":2268,"children":2269},{},[2270,2275],{"type":42,"tag":81,"props":2271,"children":2272},{},[2273],{"type":48,"value":2274},"01-08",{"type":48,"value":2276},": Basics (hello world, research, code review, debugging)",{"type":42,"tag":98,"props":2278,"children":2279},{},[2280,2285],{"type":42,"tag":81,"props":2281,"children":2282},{},[2283],{"type":48,"value":2284},"09-12",{"type":48,"value":2286},": Agents and skills",{"type":42,"tag":98,"props":2288,"children":2289},{},[2290,2295],{"type":42,"tag":81,"props":2291,"children":2292},{},[2293],{"type":48,"value":2294},"13-15",{"type":48,"value":2296},": Variables and composition",{"type":42,"tag":98,"props":2298,"children":2299},{},[2300,2305],{"type":42,"tag":81,"props":2301,"children":2302},{},[2303],{"type":48,"value":2304},"16-19",{"type":48,"value":2306},": Parallel execution",{"type":42,"tag":98,"props":2308,"children":2309},{},[2310,2315],{"type":42,"tag":81,"props":2311,"children":2312},{},[2313],{"type":48,"value":2314},"20-21",{"type":48,"value":2316},": Loops and pipelines",{"type":42,"tag":98,"props":2318,"children":2319},{},[2320,2325],{"type":42,"tag":81,"props":2321,"children":2322},{},[2323],{"type":48,"value":2324},"22-23",{"type":48,"value":2326},": Error handling",{"type":42,"tag":98,"props":2328,"children":2329},{},[2330,2335],{"type":42,"tag":81,"props":2331,"children":2332},{},[2333],{"type":48,"value":2334},"24-27",{"type":48,"value":2336},": Advanced (choice, conditionals, blocks, interpolation)",{"type":42,"tag":98,"props":2338,"children":2339},{},[2340,2345],{"type":42,"tag":81,"props":2341,"children":2342},{},[2343],{"type":48,"value":2344},"28",{"type":48,"value":2346},": Gas Town (multi-agent orchestration)",{"type":42,"tag":98,"props":2348,"children":2349},{},[2350,2355],{"type":42,"tag":81,"props":2351,"children":2352},{},[2353],{"type":48,"value":2354},"29-31",{"type":48,"value":2356},": Captain's chair pattern (persistent orchestrator)",{"type":42,"tag":98,"props":2358,"children":2359},{},[2360,2365],{"type":42,"tag":81,"props":2361,"children":2362},{},[2363],{"type":48,"value":2364},"33-36",{"type":48,"value":2366},": Production workflows (PR auto-fix, content pipeline, feature factory, bug hunter)",{"type":42,"tag":98,"props":2368,"children":2369},{},[2370,2375],{"type":42,"tag":81,"props":2371,"children":2372},{},[2373],{"type":48,"value":2374},"37",{"type":48,"value":2376},": The Forge (build a browser from scratch)",{"type":42,"tag":51,"props":2378,"children":2379},{},[2380,2382,2388,2390,2396],{"type":48,"value":2381},"Start with ",{"type":42,"tag":65,"props":2383,"children":2385},{"className":2384},[],[2386],{"type":48,"value":2387},"01-hello-world.prose",{"type":48,"value":2389}," or try ",{"type":42,"tag":65,"props":2391,"children":2393},{"className":2392},[],[2394],{"type":48,"value":2395},"37-the-forge.prose",{"type":48,"value":2397}," to watch AI build a web browser.",{"type":42,"tag":87,"props":2399,"children":2401},{"id":2400},"execution",[2402],{"type":48,"value":2403},"Execution",{"type":42,"tag":51,"props":2405,"children":2406},{},[2407],{"type":48,"value":2408},"When first invoking the OpenProse VM in a session, display this banner:",{"type":42,"tag":741,"props":2410,"children":2413},{"className":2411,"code":2412,"language":48},[2189],"┌─────────────────────────────────────┐\n│         ◇ OpenProse VM ◇            │\n│       A new kind of computer        │\n└─────────────────────────────────────┘\n",[2414],{"type":42,"tag":65,"props":2415,"children":2416},{"__ignoreMap":746},[2417],{"type":48,"value":2412},{"type":42,"tag":51,"props":2419,"children":2420},{},[2421,2423,2428],{"type":48,"value":2422},"To execute a ",{"type":42,"tag":65,"props":2424,"children":2426},{"className":2425},[],[2427],{"type":48,"value":241},{"type":48,"value":2429}," file, you become the OpenProse VM:",{"type":42,"tag":542,"props":2431,"children":2432},{},[2433,2447,2457,2475,2503],{"type":42,"tag":98,"props":2434,"children":2435},{},[2436,2445],{"type":42,"tag":81,"props":2437,"children":2438},{},[2439,2440],{"type":48,"value":549},{"type":42,"tag":65,"props":2441,"children":2443},{"className":2442},[],[2444],{"type":48,"value":70},{"type":48,"value":2446}," — this document defines how you embody the VM",{"type":42,"tag":98,"props":2448,"children":2449},{},[2450,2455],{"type":42,"tag":81,"props":2451,"children":2452},{},[2453],{"type":48,"value":2454},"You ARE the VM",{"type":48,"value":2456}," — your conversation is its memory, your tools are its instructions",{"type":42,"tag":98,"props":2458,"children":2459},{},[2460,2465,2467,2473],{"type":42,"tag":81,"props":2461,"children":2462},{},[2463],{"type":48,"value":2464},"Spawn sessions",{"type":48,"value":2466}," — each ",{"type":42,"tag":65,"props":2468,"children":2470},{"className":2469},[],[2471],{"type":48,"value":2472},"session",{"type":48,"value":2474}," statement triggers a Task tool call",{"type":42,"tag":98,"props":2476,"children":2477},{},[2478,2483,2485,2490,2491,2496,2497,2502],{"type":42,"tag":81,"props":2479,"children":2480},{},[2481],{"type":48,"value":2482},"Narrate state",{"type":48,"value":2484}," — use the narration protocol to track execution (",{"type":42,"tag":752,"props":2486,"children":2487},{},[2488],{"type":48,"value":2489},"Position",{"type":48,"value":201},{"type":42,"tag":752,"props":2492,"children":2493},{},[2494],{"type":48,"value":2495},"Binding",{"type":48,"value":201},{"type":42,"tag":752,"props":2498,"children":2499},{},[2500],{"type":48,"value":2501},"Success",{"type":48,"value":230},{"type":42,"tag":98,"props":2504,"children":2505},{},[2506,2511,2513,2519],{"type":42,"tag":81,"props":2507,"children":2508},{},[2509],{"type":48,"value":2510},"Evaluate intelligently",{"type":48,"value":2512}," — ",{"type":42,"tag":65,"props":2514,"children":2516},{"className":2515},[],[2517],{"type":48,"value":2518},"**...**",{"type":48,"value":2520}," markers require your judgment",{"type":42,"tag":87,"props":2522,"children":2524},{"id":2523},"help-faqs",[2525],{"type":48,"value":2526},"Help & FAQs",{"type":42,"tag":51,"props":2528,"children":2529},{},[2530,2532,2537],{"type":48,"value":2531},"For syntax reference, FAQs, and getting started guidance, load ",{"type":42,"tag":65,"props":2533,"children":2535},{"className":2534},[],[2536],{"type":48,"value":348},{"type":48,"value":2538},".",{"type":42,"tag":1009,"props":2540,"children":2541},{},[],{"type":42,"tag":87,"props":2543,"children":2545},{"id":2544},"migration-prose-update",[2546,2548,2553],{"type":48,"value":2547},"Migration (",{"type":42,"tag":65,"props":2549,"children":2551},{"className":2550},[],[2552],{"type":48,"value":221},{"type":48,"value":1101},{"type":42,"tag":51,"props":2555,"children":2556},{},[2557,2558,2563],{"type":48,"value":290},{"type":42,"tag":65,"props":2559,"children":2561},{"className":2560},[],[2562],{"type":48,"value":221},{"type":48,"value":2564},", check for legacy file structures and migrate them to the current format.",{"type":42,"tag":469,"props":2566,"children":2568},{"id":2567},"legacy-paths-to-check",[2569],{"type":48,"value":2570},"Legacy Paths to Check",{"type":42,"tag":300,"props":2572,"children":2573},{},[2574,2595],{"type":42,"tag":304,"props":2575,"children":2576},{},[2577],{"type":42,"tag":308,"props":2578,"children":2579},{},[2580,2585,2590],{"type":42,"tag":312,"props":2581,"children":2582},{},[2583],{"type":48,"value":2584},"Legacy Path",{"type":42,"tag":312,"props":2586,"children":2587},{},[2588],{"type":48,"value":2589},"Current Path",{"type":42,"tag":312,"props":2591,"children":2592},{},[2593],{"type":48,"value":2594},"Notes",{"type":42,"tag":323,"props":2596,"children":2597},{},[2598,2623],{"type":42,"tag":308,"props":2599,"children":2600},{},[2601,2610,2618],{"type":42,"tag":330,"props":2602,"children":2603},{},[2604],{"type":42,"tag":65,"props":2605,"children":2607},{"className":2606},[],[2608],{"type":48,"value":2609},".prose\u002Fstate.json",{"type":42,"tag":330,"props":2611,"children":2612},{},[2613],{"type":42,"tag":65,"props":2614,"children":2616},{"className":2615},[],[2617],{"type":48,"value":1314},{"type":42,"tag":330,"props":2619,"children":2620},{},[2621],{"type":48,"value":2622},"Convert JSON to key=value format",{"type":42,"tag":308,"props":2624,"children":2625},{},[2626,2635,2643],{"type":42,"tag":330,"props":2627,"children":2628},{},[2629],{"type":42,"tag":65,"props":2630,"children":2632},{"className":2631},[],[2633],{"type":48,"value":2634},".prose\u002Fexecution\u002F",{"type":42,"tag":330,"props":2636,"children":2637},{},[2638],{"type":42,"tag":65,"props":2639,"children":2641},{"className":2640},[],[2642],{"type":48,"value":1336},{"type":42,"tag":330,"props":2644,"children":2645},{},[2646],{"type":48,"value":2647},"Rename directory",{"type":42,"tag":469,"props":2649,"children":2651},{"id":2650},"migration-steps",[2652],{"type":48,"value":2653},"Migration Steps",{"type":42,"tag":542,"props":2655,"children":2656},{},[2657,2869,2899],{"type":42,"tag":98,"props":2658,"children":2659},{},[2660,2670],{"type":42,"tag":81,"props":2661,"children":2662},{},[2663,2665],{"type":48,"value":2664},"Check for ",{"type":42,"tag":65,"props":2666,"children":2668},{"className":2667},[],[2669],{"type":48,"value":2609},{"type":42,"tag":94,"props":2671,"children":2672},{},[2673,2678,2849,2859],{"type":42,"tag":98,"props":2674,"children":2675},{},[2676],{"type":48,"value":2677},"If exists, read the JSON content",{"type":42,"tag":98,"props":2679,"children":2680},{},[2681,2683,2689,2691,2814,2816],{"type":48,"value":2682},"Convert to ",{"type":42,"tag":65,"props":2684,"children":2686},{"className":2685},[],[2687],{"type":48,"value":2688},".env",{"type":48,"value":2690}," format:\n",{"type":42,"tag":741,"props":2692,"children":2696},{"className":2693,"code":2694,"language":2695,"meta":746,"style":746},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{ \"OPENPROSE_TELEMETRY\": \"enabled\", \"USER_ID\": \"user-xxx\", \"SESSION_ID\": \"sess-xxx\" }\n","json",[2697],{"type":42,"tag":65,"props":2698,"children":2699},{"__ignoreMap":746},[2700],{"type":42,"tag":752,"props":2701,"children":2702},{"class":754,"line":755},[2703,2708,2712,2718,2722,2727,2731,2736,2740,2745,2749,2754,2758,2762,2766,2771,2775,2779,2783,2788,2792,2796,2800,2805,2809],{"type":42,"tag":752,"props":2704,"children":2705},{"style":2070},[2706],{"type":48,"value":2707},"{",{"type":42,"tag":752,"props":2709,"children":2710},{"style":2070},[2711],{"type":48,"value":2144},{"type":42,"tag":752,"props":2713,"children":2715},{"style":2714},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[2716],{"type":48,"value":2717},"OPENPROSE_TELEMETRY",{"type":42,"tag":752,"props":2719,"children":2720},{"style":2070},[2721],{"type":48,"value":2154},{"type":42,"tag":752,"props":2723,"children":2724},{"style":2070},[2725],{"type":48,"value":2726},":",{"type":42,"tag":752,"props":2728,"children":2729},{"style":2070},[2730],{"type":48,"value":2144},{"type":42,"tag":752,"props":2732,"children":2733},{"style":774},[2734],{"type":48,"value":2735},"enabled",{"type":42,"tag":752,"props":2737,"children":2738},{"style":2070},[2739],{"type":48,"value":2154},{"type":42,"tag":752,"props":2741,"children":2742},{"style":2070},[2743],{"type":48,"value":2744},",",{"type":42,"tag":752,"props":2746,"children":2747},{"style":2070},[2748],{"type":48,"value":2144},{"type":42,"tag":752,"props":2750,"children":2751},{"style":2714},[2752],{"type":48,"value":2753},"USER_ID",{"type":42,"tag":752,"props":2755,"children":2756},{"style":2070},[2757],{"type":48,"value":2154},{"type":42,"tag":752,"props":2759,"children":2760},{"style":2070},[2761],{"type":48,"value":2726},{"type":42,"tag":752,"props":2763,"children":2764},{"style":2070},[2765],{"type":48,"value":2144},{"type":42,"tag":752,"props":2767,"children":2768},{"style":774},[2769],{"type":48,"value":2770},"user-xxx",{"type":42,"tag":752,"props":2772,"children":2773},{"style":2070},[2774],{"type":48,"value":2154},{"type":42,"tag":752,"props":2776,"children":2777},{"style":2070},[2778],{"type":48,"value":2744},{"type":42,"tag":752,"props":2780,"children":2781},{"style":2070},[2782],{"type":48,"value":2144},{"type":42,"tag":752,"props":2784,"children":2785},{"style":2714},[2786],{"type":48,"value":2787},"SESSION_ID",{"type":42,"tag":752,"props":2789,"children":2790},{"style":2070},[2791],{"type":48,"value":2154},{"type":42,"tag":752,"props":2793,"children":2794},{"style":2070},[2795],{"type":48,"value":2726},{"type":42,"tag":752,"props":2797,"children":2798},{"style":2070},[2799],{"type":48,"value":2144},{"type":42,"tag":752,"props":2801,"children":2802},{"style":774},[2803],{"type":48,"value":2804},"sess-xxx",{"type":42,"tag":752,"props":2806,"children":2807},{"style":2070},[2808],{"type":48,"value":2154},{"type":42,"tag":752,"props":2810,"children":2811},{"style":2070},[2812],{"type":48,"value":2813}," }\n",{"type":48,"value":2815},"\nbecomes:\n",{"type":42,"tag":741,"props":2817,"children":2821},{"className":2818,"code":2819,"language":2820,"meta":746,"style":746},"language-env shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","OPENPROSE_TELEMETRY=enabled\nUSER_ID=user-xxx\nSESSION_ID=sess-xxx\n","env",[2822],{"type":42,"tag":65,"props":2823,"children":2824},{"__ignoreMap":746},[2825,2833,2841],{"type":42,"tag":752,"props":2826,"children":2827},{"class":754,"line":755},[2828],{"type":42,"tag":752,"props":2829,"children":2830},{},[2831],{"type":48,"value":2832},"OPENPROSE_TELEMETRY=enabled\n",{"type":42,"tag":752,"props":2834,"children":2835},{"class":754,"line":765},[2836],{"type":42,"tag":752,"props":2837,"children":2838},{},[2839],{"type":48,"value":2840},"USER_ID=user-xxx\n",{"type":42,"tag":752,"props":2842,"children":2843},{"class":754,"line":785},[2844],{"type":42,"tag":752,"props":2845,"children":2846},{},[2847],{"type":48,"value":2848},"SESSION_ID=sess-xxx\n",{"type":42,"tag":98,"props":2850,"children":2851},{},[2852,2854],{"type":48,"value":2853},"Write to ",{"type":42,"tag":65,"props":2855,"children":2857},{"className":2856},[],[2858],{"type":48,"value":1314},{"type":42,"tag":98,"props":2860,"children":2861},{},[2862,2864],{"type":48,"value":2863},"Delete ",{"type":42,"tag":65,"props":2865,"children":2867},{"className":2866},[],[2868],{"type":48,"value":2609},{"type":42,"tag":98,"props":2870,"children":2871},{},[2872,2881],{"type":42,"tag":81,"props":2873,"children":2874},{},[2875,2876],{"type":48,"value":2664},{"type":42,"tag":65,"props":2877,"children":2879},{"className":2878},[],[2880],{"type":48,"value":2634},{"type":42,"tag":94,"props":2882,"children":2883},{},[2884,2894],{"type":42,"tag":98,"props":2885,"children":2886},{},[2887,2889],{"type":48,"value":2888},"If exists, rename to ",{"type":42,"tag":65,"props":2890,"children":2892},{"className":2891},[],[2893],{"type":48,"value":1336},{"type":42,"tag":98,"props":2895,"children":2896},{},[2897],{"type":48,"value":2898},"The internal structure of run directories may also have changed; migration of individual run state is best-effort",{"type":42,"tag":98,"props":2900,"children":2901},{},[2902,2914],{"type":42,"tag":81,"props":2903,"children":2904},{},[2905,2907,2912],{"type":48,"value":2906},"Create ",{"type":42,"tag":65,"props":2908,"children":2910},{"className":2909},[],[2911],{"type":48,"value":1357},{"type":48,"value":2913}," if missing",{"type":42,"tag":94,"props":2915,"children":2916},{},[2917],{"type":42,"tag":98,"props":2918,"children":2919},{},[2920],{"type":48,"value":2921},"This is a new directory for project-scoped persistent agents",{"type":42,"tag":469,"props":2923,"children":2925},{"id":2924},"migration-output",[2926],{"type":48,"value":2927},"Migration Output",{"type":42,"tag":741,"props":2929,"children":2932},{"className":2930,"code":2931,"language":48},[2189],"🔄 Migrating OpenProse workspace...\n  ✓ Converted .prose\u002Fstate.json → .prose\u002F.env\n  ✓ Renamed .prose\u002Fexecution\u002F → .prose\u002Fruns\u002F\n  ✓ Created .prose\u002Fagents\u002F\n✅ Migration complete. Your workspace is up to date.\n",[2933],{"type":42,"tag":65,"props":2934,"children":2935},{"__ignoreMap":746},[2936],{"type":48,"value":2931},{"type":42,"tag":51,"props":2938,"children":2939},{},[2940],{"type":48,"value":2941},"If no legacy files are found:",{"type":42,"tag":741,"props":2943,"children":2946},{"className":2944,"code":2945,"language":48},[2189],"✅ Workspace already up to date. No migration needed.\n",[2947],{"type":42,"tag":65,"props":2948,"children":2949},{"__ignoreMap":746},[2950],{"type":48,"value":2945},{"type":42,"tag":469,"props":2952,"children":2954},{"id":2953},"skill-file-references-for-maintainers",[2955],{"type":48,"value":2956},"Skill File References (for maintainers)",{"type":42,"tag":51,"props":2958,"children":2959},{},[2960],{"type":48,"value":2961},"These documentation files were renamed in the skill itself (not user workspace):",{"type":42,"tag":300,"props":2963,"children":2964},{},[2965,2981],{"type":42,"tag":304,"props":2966,"children":2967},{},[2968],{"type":42,"tag":308,"props":2969,"children":2970},{},[2971,2976],{"type":42,"tag":312,"props":2972,"children":2973},{},[2974],{"type":48,"value":2975},"Legacy Name",{"type":42,"tag":312,"props":2977,"children":2978},{},[2979],{"type":48,"value":2980},"Current Name",{"type":42,"tag":323,"props":2982,"children":2983},{},[2984,3004,3024],{"type":42,"tag":308,"props":2985,"children":2986},{},[2987,2996],{"type":42,"tag":330,"props":2988,"children":2989},{},[2990],{"type":42,"tag":65,"props":2991,"children":2993},{"className":2992},[],[2994],{"type":48,"value":2995},"docs.md",{"type":42,"tag":330,"props":2997,"children":2998},{},[2999],{"type":42,"tag":65,"props":3000,"children":3002},{"className":3001},[],[3003],{"type":48,"value":413},{"type":42,"tag":308,"props":3005,"children":3006},{},[3007,3016],{"type":42,"tag":330,"props":3008,"children":3009},{},[3010],{"type":42,"tag":65,"props":3011,"children":3013},{"className":3012},[],[3014],{"type":48,"value":3015},"patterns.md",{"type":42,"tag":330,"props":3017,"children":3018},{},[3019],{"type":42,"tag":65,"props":3020,"children":3022},{"className":3021},[],[3023],{"type":48,"value":1217},{"type":42,"tag":308,"props":3025,"children":3026},{},[3027,3036],{"type":42,"tag":330,"props":3028,"children":3029},{},[3030],{"type":42,"tag":65,"props":3031,"children":3033},{"className":3032},[],[3034],{"type":48,"value":3035},"antipatterns.md",{"type":42,"tag":330,"props":3037,"children":3038},{},[3039],{"type":42,"tag":65,"props":3040,"children":3042},{"className":3041},[],[3043],{"type":48,"value":1238},{"type":42,"tag":51,"props":3045,"children":3046},{},[3047],{"type":48,"value":3048},"If you encounter references to the old names in user prompts or external docs, map them to the current paths.",{"type":42,"tag":3050,"props":3051,"children":3052},"style",{},[3053],{"type":48,"value":3054},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3056,"total":3147},[3057,3071,3085,3097,3108,3120,3131],{"slug":3058,"name":3058,"fn":3059,"description":3060,"org":3061,"tags":3062,"stars":22,"repoUrl":23,"updatedAt":3070},"1password","manage secrets with 1Password CLI","Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading\u002Finjecting\u002Frunning secrets via op.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3063,3064,3067],{"name":13,"slug":14,"type":15},{"name":3065,"slug":3066,"type":15},"CLI","cli",{"name":3068,"slug":3069,"type":15},"Security","security","2026-07-12T08:28:49.991939",{"slug":3072,"name":3072,"fn":3073,"description":3074,"org":3075,"tags":3076,"stars":22,"repoUrl":23,"updatedAt":3084},"apple-notes","manage Apple Notes on macOS","Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3077,3078,3081],{"name":3065,"slug":3066,"type":15},{"name":3079,"slug":3080,"type":15},"Knowledge Management","knowledge-management",{"name":3082,"slug":3083,"type":15},"macOS","macos","2026-07-12T08:29:01.538106",{"slug":3086,"name":3086,"fn":3087,"description":3088,"org":3089,"tags":3090,"stars":22,"repoUrl":23,"updatedAt":3096},"apple-reminders","manage Apple Reminders via CLI","Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete). Supports lists, date filters, and JSON\u002Fplain output.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3091,3092,3093],{"name":3065,"slug":3066,"type":15},{"name":3082,"slug":3083,"type":15},{"name":3094,"slug":3095,"type":15},"Task Management","task-management","2026-07-12T08:29:14.035414",{"slug":3098,"name":3098,"fn":3099,"description":3100,"org":3101,"tags":3102,"stars":22,"repoUrl":23,"updatedAt":3107},"bear-notes","manage Bear notes via CLI","Create, search, and manage Bear notes via grizzly CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3103,3104,3105],{"name":3065,"slug":3066,"type":15},{"name":3079,"slug":3080,"type":15},{"name":2594,"slug":3106,"type":15},"notes","2026-07-12T08:28:51.246011",{"slug":3109,"name":3109,"fn":3110,"description":3111,"org":3112,"tags":3113,"stars":22,"repoUrl":23,"updatedAt":3119},"blogwatcher","monitor blogs and RSS feeds","Monitor blogs and RSS\u002FAtom feeds for updates using the blogwatcher CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3114,3115,3116],{"name":13,"slug":14,"type":15},{"name":3065,"slug":3066,"type":15},{"name":3117,"slug":3118,"type":15},"Monitoring","monitoring","2026-07-12T08:29:02.762321",{"slug":3121,"name":3121,"fn":3122,"description":3123,"org":3124,"tags":3125,"stars":22,"repoUrl":23,"updatedAt":3130},"blucli","control BluOS audio playback","BluOS CLI (blu) for discovery, playback, grouping, and volume.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3126,3129],{"name":3127,"slug":3128,"type":15},"Audio","audio",{"name":3065,"slug":3066,"type":15},"2026-07-12T08:28:21.009637",{"slug":3132,"name":3132,"fn":3133,"description":3134,"org":3135,"tags":3136,"stars":22,"repoUrl":23,"updatedAt":3146},"bluebubbles","send and manage iMessages","Use when you need to send or manage iMessages via BlueBubbles (recommended iMessage integration). Calls go through the generic message tool with channel=\"bluebubbles\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3137,3140,3143],{"name":3138,"slug":3139,"type":15},"Communications","communications",{"name":3141,"slug":3142,"type":15},"iMessage","imessage",{"name":3144,"slug":3145,"type":15},"Messaging","messaging","2026-07-12T08:28:57.517914",54,{"items":3149,"total":3254},[3150,3166,3172,3178,3184,3190,3196,3201,3207,3221,3231,3243],{"slug":3151,"name":3151,"fn":3152,"description":3153,"org":3154,"tags":3155,"stars":3163,"repoUrl":3164,"updatedAt":3165},"deepclaw-voice","configure phone calls with Deepgram Voice","Set up phone calling to OpenClaw using Deepgram Voice Agent API",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3156,3159,3160],{"name":3157,"slug":3158,"type":15},"API Development","api-development",{"name":9,"slug":8,"type":15},{"name":3161,"slug":3162,"type":15},"Voice","voice",78,"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fdeepclaw","2026-07-12T08:29:25.371332",{"slug":3058,"name":3058,"fn":3059,"description":3060,"org":3167,"tags":3168,"stars":22,"repoUrl":23,"updatedAt":3070},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3169,3170,3171],{"name":13,"slug":14,"type":15},{"name":3065,"slug":3066,"type":15},{"name":3068,"slug":3069,"type":15},{"slug":3072,"name":3072,"fn":3073,"description":3074,"org":3173,"tags":3174,"stars":22,"repoUrl":23,"updatedAt":3084},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3175,3176,3177],{"name":3065,"slug":3066,"type":15},{"name":3079,"slug":3080,"type":15},{"name":3082,"slug":3083,"type":15},{"slug":3086,"name":3086,"fn":3087,"description":3088,"org":3179,"tags":3180,"stars":22,"repoUrl":23,"updatedAt":3096},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3181,3182,3183],{"name":3065,"slug":3066,"type":15},{"name":3082,"slug":3083,"type":15},{"name":3094,"slug":3095,"type":15},{"slug":3098,"name":3098,"fn":3099,"description":3100,"org":3185,"tags":3186,"stars":22,"repoUrl":23,"updatedAt":3107},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3187,3188,3189],{"name":3065,"slug":3066,"type":15},{"name":3079,"slug":3080,"type":15},{"name":2594,"slug":3106,"type":15},{"slug":3109,"name":3109,"fn":3110,"description":3111,"org":3191,"tags":3192,"stars":22,"repoUrl":23,"updatedAt":3119},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3193,3194,3195],{"name":13,"slug":14,"type":15},{"name":3065,"slug":3066,"type":15},{"name":3117,"slug":3118,"type":15},{"slug":3121,"name":3121,"fn":3122,"description":3123,"org":3197,"tags":3198,"stars":22,"repoUrl":23,"updatedAt":3130},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3199,3200],{"name":3127,"slug":3128,"type":15},{"name":3065,"slug":3066,"type":15},{"slug":3132,"name":3132,"fn":3133,"description":3134,"org":3202,"tags":3203,"stars":22,"repoUrl":23,"updatedAt":3146},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3204,3205,3206],{"name":3138,"slug":3139,"type":15},{"name":3141,"slug":3142,"type":15},{"name":3144,"slug":3145,"type":15},{"slug":3208,"name":3208,"fn":3209,"description":3210,"org":3211,"tags":3212,"stars":22,"repoUrl":23,"updatedAt":3220},"camsnap","capture frames and clips from cameras","Capture frames or clips from RTSP\u002FONVIF cameras.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3213,3214,3217],{"name":13,"slug":14,"type":15},{"name":3215,"slug":3216,"type":15},"Camera","camera",{"name":3218,"slug":3219,"type":15},"Media","media","2026-07-12T08:28:28.096134",{"slug":3222,"name":3222,"fn":3223,"description":3224,"org":3225,"tags":3226,"stars":22,"repoUrl":23,"updatedAt":3230},"clawhub","manage agent skills with ClawHub","Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new\u002Fupdated skill folders with the npm-installed clawhub CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3227,3228,3229],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":3065,"slug":3066,"type":15},"2026-07-12T08:28:30.589001",{"slug":3232,"name":3232,"fn":3233,"description":3234,"org":3235,"tags":3236,"stars":22,"repoUrl":23,"updatedAt":3242},"coding-agent","run coding agents for programmatic control","Run Codex CLI, Claude Code, OpenCode, or Pi Coding Agent via background process for programmatic control.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3237,3238,3239],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":3240,"slug":3241,"type":15},"Coding","coding","2026-07-12T08:29:08.6658",{"slug":3244,"name":3244,"fn":3245,"description":3246,"org":3247,"tags":3248,"stars":22,"repoUrl":23,"updatedAt":3253},"eightctl","control Eight Sleep pod settings","Control Eight Sleep pods (status, temperature, alarms, schedules).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3249,3250],{"name":13,"slug":14,"type":15},{"name":3251,"slug":3252,"type":15},"Hardware","hardware","2026-07-12T08:28:39.322181",73]