@sienklogic/plan-build-run 2.14.0 → 2.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dashboard/package.json +1 -0
- package/package.json +1 -1
- package/plugins/copilot-pbr/plugin.json +1 -1
- package/plugins/copilot-pbr/skills/build/SKILL.md +5 -0
- package/plugins/copilot-pbr/skills/help/SKILL.md +14 -0
- package/plugins/cursor-pbr/.cursor-plugin/plugin.json +1 -1
- package/plugins/cursor-pbr/skills/build/SKILL.md +5 -0
- package/plugins/cursor-pbr/skills/help/SKILL.md +14 -0
- package/plugins/pbr/.claude-plugin/plugin.json +1 -1
- package/plugins/pbr/skills/build/SKILL.md +5 -0
- package/plugins/pbr/skills/help/SKILL.md +14 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to Plan-Build-Run will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.15.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.14.0...plan-build-run-v2.15.0) (2026-02-22)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **tools:** add rollback downstream invalidation, complete help docs, dashboard route tests ([4461211](https://github.com/SienkLogic/plan-build-run/commit/446121187494306e81ceb642083858ac6353b5d8))
|
|
14
|
+
|
|
8
15
|
## [2.14.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.13.0...plan-build-run-v2.14.0) (2026-02-22)
|
|
9
16
|
|
|
10
17
|
|
package/dashboard/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pbr",
|
|
3
3
|
"displayName": "Plan-Build-Run",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.15.0",
|
|
5
5
|
"description": "Plan-Build-Run — Structured development workflow for GitHub Copilot CLI. Solves context rot through disciplined agent delegation, structured planning, atomic execution, and goal-backward verification.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "SienkLogic",
|
|
@@ -512,6 +512,11 @@ Use AskUserQuestion (pattern: multi-option-failure from `skills/shared/gate-prom
|
|
|
512
512
|
- Show the user: "Rolling back to commit {sha} (last verified good state). This will soft-reset {N} commits."
|
|
513
513
|
- Run: `git reset --soft {last_good_commit}`
|
|
514
514
|
- Delete the failed plan's SUMMARY.md file if it was created
|
|
515
|
+
- **CRITICAL — Invalidate downstream dependencies:**
|
|
516
|
+
- Check if any plans in later waves depend on the rolled-back plan
|
|
517
|
+
- For each downstream plan that depends on it: delete its SUMMARY.md (forces re-execution)
|
|
518
|
+
- Remove ALL downstream dependent plans from `checkpoints_resolved` in the manifest
|
|
519
|
+
- If downstream phases (outside this build) have `dependency_fingerprints` referencing this phase, warn: "Downstream phases may need re-planning with `/pbr:plan <N>` since Phase {current} was partially rolled back."
|
|
515
520
|
- Update the checkpoint manifest: remove the failed plan from `checkpoints_resolved`
|
|
516
521
|
- Continue to next wave or stop based on user preference
|
|
517
522
|
- If no `last_good_commit`: warn "No rollback point available (this was the first plan). Use abort instead."
|
|
@@ -82,6 +82,7 @@ Display the following reference to the user:
|
|
|
82
82
|
| `/pbr:status` | Where am I? Shows progress and suggests next action. |
|
|
83
83
|
| `/pbr:health` | Check planning directory integrity. Find and fix corrupted state. |
|
|
84
84
|
| `/pbr:pause` | Save session state for later. |
|
|
85
|
+
| `/pbr:pause --checkpoint` | Save with a named checkpoint for easier resumption. |
|
|
85
86
|
| `/pbr:resume` | Pick up where you left off. |
|
|
86
87
|
|
|
87
88
|
### Project Management
|
|
@@ -93,11 +94,24 @@ Display the following reference to the user:
|
|
|
93
94
|
| `/pbr:milestone audit` | Verify milestone completion. |
|
|
94
95
|
| `/pbr:milestone gaps` | Create phases to close audit gaps. |
|
|
95
96
|
| `/pbr:todo add\|list\|done` | Persistent file-based todos. |
|
|
97
|
+
| `/pbr:todo work <NNN>` | Work on a specific todo by ID. |
|
|
96
98
|
| `/pbr:note <text>\|list\|promote` | Zero-friction idea capture. Quick notes that persist across sessions. |
|
|
99
|
+
| `/pbr:note --global` | Save note to global notes directory (shared across projects). |
|
|
97
100
|
| `/pbr:config` | Configure workflow settings. |
|
|
98
101
|
| `/pbr:import <N>` | Import external plans (design docs, RFCs) into PBR format. |
|
|
102
|
+
| `/pbr:import --from <path>` | Import from a specific file path. |
|
|
103
|
+
| `/pbr:import --skip-checker` | Skip plan-checker validation on import. |
|
|
99
104
|
| `/pbr:setup` | Interactive onboarding wizard for new projects. |
|
|
100
105
|
|
|
106
|
+
### Utilities
|
|
107
|
+
|
|
108
|
+
| Command | Description |
|
|
109
|
+
|---------|-------------|
|
|
110
|
+
| `/pbr:do <description>` | Route freeform text to the right PBR skill automatically. |
|
|
111
|
+
| `/pbr:dashboard` | Launch the web dashboard for the current project. |
|
|
112
|
+
| `/pbr:dashboard --port <N>` | Launch dashboard on a specific port. |
|
|
113
|
+
| `/pbr:statusline` | Install or configure the PBR status line in Claude Code. |
|
|
114
|
+
|
|
101
115
|
## Typical Workflow
|
|
102
116
|
|
|
103
117
|
```
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pbr",
|
|
3
3
|
"displayName": "Plan-Build-Run",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.15.0",
|
|
5
5
|
"description": "Plan-Build-Run — Structured development workflow for Cursor. Solves context rot through disciplined subagent delegation, structured planning, atomic execution, and goal-backward verification.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "SienkLogic",
|
|
@@ -513,6 +513,11 @@ Use AskUserQuestion (pattern: multi-option-failure from `skills/shared/gate-prom
|
|
|
513
513
|
- Show the user: "Rolling back to commit {sha} (last verified good state). This will soft-reset {N} commits."
|
|
514
514
|
- Run: `git reset --soft {last_good_commit}`
|
|
515
515
|
- Delete the failed plan's SUMMARY.md file if it was created
|
|
516
|
+
- **CRITICAL — Invalidate downstream dependencies:**
|
|
517
|
+
- Check if any plans in later waves depend on the rolled-back plan
|
|
518
|
+
- For each downstream plan that depends on it: delete its SUMMARY.md (forces re-execution)
|
|
519
|
+
- Remove ALL downstream dependent plans from `checkpoints_resolved` in the manifest
|
|
520
|
+
- If downstream phases (outside this build) have `dependency_fingerprints` referencing this phase, warn: "Downstream phases may need re-planning with `/pbr:plan <N>` since Phase {current} was partially rolled back."
|
|
516
521
|
- Update the checkpoint manifest: remove the failed plan from `checkpoints_resolved`
|
|
517
522
|
- Continue to next wave or stop based on user preference
|
|
518
523
|
- If no `last_good_commit`: warn "No rollback point available (this was the first plan). Use abort instead."
|
|
@@ -82,6 +82,7 @@ Display the following reference to the user:
|
|
|
82
82
|
| `/pbr:status` | Where am I? Shows progress and suggests next action. |
|
|
83
83
|
| `/pbr:health` | Check planning directory integrity. Find and fix corrupted state. |
|
|
84
84
|
| `/pbr:pause` | Save session state for later. |
|
|
85
|
+
| `/pbr:pause --checkpoint` | Save with a named checkpoint for easier resumption. |
|
|
85
86
|
| `/pbr:resume` | Pick up where you left off. |
|
|
86
87
|
|
|
87
88
|
### Project Management
|
|
@@ -93,11 +94,24 @@ Display the following reference to the user:
|
|
|
93
94
|
| `/pbr:milestone audit` | Verify milestone completion. |
|
|
94
95
|
| `/pbr:milestone gaps` | Create phases to close audit gaps. |
|
|
95
96
|
| `/pbr:todo add\|list\|done` | Persistent file-based todos. |
|
|
97
|
+
| `/pbr:todo work <NNN>` | Work on a specific todo by ID. |
|
|
96
98
|
| `/pbr:note <text>\|list\|promote` | Zero-friction idea capture. Quick notes that persist across sessions. |
|
|
99
|
+
| `/pbr:note --global` | Save note to global notes directory (shared across projects). |
|
|
97
100
|
| `/pbr:config` | Configure workflow settings. |
|
|
98
101
|
| `/pbr:import <N>` | Import external plans (design docs, RFCs) into PBR format. |
|
|
102
|
+
| `/pbr:import --from <path>` | Import from a specific file path. |
|
|
103
|
+
| `/pbr:import --skip-checker` | Skip plan-checker validation on import. |
|
|
99
104
|
| `/pbr:setup` | Interactive onboarding wizard for new projects. |
|
|
100
105
|
|
|
106
|
+
### Utilities
|
|
107
|
+
|
|
108
|
+
| Command | Description |
|
|
109
|
+
|---------|-------------|
|
|
110
|
+
| `/pbr:do <description>` | Route freeform text to the right PBR skill automatically. |
|
|
111
|
+
| `/pbr:dashboard` | Launch the web dashboard for the current project. |
|
|
112
|
+
| `/pbr:dashboard --port <N>` | Launch dashboard on a specific port. |
|
|
113
|
+
| `/pbr:statusline` | Install or configure the PBR status line in Claude Code. |
|
|
114
|
+
|
|
101
115
|
## Typical Workflow
|
|
102
116
|
|
|
103
117
|
```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pbr",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.15.0",
|
|
4
4
|
"description": "Plan-Build-Run — Structured development workflow for Claude Code. Solves context rot through disciplined subagent delegation, structured planning, atomic execution, and goal-backward verification.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "SienkLogic",
|
|
@@ -514,6 +514,11 @@ Use AskUserQuestion (pattern: multi-option-failure from `skills/shared/gate-prom
|
|
|
514
514
|
- Show the user: "Rolling back to commit {sha} (last verified good state). This will soft-reset {N} commits."
|
|
515
515
|
- Run: `git reset --soft {last_good_commit}`
|
|
516
516
|
- Delete the failed plan's SUMMARY.md file if it was created
|
|
517
|
+
- **CRITICAL — Invalidate downstream dependencies:**
|
|
518
|
+
- Check if any plans in later waves depend on the rolled-back plan
|
|
519
|
+
- For each downstream plan that depends on it: delete its SUMMARY.md (forces re-execution)
|
|
520
|
+
- Remove ALL downstream dependent plans from `checkpoints_resolved` in the manifest
|
|
521
|
+
- If downstream phases (outside this build) have `dependency_fingerprints` referencing this phase, warn: "Downstream phases may need re-planning with `/pbr:plan <N>` since Phase {current} was partially rolled back."
|
|
517
522
|
- Update the checkpoint manifest: remove the failed plan from `checkpoints_resolved`
|
|
518
523
|
- Continue to next wave or stop based on user preference
|
|
519
524
|
- If no `last_good_commit`: warn "No rollback point available (this was the first plan). Use abort instead."
|
|
@@ -85,6 +85,7 @@ Display the following reference to the user:
|
|
|
85
85
|
| `/pbr:status` | Where am I? Shows progress and suggests next action. |
|
|
86
86
|
| `/pbr:health` | Check planning directory integrity. Find and fix corrupted state. |
|
|
87
87
|
| `/pbr:pause` | Save session state for later. |
|
|
88
|
+
| `/pbr:pause --checkpoint` | Save with a named checkpoint for easier resumption. |
|
|
88
89
|
| `/pbr:resume` | Pick up where you left off. |
|
|
89
90
|
|
|
90
91
|
### Project Management
|
|
@@ -96,11 +97,24 @@ Display the following reference to the user:
|
|
|
96
97
|
| `/pbr:milestone audit` | Verify milestone completion. |
|
|
97
98
|
| `/pbr:milestone gaps` | Create phases to close audit gaps. |
|
|
98
99
|
| `/pbr:todo add\|list\|done` | Persistent file-based todos. |
|
|
100
|
+
| `/pbr:todo work <NNN>` | Work on a specific todo by ID. |
|
|
99
101
|
| `/pbr:note <text>\|list\|promote` | Zero-friction idea capture. Quick notes that persist across sessions. |
|
|
102
|
+
| `/pbr:note --global` | Save note to global notes directory (shared across projects). |
|
|
100
103
|
| `/pbr:config` | Configure workflow settings. |
|
|
101
104
|
| `/pbr:import <N>` | Import external plans (design docs, RFCs) into PBR format. |
|
|
105
|
+
| `/pbr:import --from <path>` | Import from a specific file path. |
|
|
106
|
+
| `/pbr:import --skip-checker` | Skip plan-checker validation on import. |
|
|
102
107
|
| `/pbr:setup` | Interactive onboarding wizard for new projects. |
|
|
103
108
|
|
|
109
|
+
### Utilities
|
|
110
|
+
|
|
111
|
+
| Command | Description |
|
|
112
|
+
|---------|-------------|
|
|
113
|
+
| `/pbr:do <description>` | Route freeform text to the right PBR skill automatically. |
|
|
114
|
+
| `/pbr:dashboard` | Launch the web dashboard for the current project. |
|
|
115
|
+
| `/pbr:dashboard --port <N>` | Launch dashboard on a specific port. |
|
|
116
|
+
| `/pbr:statusline` | Install or configure the PBR status line in Claude Code. |
|
|
117
|
+
|
|
104
118
|
## Typical Workflow
|
|
105
119
|
|
|
106
120
|
```
|