@ikunin/sprintpilot 2.2.25 → 2.2.26
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.
|
@@ -94,6 +94,14 @@ function flatToProfile(resolved, profileName) {
|
|
|
94
94
|
),
|
|
95
95
|
coalesce_state_writes: coerceBool(get(resolved, 'autopilot.coalesce_state_writes'), false),
|
|
96
96
|
conditional_boot_work: coerceBool(get(resolved, 'autopilot.conditional_boot_work'), false),
|
|
97
|
+
// autopilot.phase_timings — when false, logSkillTiming returns early
|
|
98
|
+
// and the .timings/<story>.jsonl shards stop receiving events. Set
|
|
99
|
+
// false on the `legacy` profile (no parallel coordination, no need
|
|
100
|
+
// for granular timing). Default true on every other profile.
|
|
101
|
+
// Pre-2.2.26: flatToProfile didn't include this field, so
|
|
102
|
+
// `profile.phase_timings === false` was always false (undefined !==
|
|
103
|
+
// false), meaning the legacy override never took effect.
|
|
104
|
+
phase_timings: coerceBool(get(resolved, 'autopilot.phase_timings'), true),
|
|
97
105
|
granularity: coerceEnum(get(resolved, 'git.granularity'), VALID_GRANULARITIES, 'story'),
|
|
98
106
|
worktree_enabled: coerceBool(get(resolved, 'git.worktree.enabled'), true),
|
|
99
107
|
// git.worktree.health_check_on_boot — when true, cmdStart runs
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ikunin/sprintpilot",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.26",
|
|
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": {
|