prizmkit 1.1.27 → 1.1.30

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.27",
3
- "bundledAt": "2026-04-12T02:42:55.585Z",
4
- "bundledFrom": "9586f2f"
2
+ "frameworkVersion": "1.1.30",
3
+ "bundledAt": "2026-04-12T13:39:08.680Z",
4
+ "bundledFrom": "62d04b3"
5
5
  }
@@ -757,19 +757,14 @@ else:
757
757
  _source_branch=$(git -C "$_proj_root" rev-parse --abbrev-ref HEAD 2>/dev/null || echo "main")
758
758
  _ORIGINAL_BRANCH="$_source_branch"
759
759
 
760
- # Mark bug as in-progress BEFORE creating dev branch
761
- # This ensures the in_progress status commit lands on the original branch,
762
- # not the dev branch preventing rebase conflicts in branch_merge later.
760
+ # Mark bug as in-progress (update JSON for runtime monitoring, no commit)
761
+ # The status change will be committed together with the final status update
762
+ # after the session completes, avoiding an extra noise commit per bug.
763
763
  python3 "$SCRIPTS_DIR/update-bug-status.py" \
764
764
  --bug-list "$bug_list" \
765
765
  --state-dir "$STATE_DIR" \
766
766
  --bug-id "$bug_id" \
767
767
  --action start >/dev/null 2>&1 || true
768
- # Commit the in_progress status on the original branch
769
- if ! git -C "$_proj_root" diff --quiet "$bug_list" 2>/dev/null; then
770
- git -C "$_proj_root" add "$bug_list" 2>/dev/null || true
771
- git -C "$_proj_root" commit --no-verify -m "chore($bug_id): mark in_progress" 2>/dev/null || true
772
- fi
773
768
 
774
769
  local _branch_name="${DEV_BRANCH:-bugfix/${bug_id}-$(date +%s)}"
775
770
  if branch_create "$_proj_root" "$_branch_name" "$_source_branch"; then
@@ -921,19 +921,14 @@ else:
921
921
  _source_branch=$(git -C "$_proj_root" rev-parse --abbrev-ref HEAD 2>/dev/null || echo "main")
922
922
  _ORIGINAL_BRANCH="$_source_branch"
923
923
 
924
- # Mark feature as in-progress BEFORE creating dev branch
925
- # This ensures the in_progress status commit lands on the original branch,
926
- # not the dev branch preventing rebase conflicts in branch_merge later.
924
+ # Mark feature as in-progress (update JSON for runtime monitoring, no commit)
925
+ # The status change will be committed together with the final status update
926
+ # after the session completes, avoiding an extra noise commit per feature.
927
927
  python3 "$SCRIPTS_DIR/update-feature-status.py" \
928
928
  --feature-list "$feature_list" \
929
929
  --state-dir "$STATE_DIR" \
930
930
  --feature-id "$feature_id" \
931
931
  --action start >/dev/null 2>&1 || true
932
- # Commit the in_progress status on the original branch
933
- if ! git -C "$_proj_root" diff --quiet "$feature_list" 2>/dev/null; then
934
- git -C "$_proj_root" add "$feature_list" 2>/dev/null || true
935
- git -C "$_proj_root" commit --no-verify -m "chore($feature_id): mark in_progress" 2>/dev/null || true
936
- fi
937
932
 
938
933
  local _branch_name="${DEV_BRANCH:-dev/${feature_id}-$(date +%Y%m%d%H%M)}"
939
934
  if branch_create "$_proj_root" "$_branch_name" "$_source_branch"; then