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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "frameworkVersion": "1.1.81",
3
- "bundledAt": "2026-06-29T17:31:12.809Z",
4
- "bundledFrom": "65df08d"
2
+ "frameworkVersion": "1.1.82",
3
+ "bundledAt": "2026-06-30T03:07:55.258Z",
4
+ "bundledFrom": "c12c40b"
5
5
  }
@@ -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 -eq 0 && $child_growth -eq 0 ]]; then
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
- ```
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.1.81",
2
+ "version": "1.1.82",
3
3
  "skills": {
4
4
  "prizm-kit": {
5
5
  "description": "Full-lifecycle dev toolkit. Covers spec-driven development, Prizm context docs, code quality, debugging, deployment, and knowledge management.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prizmkit",
3
- "version": "1.1.81",
3
+ "version": "1.1.82",
4
4
  "description": "Create a new PrizmKit-powered project with clean initialization — no framework dev files, just what you need.",
5
5
  "type": "module",
6
6
  "bin": {