chore: release open-prose skill 0.17.0

This commit is contained in:
irl-dan
2026-08-27 16:02:21 -04:00
parent cfd9623fa7
commit a43638a7d3
6 changed files with 13 additions and 10 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "open-prose",
"description": "Write a Markdown contract (`.prose.md`). Your agent reads it, wires services, runs subagents, and leaves an auditable trace.",
"version": "0.16.0",
"version": "0.17.0",
"license": "MIT",
"homepage": "https://github.com/openprose/prose",
"author": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "open-prose",
"version": "0.16.0",
"version": "0.17.0",
"description": "Write a Markdown contract (`.prose.md`). Your agent reads it, wires services, runs subagents, and leaves an auditable trace.",
"license": "MIT",
"homepage": "https://github.com/openprose/prose",
+2
View File
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.17.0] - 2026-08-27 — open-prose skill & plugin
### Added
- **`prose init` and `prose compose` now provide guided, progressive program
+1 -1
View File
@@ -1,6 +1,6 @@
---
name: open-prose
version: 0.16.0
version: 0.17.0
runtime_contract: 2
description: |
Activate when the user types `prose ...`, opens a `.prose.md` file with
+5 -5
View File
@@ -43,13 +43,13 @@ plan.
## Unreleased
- Introduces `prose init` / `prose compose` and the obligation-centered
`std/ops/compose` directory package, including bounded architectural fronts,
progressive Contract source, derived visual views, outside-in semantic test
ordering, and issue-routed OpenProse feedback.
## History
- `v0.17.0`: introduced `prose init` / `prose compose` and the
obligation-centered `std/ops/compose` directory package, including bounded
architectural fronts, progressive Contract source, derived visual views,
outside-in semantic test ordering, and issue-routed OpenProse feedback.
- `v0.4.x`: early skill discovery, `prose help`, filesystem state, examples in
the skill directory, migration guide.
- `v0.5.x`: SQLite state management, recursive blocks, PostgreSQL state backend.
@@ -92,10 +92,11 @@ describe("skill-meta Markdown helpers", () => {
describe("SKILL.md frontmatter — versioning (delta.md §C7)", () => {
const fm = frontmatter(read("SKILL.md"));
it("pins version to 0.16.0", () => {
it("pins version to 0.17.0", () => {
// 0.15.0 was the Intelligent React overhaul (delta.md Part C §C7 L465);
// 0.16.0 removes the harness product surface from the skill.
expect(fm).toMatch(/^version:\s*0\.16\.0\s*$/m);
// 0.17.0 introduces guided init/compose and the Compose std package.
expect(fm).toMatch(/^version:\s*0\.17\.0\s*$/m);
});
it("bumps runtime_contract to 2", () => {