@ikunin/sprintpilot 2.2.15 → 2.2.16

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.
@@ -1346,6 +1346,29 @@ function cmdStart(opts) {
1346
1346
  );
1347
1347
  }
1348
1348
 
1349
+ // parallel_stories: surface honestly that the documented flag is not
1350
+ // yet wired through the BMad state machine. The supporting pieces
1351
+ // (planBatch, dispatch-layer.js, agent-adapter.js, merge-shards.js)
1352
+ // exist as building blocks but nextAction never emits a parallel_batch
1353
+ // action — every story still flows through the 7-phase cycle one at a
1354
+ // time. A user who sets `ma.parallel_stories: true` and doesn't see
1355
+ // this notice would assume parallelism is happening when it isn't.
1356
+ if (profile.parallel_stories) {
1357
+ ledger.append(
1358
+ {
1359
+ kind: 'state_transition',
1360
+ detail: {
1361
+ parallel_stories_experimental_warning:
1362
+ 'ma.parallel_stories=true is honored by the planBatch / dispatch-layer.js building blocks but the BMad state machine still emits one story at a time. Full intra-epic parallel dispatch is tracked for v2.3.0+. Stories continue sequentially in this session.',
1363
+ },
1364
+ },
1365
+ { projectRoot },
1366
+ );
1367
+ process.stderr.write(
1368
+ '[autopilot] WARN ma.parallel_stories=true but the state machine is not yet wired for parallel dispatch (planned for v2.3.0). Stories will run sequentially this session.\n',
1369
+ );
1370
+ }
1371
+
1349
1372
  // Worktree health check — once per session, after lock acquire so we
1350
1373
  // don't compete with another active session for the same .worktrees
1351
1374
  // directory.
@@ -1,6 +1,6 @@
1
1
  addon:
2
2
  name: sprintpilot
3
- version: 2.2.15
3
+ version: 2.2.16
4
4
  description: Sprintpilot — autopilot and multi-agent addon for BMad Method (git workflow, parallel agents, autonomous story execution)
5
5
  bmad_compatibility: ">=6.2.0"
6
6
  modules:
@@ -1,7 +1,12 @@
1
- # Multi-Agent Configuration — disabled in v1.0
2
- # Enable in v1.1 for parallel code review
1
+ # Multi-Agent Configuration
2
+ #
3
+ # Top-level key MUST be `ma:` — resolve-profile.js merges this under the
4
+ # `ma` namespace, and profile-rules.js reads `ma.parallel_stories` /
5
+ # `ma.max_parallel_stories`. The legacy `multi_agent:` wrapper used in
6
+ # pre-2.2.16 versions was silently ignored (deep-merge produced
7
+ # `resolved.ma.multi_agent.*` instead of `resolved.ma.*`).
3
8
 
4
- multi_agent:
9
+ ma:
5
10
  enabled: true
6
11
  max_parallel_review_layers: 3 # Always 3: blind, edge-case, acceptance
7
12
  max_parallel_research: 3 # Max concurrent research agents per batch
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikunin/sprintpilot",
3
- "version": "2.2.15",
3
+ "version": "2.2.16",
4
4
  "description": "Sprintpilot — autopilot and multi-agent addon for BMad Method v6: git workflow, parallel agents, autonomous story execution",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {