@sienklogic/plan-build-run 2.33.0 → 2.33.1
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
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.33.1](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.33.0...plan-build-run-v2.33.1) (2026-02-25)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **quick-008:** propagate block exit code from checkNonPbrAgent in validate-task dispatcher ([4e8fbf6](https://github.com/SienkLogic/plan-build-run/commit/4e8fbf6796789c2a73d879d32c748df89261a17b))
|
|
14
|
+
|
|
8
15
|
## [2.33.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.32.1...plan-build-run-v2.33.0) (2026-02-25)
|
|
9
16
|
|
|
10
17
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pbr",
|
|
3
3
|
"displayName": "Plan-Build-Run",
|
|
4
|
-
"version": "2.33.
|
|
4
|
+
"version": "2.33.1",
|
|
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",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pbr",
|
|
3
3
|
"displayName": "Plan-Build-Run",
|
|
4
|
-
"version": "2.33.
|
|
4
|
+
"version": "2.33.1",
|
|
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",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pbr",
|
|
3
|
-
"version": "2.33.
|
|
3
|
+
"version": "2.33.1",
|
|
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",
|
|
@@ -795,6 +795,14 @@ function main() {
|
|
|
795
795
|
return;
|
|
796
796
|
}
|
|
797
797
|
|
|
798
|
+
// Blocking/advisory gate: non-PBR agent enforcement
|
|
799
|
+
const nonPbrAgentResult = checkNonPbrAgent(data);
|
|
800
|
+
if (nonPbrAgentResult && nonPbrAgentResult.exitCode === 2) {
|
|
801
|
+
process.stdout.write(JSON.stringify(nonPbrAgentResult.output));
|
|
802
|
+
process.exit(2);
|
|
803
|
+
return;
|
|
804
|
+
}
|
|
805
|
+
|
|
798
806
|
// Advisory warnings
|
|
799
807
|
const warnings = checkTask(data);
|
|
800
808
|
const manifestWarning = checkCheckpointManifest(data);
|
|
@@ -803,7 +811,6 @@ function main() {
|
|
|
803
811
|
if (debuggerWarning) warnings.push(debuggerWarning);
|
|
804
812
|
const activeSkillWarning = checkActiveSkillIntegrity(data);
|
|
805
813
|
if (activeSkillWarning) warnings.push(activeSkillWarning);
|
|
806
|
-
const nonPbrAgentResult = checkNonPbrAgent(data);
|
|
807
814
|
if (nonPbrAgentResult) warnings.push(nonPbrAgentResult.output.additionalContext);
|
|
808
815
|
|
|
809
816
|
// LLM task coherence check — advisory only
|