Skip to content

Commit cf30f2e

Browse files
committed
feat(076): recursive stage refinement profiles
Add bounded, inspectable stage-refinement loops to with a pattern. Compact round packets are trace-linked and schema-versioned. The loop enforces hard round/time limits, detects no-material-delta, and surfaces outcomes through status/next/inspect. CLI flags: , ,
1 parent 53ac711 commit cf30f2e

66 files changed

Lines changed: 4403 additions & 54 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude-plugin/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "boundline",
33
"displayName": "Boundline Assistant Support for Claude Code",
4-
"version": "0.75.0",
4+
"version": "0.76.0",
55
"description": "CLI-authoritative assistant support for bounded engineering work",
66
"author": {
77
"name": "Apply The",

.codex-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "boundline",
33
"displayName": "Boundline Assistant Support for Codex",
4-
"version": "0.75.0",
4+
"version": "0.76.0",
55
"description": "CLI-authoritative assistant support for bounded engineering work",
66
"author": {
77
"name": "Apply The",

.copilot-prompts/pack.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "boundline",
33
"displayName": "Boundline Copilot Prompt Pack",
4-
"version": "0.75.0",
4+
"version": "0.76.0",
55
"description": "CLI-authoritative Copilot prompt pack for bounded engineering work",
66
"author": {
77
"name": "Apply The",

.cursor-plugin/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "boundline",
33
"displayName": "Boundline Assistant Support for Cursor",
4-
"version": "0.75.0",
4+
"version": "0.76.0",
55
"description": "CLI-authoritative assistant support for bounded engineering work",
66
"author": {
77
"name": "Apply The",

.github/copilot-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- SPECKIT START -->
22
For additional context about technologies to be used, project structure,
33
shell commands, and other important information, read
4-
`specs/075-adaptive-governance-calibration/plan.md`
4+
`specs/076-recursive-stage-refinement/plan.md`
55
<!-- SPECKIT END -->

.specify/feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"feature_directory":"specs/075-adaptive-governance-calibration"}
1+
{"feature_directory":"specs/076-recursive-stage-refinement"}

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,22 @@ Release metadata note:
5050
distribution metadata, assistant plugin manifests, and docs are aligned to
5151
that version while Canon compatibility remains `0.71.0`.
5252

53+
## [0.76.0] - 2026-06-07
54+
55+
Delivered specs:
56+
57+
- `076` - Recursive Stage Refinement Profiles
58+
59+
Highlights:
60+
61+
- Bounded, inspectable stage-refinement loops over the existing session-native runtime
62+
- Single refinement profile (`plan_refinement`) for the plan stage with `planner → critic → planner → finalizer` pattern
63+
- Compact structured round packets persisted in the trace store with trace-linked artifact references
64+
- Hard round limits, no-progress detection, time budget enforcement, and closed stop-reason vocabulary (9 values)
65+
- Runtime-validated confidence model with critic-proposed and effective confidence tracking
66+
- CLI flags: `--refine`, `--no-refine`, `--max-rounds N`
67+
- Integration with `boundline status`, `boundline next`, and `boundline inspect` for refinement visibility
68+
5369
## [0.75.0] - 2026-06-07
5470

5571
Delivered specs:

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ resolver = "3"
1010
[workspace.package]
1111
# Published release metadata tracks the current public tag; review councils
1212
# and guardian activation router closure is tracked under CHANGELOG 0.74.0.
13-
version = "0.75.0"
13+
version = "0.76.0"
1414
edition = "2024"
1515
license = "MIT"
1616
description = "Bounded cognitive runtime for AI-assisted software delivery."

assistant/global/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "boundline-global-assistant-bootstrap",
33
"display_name": "Boundline Global Assistant Bootstrap",
4-
"version": "0.75.0",
4+
"version": "0.76.0",
55
"description": "User-scoped assistant bootstrap commands for Boundline before workspace initialization.",
66
"commands": [
77
"/boundline:init",

0 commit comments

Comments
 (0)