@sienklogic/plan-build-run 2.54.0 → 2.56.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 +24 -0
- package/package.json +1 -1
- package/plugins/codex-pbr/.codex/config.toml +101 -0
- package/plugins/codex-pbr/AGENTS.md +653 -0
- package/plugins/codex-pbr/README.md +116 -0
- package/plugins/codex-pbr/agents/audit.md +223 -0
- package/plugins/codex-pbr/agents/codebase-mapper.md +196 -0
- package/plugins/codex-pbr/agents/debugger.md +245 -0
- package/plugins/codex-pbr/agents/dev-sync.md +142 -0
- package/plugins/codex-pbr/agents/executor.md +429 -0
- package/plugins/codex-pbr/agents/general.md +131 -0
- package/plugins/codex-pbr/agents/integration-checker.md +178 -0
- package/plugins/codex-pbr/agents/plan-checker.md +253 -0
- package/plugins/codex-pbr/agents/planner.md +343 -0
- package/plugins/codex-pbr/agents/researcher.md +253 -0
- package/plugins/codex-pbr/agents/synthesizer.md +183 -0
- package/plugins/codex-pbr/agents/verifier.md +352 -0
- package/plugins/codex-pbr/commands/audit.md +5 -0
- package/plugins/codex-pbr/commands/begin.md +5 -0
- package/plugins/codex-pbr/commands/build.md +5 -0
- package/plugins/codex-pbr/commands/config.md +5 -0
- package/plugins/codex-pbr/commands/continue.md +5 -0
- package/plugins/codex-pbr/commands/dashboard.md +5 -0
- package/plugins/codex-pbr/commands/debug.md +5 -0
- package/plugins/codex-pbr/commands/discuss.md +5 -0
- package/plugins/codex-pbr/commands/do.md +5 -0
- package/plugins/codex-pbr/commands/explore.md +5 -0
- package/plugins/codex-pbr/commands/health.md +5 -0
- package/plugins/codex-pbr/commands/help.md +5 -0
- package/plugins/codex-pbr/commands/import.md +5 -0
- package/plugins/codex-pbr/commands/milestone.md +5 -0
- package/plugins/codex-pbr/commands/note.md +5 -0
- package/plugins/codex-pbr/commands/pause.md +5 -0
- package/plugins/codex-pbr/commands/plan.md +5 -0
- package/plugins/codex-pbr/commands/quick.md +5 -0
- package/plugins/codex-pbr/commands/resume.md +5 -0
- package/plugins/codex-pbr/commands/review.md +5 -0
- package/plugins/codex-pbr/commands/scan.md +5 -0
- package/plugins/codex-pbr/commands/setup.md +5 -0
- package/plugins/codex-pbr/commands/status.md +5 -0
- package/plugins/codex-pbr/commands/statusline.md +5 -0
- package/plugins/codex-pbr/commands/test.md +5 -0
- package/plugins/codex-pbr/commands/todo.md +5 -0
- package/plugins/codex-pbr/commands/undo.md +5 -0
- package/plugins/codex-pbr/references/agent-contracts.md +324 -0
- package/plugins/codex-pbr/references/agent-teams.md +54 -0
- package/plugins/codex-pbr/references/common-bug-patterns.md +13 -0
- package/plugins/codex-pbr/references/config-reference.md +552 -0
- package/plugins/codex-pbr/references/continuation-format.md +212 -0
- package/plugins/codex-pbr/references/deviation-rules.md +112 -0
- package/plugins/codex-pbr/references/git-integration.md +256 -0
- package/plugins/codex-pbr/references/integration-patterns.md +117 -0
- package/plugins/codex-pbr/references/model-profiles.md +99 -0
- package/plugins/codex-pbr/references/model-selection.md +31 -0
- package/plugins/codex-pbr/references/pbr-tools-cli.md +400 -0
- package/plugins/codex-pbr/references/plan-authoring.md +246 -0
- package/plugins/codex-pbr/references/plan-format.md +313 -0
- package/plugins/codex-pbr/references/questioning.md +235 -0
- package/plugins/codex-pbr/references/reading-verification.md +127 -0
- package/plugins/codex-pbr/references/signal-files.md +41 -0
- package/plugins/codex-pbr/references/stub-patterns.md +160 -0
- package/plugins/codex-pbr/references/ui-formatting.md +444 -0
- package/plugins/codex-pbr/references/wave-execution.md +95 -0
- package/plugins/codex-pbr/skills/audit/SKILL.md +346 -0
- package/plugins/codex-pbr/skills/begin/SKILL.md +800 -0
- package/plugins/codex-pbr/skills/build/SKILL.md +958 -0
- package/plugins/codex-pbr/skills/config/SKILL.md +267 -0
- package/plugins/codex-pbr/skills/continue/SKILL.md +172 -0
- package/plugins/codex-pbr/skills/dashboard/SKILL.md +44 -0
- package/plugins/codex-pbr/skills/debug/SKILL.md +530 -0
- package/plugins/codex-pbr/skills/discuss/SKILL.md +355 -0
- package/plugins/codex-pbr/skills/do/SKILL.md +68 -0
- package/plugins/codex-pbr/skills/explore/SKILL.md +407 -0
- package/plugins/codex-pbr/skills/health/SKILL.md +300 -0
- package/plugins/codex-pbr/skills/help/SKILL.md +229 -0
- package/plugins/codex-pbr/skills/import/SKILL.md +538 -0
- package/plugins/codex-pbr/skills/milestone/SKILL.md +620 -0
- package/plugins/codex-pbr/skills/note/SKILL.md +215 -0
- package/plugins/codex-pbr/skills/pause/SKILL.md +258 -0
- package/plugins/codex-pbr/skills/plan/SKILL.md +650 -0
- package/plugins/codex-pbr/skills/quick/SKILL.md +417 -0
- package/plugins/codex-pbr/skills/resume/SKILL.md +403 -0
- package/plugins/codex-pbr/skills/review/SKILL.md +669 -0
- package/plugins/codex-pbr/skills/scan/SKILL.md +325 -0
- package/plugins/codex-pbr/skills/setup/SKILL.md +169 -0
- package/plugins/codex-pbr/skills/shared/commit-planning-docs.md +35 -0
- package/plugins/codex-pbr/skills/shared/config-loading.md +102 -0
- package/plugins/codex-pbr/skills/shared/context-budget.md +77 -0
- package/plugins/codex-pbr/skills/shared/context-loader-task.md +86 -0
- package/plugins/codex-pbr/skills/shared/digest-select.md +79 -0
- package/plugins/codex-pbr/skills/shared/domain-probes.md +125 -0
- package/plugins/codex-pbr/skills/shared/error-reporting.md +59 -0
- package/plugins/codex-pbr/skills/shared/gate-prompts.md +388 -0
- package/plugins/codex-pbr/skills/shared/phase-argument-parsing.md +45 -0
- package/plugins/codex-pbr/skills/shared/revision-loop.md +81 -0
- package/plugins/codex-pbr/skills/shared/state-update.md +169 -0
- package/plugins/codex-pbr/skills/shared/universal-anti-patterns.md +43 -0
- package/plugins/codex-pbr/skills/status/SKILL.md +449 -0
- package/plugins/codex-pbr/skills/statusline/SKILL.md +149 -0
- package/plugins/codex-pbr/skills/test/SKILL.md +210 -0
- package/plugins/codex-pbr/skills/todo/SKILL.md +281 -0
- package/plugins/codex-pbr/skills/undo/SKILL.md +172 -0
- package/plugins/codex-pbr/templates/CONTEXT.md.tmpl +52 -0
- package/plugins/codex-pbr/templates/INTEGRATION-REPORT.md.tmpl +167 -0
- package/plugins/codex-pbr/templates/RESEARCH-SUMMARY.md.tmpl +97 -0
- package/plugins/codex-pbr/templates/ROADMAP.md.tmpl +47 -0
- package/plugins/codex-pbr/templates/SUMMARY-complex.md.tmpl +95 -0
- package/plugins/codex-pbr/templates/SUMMARY-minimal.md.tmpl +48 -0
- package/plugins/codex-pbr/templates/SUMMARY.md.tmpl +81 -0
- package/plugins/codex-pbr/templates/VERIFICATION-DETAIL.md.tmpl +117 -0
- package/plugins/codex-pbr/templates/codebase/ARCHITECTURE.md.tmpl +98 -0
- package/plugins/codex-pbr/templates/codebase/CONCERNS.md.tmpl +93 -0
- package/plugins/codex-pbr/templates/codebase/CONVENTIONS.md.tmpl +104 -0
- package/plugins/codex-pbr/templates/codebase/INTEGRATIONS.md.tmpl +78 -0
- package/plugins/codex-pbr/templates/codebase/STACK.md.tmpl +78 -0
- package/plugins/codex-pbr/templates/codebase/STRUCTURE.md.tmpl +80 -0
- package/plugins/codex-pbr/templates/codebase/TESTING.md.tmpl +107 -0
- package/plugins/codex-pbr/templates/continue-here.md.tmpl +73 -0
- package/plugins/codex-pbr/templates/pr-body.md.tmpl +22 -0
- package/plugins/codex-pbr/templates/prompt-partials/phase-project-context.md.tmpl +37 -0
- package/plugins/codex-pbr/templates/research/ARCHITECTURE.md.tmpl +124 -0
- package/plugins/codex-pbr/templates/research/STACK.md.tmpl +71 -0
- package/plugins/codex-pbr/templates/research/SUMMARY.md.tmpl +112 -0
- package/plugins/codex-pbr/templates/research-outputs/phase-research.md.tmpl +81 -0
- package/plugins/codex-pbr/templates/research-outputs/project-research.md.tmpl +99 -0
- package/plugins/codex-pbr/templates/research-outputs/synthesis.md.tmpl +36 -0
- package/plugins/copilot-pbr/plugin.json +1 -1
- package/plugins/cursor-pbr/.cursor-plugin/plugin.json +1 -1
- package/plugins/jules-pbr/AGENTS.md +600 -0
- package/plugins/pbr/.claude-plugin/plugin.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,30 @@ 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.56.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.55.0...plan-build-run-v2.56.0) (2026-03-02)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **58-02:** add Codex manual files (AGENTS.md, config.toml, README) ([c928ea6](https://github.com/SienkLogic/plan-build-run/commit/c928ea6d7170ce5c2b97bf5fe11505046f008396))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **58-02:** correct repo URL in codex-pbr README ([1b13b2a](https://github.com/SienkLogic/plan-build-run/commit/1b13b2a4799fa9827abf82feda4f87c2c65e2880))
|
|
19
|
+
|
|
20
|
+
## [2.55.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.54.0...plan-build-run-v2.55.0) (2026-03-02)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
* **57-01:** add CODEX_DIR constant and codex support in transformFrontmatter + transformAgentFrontmatter ([88652bc](https://github.com/SienkLogic/plan-build-run/commit/88652bc24f17bf2c7555d257f3e092b1d713eebe))
|
|
26
|
+
* **57-01:** add generate/verify/main codex dispatch, export CODEX_DIR, and integration tests ([606f3fe](https://github.com/SienkLogic/plan-build-run/commit/606f3fee42c96f47300646021e79ea44706c704e))
|
|
27
|
+
* **57-01:** extend transformBody with codex /pbr: transform and transformHooksJson null return ([baeabbb](https://github.com/SienkLogic/plan-build-run/commit/baeabbb4065808bb1ecb0961bd631c1443ae459d))
|
|
28
|
+
* **57-02:** generate plugins/codex-pbr/ via generate-derivatives.js codex ([99d0d22](https://github.com/SienkLogic/plan-build-run/commit/99d0d220185c150bf7abd1d56806a36eea76be75))
|
|
29
|
+
* **57-02:** GREEN - add hookFormat none guards and codex-pbr normalization in compat tests ([68812c3](https://github.com/SienkLogic/plan-build-run/commit/68812c34d71099b23c0b5cf320fa332215fb4f03))
|
|
30
|
+
* **58-01:** finalize Jules AGENTS.md template with enforcement rules and workflows ([7c58ca3](https://github.com/SienkLogic/plan-build-run/commit/7c58ca38247402b58e51653faab831ce0c8d1d67))
|
|
31
|
+
|
|
8
32
|
## [2.54.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.53.0...plan-build-run-v2.54.0) (2026-03-02)
|
|
9
33
|
|
|
10
34
|
|
package/package.json
CHANGED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
# PBR Workflow Configuration for Codex CLI
|
|
2
|
+
# Copy this file to your project's .codex/config.toml and customize as needed.
|
|
3
|
+
#
|
|
4
|
+
# Each [profiles.*] section defines a named agent profile that can be selected
|
|
5
|
+
# when Codex runs PBR skills. Uncomment and adjust the fields you want to change.
|
|
6
|
+
#
|
|
7
|
+
# Reference: https://github.com/openai/codex
|
|
8
|
+
|
|
9
|
+
# ---------------------------------------------------------------------------
|
|
10
|
+
# Sandbox Settings
|
|
11
|
+
# ---------------------------------------------------------------------------
|
|
12
|
+
# Controls which shell commands Codex is allowed to run during builds.
|
|
13
|
+
# Adjust based on your project's build toolchain.
|
|
14
|
+
|
|
15
|
+
[sandbox]
|
|
16
|
+
# allow = ["bash", "git", "npm", "node", "python", "pip", "cargo", "make"]
|
|
17
|
+
# deny = ["curl", "wget", "ssh"]
|
|
18
|
+
|
|
19
|
+
# ---------------------------------------------------------------------------
|
|
20
|
+
# PBR Agent Profiles
|
|
21
|
+
# ---------------------------------------------------------------------------
|
|
22
|
+
# Each profile corresponds to a PBR agent role. Codex selects the appropriate
|
|
23
|
+
# profile based on the active skill. You can override model and instructions
|
|
24
|
+
# per role to tune cost/quality tradeoffs.
|
|
25
|
+
|
|
26
|
+
# Research agent — explores domain, reads docs, summarizes findings.
|
|
27
|
+
# Called by: $pbr-explore, $pbr-begin, $pbr-plan (research phase)
|
|
28
|
+
[profiles.pbr-researcher]
|
|
29
|
+
# description = "Research agent: investigates domain and summarizes findings"
|
|
30
|
+
# model = "o4-mini"
|
|
31
|
+
# instructions = "Focus on gathering factual information. Cite sources."
|
|
32
|
+
|
|
33
|
+
# Planner agent — creates detailed, task-level phase plans.
|
|
34
|
+
# Called by: $pbr-plan, $pbr-begin
|
|
35
|
+
[profiles.pbr-planner]
|
|
36
|
+
# description = "Planner agent: produces structured PLAN.md files"
|
|
37
|
+
# model = "o3"
|
|
38
|
+
# instructions = "Output valid PLAN.md frontmatter. Define must_haves precisely."
|
|
39
|
+
|
|
40
|
+
# Executor agent — implements tasks from a PLAN.md, commits each task.
|
|
41
|
+
# Called by: $pbr-build
|
|
42
|
+
[profiles.pbr-executor]
|
|
43
|
+
# description = "Executor agent: implements plan tasks with atomic commits"
|
|
44
|
+
# model = "o4-mini"
|
|
45
|
+
# instructions = "One task per commit. Follow the plan exactly. No scope creep."
|
|
46
|
+
|
|
47
|
+
# Verifier agent — checks build output against plan must_haves.
|
|
48
|
+
# Called by: $pbr-review
|
|
49
|
+
[profiles.pbr-verifier]
|
|
50
|
+
# description = "Verifier agent: produces VERIFICATION.md with evidence"
|
|
51
|
+
# model = "o4-mini"
|
|
52
|
+
# instructions = "Check evidence in the codebase. Do not assume correctness."
|
|
53
|
+
|
|
54
|
+
# Integration checker agent — validates cross-component integration.
|
|
55
|
+
# Called by: $pbr-health, $pbr-scan
|
|
56
|
+
[profiles.pbr-integration-checker]
|
|
57
|
+
# description = "Integration checker: validates cross-component contracts"
|
|
58
|
+
# model = "o4-mini"
|
|
59
|
+
# instructions = "Focus on interface boundaries and data flow between modules."
|
|
60
|
+
|
|
61
|
+
# Debugger agent — hypothesis-driven bug investigation.
|
|
62
|
+
# Called by: $pbr-debug
|
|
63
|
+
[profiles.pbr-debugger]
|
|
64
|
+
# description = "Debugger agent: systematic hypothesis-driven investigation"
|
|
65
|
+
# model = "o3"
|
|
66
|
+
# instructions = "Form falsifiable hypotheses. Test each before moving on."
|
|
67
|
+
|
|
68
|
+
# Codebase mapper agent — creates ARCHITECTURE.md and related codebase docs.
|
|
69
|
+
# Called by: $pbr-explore, $pbr-begin
|
|
70
|
+
[profiles.pbr-mapper]
|
|
71
|
+
# description = "Mapper agent: documents codebase structure and architecture"
|
|
72
|
+
# model = "o4-mini"
|
|
73
|
+
# instructions = "Be concise. Focus on structure over implementation details."
|
|
74
|
+
|
|
75
|
+
# Synthesizer agent — aggregates research and produces structured summaries.
|
|
76
|
+
# Called by: $pbr-explore, $pbr-discuss
|
|
77
|
+
[profiles.pbr-synthesizer]
|
|
78
|
+
# description = "Synthesizer agent: aggregates findings into structured output"
|
|
79
|
+
# model = "o4-mini"
|
|
80
|
+
# instructions = "Extract key insights. Surface tensions and open questions."
|
|
81
|
+
|
|
82
|
+
# General agent — handles ad-hoc tasks and one-off instructions.
|
|
83
|
+
# Called by: $pbr-do, $pbr-discuss
|
|
84
|
+
[profiles.pbr-general]
|
|
85
|
+
# description = "General agent: flexible agent for miscellaneous PBR tasks"
|
|
86
|
+
# model = "o4-mini"
|
|
87
|
+
# instructions = "Follow PBR workflow rules. Commit with correct format."
|
|
88
|
+
|
|
89
|
+
# Audit agent — analyzes session logs for workflow compliance.
|
|
90
|
+
# Called by: $pbr-audit
|
|
91
|
+
[profiles.pbr-audit]
|
|
92
|
+
# description = "Audit agent: reviews session logs and produces compliance reports"
|
|
93
|
+
# model = "o4-mini"
|
|
94
|
+
# instructions = "Be objective. Report findings without judgment."
|
|
95
|
+
|
|
96
|
+
# Dev-sync agent — synchronizes changes across plugin derivatives.
|
|
97
|
+
# Called internally — not a user-facing skill.
|
|
98
|
+
[profiles.pbr-dev-sync]
|
|
99
|
+
# description = "Dev-sync agent: propagates pbr/ changes to cursor-pbr/ and codex-pbr/"
|
|
100
|
+
# model = "o4-mini"
|
|
101
|
+
# instructions = "Apply diffs exactly. Do not add scope beyond the sync target."
|