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.
- package/bundled/VERSION.json +3 -3
- package/bundled/dev-pipeline/run-bugfix.sh +3 -8
- package/bundled/dev-pipeline/run-feature.sh +3 -8
- package/bundled/dev-pipeline/run-recovery.sh +691 -0
- package/bundled/dev-pipeline/run-refactor.sh +3 -8
- package/bundled/dev-pipeline/scripts/generate-recovery-prompt.py +759 -0
- package/bundled/skills/_metadata.json +1 -1
- package/bundled/skills/recovery-workflow/SKILL.md +72 -9
- package/bundled/skills/recovery-workflow/scripts/detect-recovery-state.py +111 -42
- package/package.json +1 -1
package/bundled/VERSION.json
CHANGED
|
@@ -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
|
|
761
|
-
#
|
|
762
|
-
#
|
|
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
|
|
925
|
-
#
|
|
926
|
-
#
|
|
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
|