Releases: openprose/prose
Releases · openprose/prose
v0.8.1
What's New
Token Efficiency — State tracking is now significantly more compact, reducing context usage during long-running programs.
No More Telemetry — The telemetry system has been completely removed. OpenProse no longer phones home.
Self-Improvement Library — 7 new programs for recursive improvement:
- Memory:
user-memory.prose,project-memory.prose - Analysis:
cost-analyzer.prose,calibrator.prose,error-forensics.prose - Improvement:
vm-improver.prose,program-improver.prose
Also:
- Security scanner v2 with progressive disclosure and model tiering
- Simplified registry syntax (no @ prefix needed)
- User-scoped persistent agents
See CHANGELOG.md for details.
v0.7.1
Documentation Fix
Fixes an issue where the model could hallucinate incorrect registry URLs when running remote programs.
Changes
- Added CLI commands documentation to
prose.md - Added remote programs section to both
SKILL.mdandprose.md - Documented resolution rules:
https://...→ fetch directly@handle/slug→ resolve tohttps://p.prose.md/@handle/slug- Otherwise → local file
Examples
# Direct URL
prose run https://raw.githubusercontent.com/openprose/prose/main/skills/open-prose/examples/48-habit-miner.prose
# Registry shorthand
prose run @irl-danb/habit-minerv0.7.0
OpenProse v0.7.0
Mid-Program Inputs
Programs can now pause execution anywhere to collect user input—not just at the start. Build truly interactive workflows that adapt as they run.
New Meta-Level Examples
This release includes 8 new example programs that showcase OpenProse's power for building AI workflows:
- Plugin Release Workflow — OpenProse releasing itself. Yes, we went there.
- Workflow Crystallizer — Extracts reusable patterns from your Claude Code threads
- Language Self-Improvement — Meta-level 2: OpenProse analyzing and improving OpenProse
- Habit Miner — Discovers patterns in your AI session logs
Getting Started
```bash
Install or update via Claude Code
/open-prose
Try the new examples
prose run examples/workflow-crystallizer.prose
```