prizmkit 1.1.81 → 1.1.82
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/bundled/VERSION.json +3 -3
- package/bundled/dev-pipeline/lib/heartbeat.sh +1 -1
- package/bundled/dev-pipeline/run-feature.sh +3 -3
- package/bundled/dev-pipeline/templates/bootstrap-tier1.md +2 -5
- package/bundled/dev-pipeline/templates/bootstrap-tier2.md +2 -5
- package/bundled/dev-pipeline/templates/bootstrap-tier3.md +2 -5
- package/bundled/dev-pipeline/templates/sections/failure-capture.md +0 -5
- package/bundled/skills/_metadata.json +1 -1
- package/package.json +1 -1
package/bundled/VERSION.json
CHANGED
|
@@ -185,7 +185,7 @@ PY
|
|
|
185
185
|
# growing with repeated failed reads or wasted calls.
|
|
186
186
|
if [[ "$error_loop_detected" == "true" ]]; then
|
|
187
187
|
stale_seconds=$effective_stale_kill_threshold
|
|
188
|
-
elif [[ $growth -
|
|
188
|
+
elif [[ $growth -le 0 && $child_growth -eq 0 ]]; then
|
|
189
189
|
stale_seconds=$((stale_seconds + heartbeat_interval))
|
|
190
190
|
else
|
|
191
191
|
stale_seconds=0
|
|
@@ -990,7 +990,7 @@ else:
|
|
|
990
990
|
|
|
991
991
|
# Commit feature status update on the original branch (after guaranteed return)
|
|
992
992
|
if ! git -C "$_proj_root" diff --quiet "$feature_list" 2>/dev/null; then
|
|
993
|
-
git -C "$_proj_root" add "$feature_list"
|
|
993
|
+
git -C "$_proj_root" add "$feature_list" 2>/dev/null || true
|
|
994
994
|
git -C "$_proj_root" commit --no-verify -m "chore($feature_id): update feature status" 2>/dev/null || true
|
|
995
995
|
fi
|
|
996
996
|
|
|
@@ -1424,7 +1424,7 @@ DEPLOY_PROMPT_EOF
|
|
|
1424
1424
|
|
|
1425
1425
|
# Commit feature status update on the original branch (after guaranteed return)
|
|
1426
1426
|
if ! git -C "$_proj_root" diff --quiet "$feature_list" 2>/dev/null; then
|
|
1427
|
-
git -C "$_proj_root" add "$feature_list"
|
|
1427
|
+
git -C "$_proj_root" add "$feature_list" 2>/dev/null || true
|
|
1428
1428
|
git -C "$_proj_root" commit --no-verify -m "chore($feature_id): update feature status" 2>/dev/null || true
|
|
1429
1429
|
fi
|
|
1430
1430
|
|
|
@@ -1636,7 +1636,7 @@ case "${1:-run}" in
|
|
|
1636
1636
|
|
|
1637
1637
|
# Commit the status change
|
|
1638
1638
|
if ! git diff --quiet "$_unskip_feature_list" 2>/dev/null; then
|
|
1639
|
-
git add "$_unskip_feature_list"
|
|
1639
|
+
git add "$_unskip_feature_list" 2>/dev/null || true
|
|
1640
1640
|
git commit -m "chore: unskip auto-skipped features" 2>/dev/null || true
|
|
1641
1641
|
fi
|
|
1642
1642
|
;;
|
|
@@ -418,11 +418,6 @@ If you encounter an unrecoverable error, context overflow, or are about to exit
|
|
|
418
418
|
|
|
419
419
|
2. This file is intentionally lightweight — write it BEFORE context runs out.
|
|
420
420
|
|
|
421
|
-
**Lifecycle**: failure-log.md is a temporary cross-session artifact. Do NOT commit it to git. After a successful session (all phases complete + commit done), delete it:
|
|
422
|
-
```bash
|
|
423
|
-
rm -f .prizmkit/specs/{{FEATURE_SLUG}}/failure-log.md
|
|
424
|
-
```
|
|
425
|
-
|
|
426
421
|
## Reminders
|
|
427
422
|
|
|
428
423
|
- Tier 1: you handle everything directly — no subagents needed
|
|
@@ -432,3 +427,5 @@ rm -f .prizmkit/specs/{{FEATURE_SLUG}}/failure-log.md
|
|
|
432
427
|
- Do NOT run `git add`/`git commit` during Phase 1-3 — all changes are committed once in Phase 4
|
|
433
428
|
- If any files remain after the commit, amend the existing commit — do NOT create a follow-up commit
|
|
434
429
|
- When staging files, always use explicit file names — NEVER use `git add -A` or `git add .`
|
|
430
|
+
- **NEVER delete, modify, or touch any file under `.prizmkit/state/`** — those are pipeline runtime files managed by the runner
|
|
431
|
+
- NEVER run `rm -rf`, `git clean`, or any destructive filesystem operations
|
|
@@ -534,11 +534,6 @@ If you encounter an unrecoverable error, context overflow, or are about to exit
|
|
|
534
534
|
|
|
535
535
|
2. This file is intentionally lightweight — write it BEFORE context runs out.
|
|
536
536
|
|
|
537
|
-
**Lifecycle**: failure-log.md is a temporary cross-session artifact. Do NOT commit it to git. After a successful session (all phases complete + commit done), delete it:
|
|
538
|
-
```bash
|
|
539
|
-
rm -f .prizmkit/specs/{{FEATURE_SLUG}}/failure-log.md
|
|
540
|
-
```
|
|
541
|
-
|
|
542
537
|
## Reminders
|
|
543
538
|
|
|
544
539
|
- Tier 2: orchestrator builds context+plan, Analyzer checks consistency, Dev implements, Reviewer reviews+tests — use direct Agent spawn for agents
|
|
@@ -546,6 +541,8 @@ rm -f .prizmkit/specs/{{FEATURE_SLUG}}/failure-log.md
|
|
|
546
541
|
- context-snapshot.md is append-only: orchestrator writes Sections 1-4, Dev appends Implementation Log, Reviewer appends Review Notes
|
|
547
542
|
- Gate checks enforce Implementation Log and Review Notes are written before proceeding
|
|
548
543
|
- Do NOT use `run_in_background=true` when spawning subagents
|
|
544
|
+
- **NEVER delete, modify, or touch any file under `.prizmkit/state/`** — those are pipeline runtime files managed by the runner
|
|
545
|
+
- NEVER run `rm -rf`, `git clean`, or any destructive filesystem operations
|
|
549
546
|
- `/prizmkit-committer` is mandatory, and must not be replaced with manual git commit commands
|
|
550
547
|
- Do NOT run `git add`/`git commit` during Phase 1-5 — all changes are committed once in Phase 6
|
|
551
548
|
- If any files remain after the commit, amend the existing commit — do NOT create a follow-up commit
|
|
@@ -612,11 +612,6 @@ If you encounter an unrecoverable error, context overflow, or are about to exit
|
|
|
612
612
|
|
|
613
613
|
2. This file is intentionally lightweight — write it BEFORE context runs out.
|
|
614
614
|
|
|
615
|
-
**Lifecycle**: failure-log.md is a temporary cross-session artifact. Do NOT commit it to git. After a successful session (all phases complete + commit done), delete it:
|
|
616
|
-
```bash
|
|
617
|
-
rm -f .prizmkit/specs/{{FEATURE_SLUG}}/failure-log.md
|
|
618
|
-
```
|
|
619
|
-
|
|
620
615
|
## Reminders
|
|
621
616
|
|
|
622
617
|
- Tier 3: full team — Dev (implementation) → Reviewer (review + test) — spawn agents directly via Agent tool
|
|
@@ -624,6 +619,8 @@ rm -f .prizmkit/specs/{{FEATURE_SLUG}}/failure-log.md
|
|
|
624
619
|
- Gate checks enforce Implementation Log and Review Notes are written before proceeding
|
|
625
620
|
- Do NOT use `run_in_background=true` when spawning agents
|
|
626
621
|
- Commit phase must use `/prizmkit-committer`; do NOT replace with manual git commit commands
|
|
622
|
+
- **NEVER delete, modify, or touch any file under `.prizmkit/state/`** — those are pipeline runtime files managed by the runner
|
|
623
|
+
- NEVER run `rm -rf`, `git clean`, or any destructive filesystem operations
|
|
627
624
|
- Do NOT run `git add`/`git commit` during Phase 1-5 — all changes are committed once in Phase 6
|
|
628
625
|
- If any files remain after the commit, amend the existing commit — do NOT create a follow-up commit
|
|
629
626
|
- When staging files, always use explicit file names — NEVER use `git add -A` or `git add .`
|
|
@@ -14,8 +14,3 @@ If you encounter an unrecoverable error, context overflow, or are about to exit
|
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
2. This file is intentionally lightweight — write it BEFORE context runs out.
|
|
17
|
-
|
|
18
|
-
**Lifecycle**: failure-log.md is a temporary cross-session artifact. Do NOT commit it to git. After a successful session (all phases complete + commit done), delete it:
|
|
19
|
-
```bash
|
|
20
|
-
rm -f .prizmkit/specs/{{FEATURE_SLUG}}/failure-log.md
|
|
21
|
-
```
|