@sienklogic/plan-build-run 2.3.0 → 2.4.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 +49 -0
- package/README.md +54 -20
- package/dashboard/src/services/dashboard.service.js +24 -1
- package/dashboard/src/services/milestone.service.js +68 -17
- package/package.json +1 -1
- package/plugins/copilot-pbr/CHANGELOG.md +19 -0
- package/plugins/copilot-pbr/README.md +129 -0
- package/plugins/copilot-pbr/agents/codebase-mapper.agent.md +109 -0
- package/plugins/copilot-pbr/agents/debugger.agent.md +169 -0
- package/plugins/copilot-pbr/agents/executor.agent.md +237 -0
- package/plugins/copilot-pbr/agents/general.agent.md +88 -0
- package/plugins/copilot-pbr/agents/integration-checker.agent.md +88 -0
- package/plugins/copilot-pbr/agents/plan-checker.agent.md +199 -0
- package/plugins/copilot-pbr/agents/planner.agent.md +181 -0
- package/plugins/copilot-pbr/agents/researcher.agent.md +163 -0
- package/plugins/copilot-pbr/agents/synthesizer.agent.md +102 -0
- package/plugins/copilot-pbr/agents/verifier.agent.md +194 -0
- package/plugins/copilot-pbr/hooks/hooks.json +144 -0
- package/plugins/copilot-pbr/plugin.json +30 -0
- package/plugins/copilot-pbr/references/agent-anti-patterns.md +25 -0
- package/plugins/copilot-pbr/references/agent-interactions.md +135 -0
- package/plugins/copilot-pbr/references/agent-teams.md +55 -0
- package/plugins/copilot-pbr/references/checkpoints.md +158 -0
- package/plugins/copilot-pbr/references/common-bug-patterns.md +14 -0
- package/plugins/copilot-pbr/references/config-reference.md +442 -0
- package/plugins/copilot-pbr/references/continuation-format.md +213 -0
- package/plugins/copilot-pbr/references/deviation-rules.md +113 -0
- package/plugins/copilot-pbr/references/git-integration.md +227 -0
- package/plugins/copilot-pbr/references/integration-patterns.md +118 -0
- package/plugins/copilot-pbr/references/model-profiles.md +100 -0
- package/plugins/copilot-pbr/references/model-selection.md +32 -0
- package/plugins/copilot-pbr/references/pbr-rules.md +194 -0
- package/plugins/copilot-pbr/references/plan-authoring.md +182 -0
- package/plugins/copilot-pbr/references/plan-format.md +288 -0
- package/plugins/copilot-pbr/references/planning-config.md +214 -0
- package/plugins/copilot-pbr/references/questioning.md +215 -0
- package/plugins/copilot-pbr/references/reading-verification.md +128 -0
- package/plugins/copilot-pbr/references/stub-patterns.md +161 -0
- package/plugins/copilot-pbr/references/subagent-coordination.md +120 -0
- package/plugins/copilot-pbr/references/ui-formatting.md +462 -0
- package/plugins/copilot-pbr/references/verification-patterns.md +199 -0
- package/plugins/copilot-pbr/references/wave-execution.md +96 -0
- package/plugins/copilot-pbr/rules/pbr-workflow.mdc +48 -0
- package/plugins/copilot-pbr/setup.ps1 +93 -0
- package/plugins/copilot-pbr/setup.sh +92 -0
- package/plugins/copilot-pbr/skills/begin/SKILL.md +566 -0
- package/plugins/copilot-pbr/skills/begin/templates/PROJECT.md.tmpl +34 -0
- package/plugins/copilot-pbr/skills/begin/templates/REQUIREMENTS.md.tmpl +19 -0
- package/plugins/copilot-pbr/skills/begin/templates/STATE.md.tmpl +50 -0
- package/plugins/copilot-pbr/skills/begin/templates/config.json.tmpl +64 -0
- package/plugins/copilot-pbr/skills/begin/templates/researcher-prompt.md.tmpl +20 -0
- package/plugins/copilot-pbr/skills/begin/templates/roadmap-prompt.md.tmpl +31 -0
- package/plugins/copilot-pbr/skills/begin/templates/synthesis-prompt.md.tmpl +17 -0
- package/plugins/copilot-pbr/skills/build/SKILL.md +901 -0
- package/plugins/copilot-pbr/skills/config/SKILL.md +253 -0
- package/plugins/copilot-pbr/skills/continue/SKILL.md +159 -0
- package/plugins/copilot-pbr/skills/dashboard/SKILL.md +31 -0
- package/plugins/copilot-pbr/skills/debug/SKILL.md +511 -0
- package/plugins/copilot-pbr/skills/debug/templates/continuation-prompt.md.tmpl +17 -0
- package/plugins/copilot-pbr/skills/debug/templates/initial-investigation-prompt.md.tmpl +28 -0
- package/plugins/copilot-pbr/skills/discuss/SKILL.md +343 -0
- package/plugins/copilot-pbr/skills/discuss/templates/CONTEXT.md.tmpl +62 -0
- package/plugins/copilot-pbr/skills/discuss/templates/decision-categories.md +10 -0
- package/plugins/copilot-pbr/skills/do/SKILL.md +66 -0
- package/plugins/copilot-pbr/skills/explore/SKILL.md +374 -0
- package/plugins/copilot-pbr/skills/health/SKILL.md +218 -0
- package/plugins/copilot-pbr/skills/health/templates/check-pattern.md.tmpl +31 -0
- package/plugins/copilot-pbr/skills/health/templates/output-format.md.tmpl +64 -0
- package/plugins/copilot-pbr/skills/help/SKILL.md +152 -0
- package/plugins/copilot-pbr/skills/import/SKILL.md +498 -0
- package/plugins/copilot-pbr/skills/milestone/SKILL.md +703 -0
- package/plugins/copilot-pbr/skills/milestone/templates/audit-report.md.tmpl +49 -0
- package/plugins/copilot-pbr/skills/milestone/templates/stats-file.md.tmpl +31 -0
- package/plugins/copilot-pbr/skills/note/SKILL.md +227 -0
- package/plugins/copilot-pbr/skills/pause/SKILL.md +246 -0
- package/plugins/copilot-pbr/skills/pause/templates/continue-here.md.tmpl +72 -0
- package/plugins/copilot-pbr/skills/plan/SKILL.md +649 -0
- package/plugins/copilot-pbr/skills/plan/templates/checker-prompt.md.tmpl +22 -0
- package/plugins/copilot-pbr/skills/plan/templates/gap-closure-prompt.md.tmpl +33 -0
- package/plugins/copilot-pbr/skills/plan/templates/planner-prompt.md.tmpl +39 -0
- package/plugins/copilot-pbr/skills/plan/templates/researcher-prompt.md.tmpl +20 -0
- package/plugins/copilot-pbr/skills/plan/templates/revision-prompt.md.tmpl +24 -0
- package/plugins/copilot-pbr/skills/quick/SKILL.md +351 -0
- package/plugins/copilot-pbr/skills/resume/SKILL.md +399 -0
- package/plugins/copilot-pbr/skills/review/SKILL.md +648 -0
- package/plugins/copilot-pbr/skills/review/templates/debugger-prompt.md.tmpl +61 -0
- package/plugins/copilot-pbr/skills/review/templates/gap-planner-prompt.md.tmpl +41 -0
- package/plugins/copilot-pbr/skills/review/templates/verifier-prompt.md.tmpl +116 -0
- package/plugins/copilot-pbr/skills/scan/SKILL.md +301 -0
- package/plugins/copilot-pbr/skills/scan/templates/mapper-prompt.md.tmpl +202 -0
- package/plugins/copilot-pbr/skills/setup/SKILL.md +250 -0
- package/plugins/copilot-pbr/skills/shared/commit-planning-docs.md +36 -0
- package/plugins/copilot-pbr/skills/shared/config-loading.md +103 -0
- package/plugins/copilot-pbr/skills/shared/context-budget.md +41 -0
- package/plugins/copilot-pbr/skills/shared/context-loader-task.md +87 -0
- package/plugins/copilot-pbr/skills/shared/digest-select.md +80 -0
- package/plugins/copilot-pbr/skills/shared/domain-probes.md +126 -0
- package/plugins/copilot-pbr/skills/shared/error-reporting.md +80 -0
- package/plugins/copilot-pbr/skills/shared/gate-prompts.md +389 -0
- package/plugins/copilot-pbr/skills/shared/phase-argument-parsing.md +46 -0
- package/plugins/copilot-pbr/skills/shared/progress-display.md +54 -0
- package/plugins/copilot-pbr/skills/shared/revision-loop.md +82 -0
- package/plugins/copilot-pbr/skills/shared/state-loading.md +63 -0
- package/plugins/copilot-pbr/skills/shared/state-update.md +162 -0
- package/plugins/copilot-pbr/skills/shared/universal-anti-patterns.md +34 -0
- package/plugins/copilot-pbr/skills/status/SKILL.md +362 -0
- package/plugins/copilot-pbr/skills/todo/SKILL.md +256 -0
- package/plugins/copilot-pbr/templates/CONTEXT.md.tmpl +53 -0
- package/plugins/copilot-pbr/templates/INTEGRATION-REPORT.md.tmpl +152 -0
- package/plugins/copilot-pbr/templates/RESEARCH-SUMMARY.md.tmpl +98 -0
- package/plugins/copilot-pbr/templates/ROADMAP.md.tmpl +41 -0
- package/plugins/copilot-pbr/templates/SUMMARY.md.tmpl +82 -0
- package/plugins/copilot-pbr/templates/VERIFICATION-DETAIL.md.tmpl +117 -0
- package/plugins/copilot-pbr/templates/codebase/ARCHITECTURE.md.tmpl +98 -0
- package/plugins/copilot-pbr/templates/codebase/CONCERNS.md.tmpl +93 -0
- package/plugins/copilot-pbr/templates/codebase/CONVENTIONS.md.tmpl +104 -0
- package/plugins/copilot-pbr/templates/codebase/INTEGRATIONS.md.tmpl +78 -0
- package/plugins/copilot-pbr/templates/codebase/STACK.md.tmpl +78 -0
- package/plugins/copilot-pbr/templates/codebase/STRUCTURE.md.tmpl +80 -0
- package/plugins/copilot-pbr/templates/codebase/TESTING.md.tmpl +107 -0
- package/plugins/copilot-pbr/templates/continue-here.md.tmpl +74 -0
- package/plugins/copilot-pbr/templates/prompt-partials/phase-project-context.md.tmpl +38 -0
- package/plugins/copilot-pbr/templates/research/ARCHITECTURE.md.tmpl +124 -0
- package/plugins/copilot-pbr/templates/research/STACK.md.tmpl +71 -0
- package/plugins/copilot-pbr/templates/research/SUMMARY.md.tmpl +112 -0
- package/plugins/copilot-pbr/templates/research-outputs/phase-research.md.tmpl +81 -0
- package/plugins/copilot-pbr/templates/research-outputs/project-research.md.tmpl +99 -0
- package/plugins/copilot-pbr/templates/research-outputs/synthesis.md.tmpl +36 -0
- package/plugins/cursor-pbr/.cursor-plugin/plugin.json +13 -3
- package/plugins/cursor-pbr/skills/dashboard/SKILL.md +14 -4
- package/plugins/cursor-pbr/skills/do/SKILL.md +67 -0
- package/plugins/cursor-pbr/skills/milestone/SKILL.md +10 -7
- package/plugins/cursor-pbr/skills/todo/SKILL.md +28 -5
- package/plugins/cursor-pbr/templates/codebase/ARCHITECTURE.md.tmpl +98 -0
- package/plugins/cursor-pbr/templates/codebase/CONCERNS.md.tmpl +93 -0
- package/plugins/cursor-pbr/templates/codebase/CONVENTIONS.md.tmpl +104 -0
- package/plugins/cursor-pbr/templates/codebase/INTEGRATIONS.md.tmpl +78 -0
- package/plugins/cursor-pbr/templates/codebase/STACK.md.tmpl +78 -0
- package/plugins/cursor-pbr/templates/codebase/STRUCTURE.md.tmpl +80 -0
- package/plugins/cursor-pbr/templates/codebase/TESTING.md.tmpl +107 -0
- package/plugins/cursor-pbr/templates/research/ARCHITECTURE.md.tmpl +124 -0
- package/plugins/cursor-pbr/templates/research/STACK.md.tmpl +71 -0
- package/plugins/cursor-pbr/templates/research/SUMMARY.md.tmpl +112 -0
- package/plugins/cursor-pbr/templates/research-outputs/phase-research.md.tmpl +81 -0
- package/plugins/cursor-pbr/templates/research-outputs/project-research.md.tmpl +99 -0
- package/plugins/cursor-pbr/templates/research-outputs/synthesis.md.tmpl +36 -0
- package/plugins/pbr/.claude-plugin/plugin.json +7 -2
- package/plugins/pbr/scripts/validate-skill-args.js +54 -10
- package/plugins/pbr/skills/do/SKILL.md +70 -0
- package/plugins/pbr/skills/milestone/SKILL.md +10 -7
- package/plugins/pbr/skills/todo/SKILL.md +29 -6
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 2,
|
|
3
|
+
"context_strategy": "aggressive",
|
|
4
|
+
"mode": "interactive",
|
|
5
|
+
"depth": "standard",
|
|
6
|
+
"features": {
|
|
7
|
+
"structured_planning": true,
|
|
8
|
+
"goal_verification": true,
|
|
9
|
+
"integration_verification": true,
|
|
10
|
+
"context_isolation": true,
|
|
11
|
+
"atomic_commits": true,
|
|
12
|
+
"session_persistence": true,
|
|
13
|
+
"research_phase": true,
|
|
14
|
+
"plan_checking": true,
|
|
15
|
+
"tdd_mode": false,
|
|
16
|
+
"status_line": true,
|
|
17
|
+
"auto_continue": false,
|
|
18
|
+
"auto_advance": false,
|
|
19
|
+
"team_discussions": false,
|
|
20
|
+
"inline_verify": false
|
|
21
|
+
},
|
|
22
|
+
"models": {
|
|
23
|
+
"researcher": "sonnet",
|
|
24
|
+
"planner": "inherit",
|
|
25
|
+
"executor": "inherit",
|
|
26
|
+
"verifier": "sonnet",
|
|
27
|
+
"integration_checker": "sonnet",
|
|
28
|
+
"debugger": "inherit",
|
|
29
|
+
"mapper": "sonnet",
|
|
30
|
+
"synthesizer": "sonnet"
|
|
31
|
+
},
|
|
32
|
+
"parallelization": {
|
|
33
|
+
"enabled": true,
|
|
34
|
+
"plan_level": true,
|
|
35
|
+
"task_level": false,
|
|
36
|
+
"max_concurrent_agents": 3,
|
|
37
|
+
"min_plans_for_parallel": 2,
|
|
38
|
+
"use_teams": false
|
|
39
|
+
},
|
|
40
|
+
"planning": {
|
|
41
|
+
"commit_docs": true,
|
|
42
|
+
"max_tasks_per_plan": 3,
|
|
43
|
+
"search_gitignored": false
|
|
44
|
+
},
|
|
45
|
+
"git": {
|
|
46
|
+
"branching": "none",
|
|
47
|
+
"commit_format": "{type}({phase}-{plan}): {description}",
|
|
48
|
+
"phase_branch_template": "plan-build-run/phase-{phase}-{slug}",
|
|
49
|
+
"milestone_branch_template": "plan-build-run/{milestone}-{slug}",
|
|
50
|
+
"mode": "enabled"
|
|
51
|
+
},
|
|
52
|
+
"gates": {
|
|
53
|
+
"confirm_project": true,
|
|
54
|
+
"confirm_roadmap": true,
|
|
55
|
+
"confirm_plan": true,
|
|
56
|
+
"confirm_execute": false,
|
|
57
|
+
"confirm_transition": true,
|
|
58
|
+
"issues_review": true
|
|
59
|
+
},
|
|
60
|
+
"safety": {
|
|
61
|
+
"always_confirm_destructive": true,
|
|
62
|
+
"always_confirm_external_services": true
|
|
63
|
+
}
|
|
64
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<\!-- canonical: ../../../../pbr/skills/begin/templates/researcher-prompt.md.tmpl -->
|
|
2
|
+
<!-- Source: begin/SKILL.md | Purpose: Prompt template for spawning researcher agents during project initialization -->
|
|
3
|
+
|
|
4
|
+
<project_context>
|
|
5
|
+
Project: {project name from questioning}
|
|
6
|
+
Description: {2-3 sentence description from questioning}
|
|
7
|
+
Technology constraints: {any locked technology choices}
|
|
8
|
+
User constraints: {budget, timeline, skill level, etc.}
|
|
9
|
+
</project_context>
|
|
10
|
+
|
|
11
|
+
<research_assignment>
|
|
12
|
+
Topic: {topic - e.g., "Technology Stack Analysis"}
|
|
13
|
+
Output file: .planning/research/{TOPIC}.md
|
|
14
|
+
Mode: project-research
|
|
15
|
+
|
|
16
|
+
Research these specific questions:
|
|
17
|
+
{topic-specific questions - see below}
|
|
18
|
+
</research_assignment>
|
|
19
|
+
|
|
20
|
+
Write your findings to the output file using the Project Research output format from your agent definition. Use the Write tool to create the file.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<\!-- canonical: ../../../../pbr/skills/begin/templates/roadmap-prompt.md.tmpl -->
|
|
2
|
+
<!-- Source: begin/SKILL.md | Purpose: Prompt template for spawning the planner agent in roadmap mode -->
|
|
3
|
+
|
|
4
|
+
<project_context>
|
|
5
|
+
Project: {project name}
|
|
6
|
+
Description: {description}
|
|
7
|
+
Depth: {quick|standard|comprehensive}
|
|
8
|
+
</project_context>
|
|
9
|
+
|
|
10
|
+
<roadmap_instructions>
|
|
11
|
+
Create a project roadmap following the Roadmap Mode instructions in your agent definition.
|
|
12
|
+
|
|
13
|
+
Read these files for context:
|
|
14
|
+
- .planning/REQUIREMENTS.md — committed requirements
|
|
15
|
+
- .planning/research/SUMMARY.md — research synthesis (if it exists)
|
|
16
|
+
|
|
17
|
+
Phase count guidelines based on depth:
|
|
18
|
+
- quick: 3-5 phases
|
|
19
|
+
- standard: 5-8 phases
|
|
20
|
+
- comprehensive: 8-12 phases
|
|
21
|
+
|
|
22
|
+
Each phase should:
|
|
23
|
+
1. Have a clear, achievable goal
|
|
24
|
+
2. Map to specific REQ-IDs
|
|
25
|
+
3. Build on prior phases logically
|
|
26
|
+
4. Be independently verifiable
|
|
27
|
+
|
|
28
|
+
Write the roadmap to .planning/ROADMAP.md using the roadmap format from your agent definition.
|
|
29
|
+
</roadmap_instructions>
|
|
30
|
+
|
|
31
|
+
Write the roadmap to .planning/ROADMAP.md using the Write tool.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<\!-- canonical: ../../../../pbr/skills/begin/templates/synthesis-prompt.md.tmpl -->
|
|
2
|
+
<!-- Source: begin/SKILL.md | Purpose: Prompt template for spawning the synthesis agent after research completes -->
|
|
3
|
+
|
|
4
|
+
<research_documents>
|
|
5
|
+
Read the following research documents and synthesize them:
|
|
6
|
+
{List all .planning/research/*.md files that were created}
|
|
7
|
+
</research_documents>
|
|
8
|
+
|
|
9
|
+
<synthesis_instructions>
|
|
10
|
+
1. Read all research documents
|
|
11
|
+
2. Identify consensus findings
|
|
12
|
+
3. Resolve contradictions (higher source level wins)
|
|
13
|
+
4. Produce a unified summary with clear recommendations
|
|
14
|
+
5. Write the synthesis to .planning/research/SUMMARY.md using the Synthesis output format
|
|
15
|
+
</synthesis_instructions>
|
|
16
|
+
|
|
17
|
+
Write the synthesis to .planning/research/SUMMARY.md using the Write tool.
|