prizmkit 1.1.88 → 1.1.89
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
CHANGED
|
@@ -483,19 +483,6 @@ run_one() {
|
|
|
483
483
|
local bugs_count
|
|
484
484
|
bugs_count=$(echo "$init_result" | python3 -c "import sys,json; print(json.load(sys.stdin).get('bugs_count', 0))" 2>/dev/null || echo "0")
|
|
485
485
|
log_success "Bugfix pipeline initialized with $bugs_count bugs"
|
|
486
|
-
|
|
487
|
-
# Ensure state directory is gitignored
|
|
488
|
-
local _gitignore_path
|
|
489
|
-
_gitignore_path="$PROJECT_ROOT/.gitignore"
|
|
490
|
-
local _state_rel
|
|
491
|
-
_state_rel=$(python3 -c "import os; print(os.path.relpath('$STATE_DIR', '$PROJECT_ROOT'))" 2>/dev/null || echo ".prizmkit/state/bugfix")
|
|
492
|
-
if [[ -f "$_gitignore_path" ]]; then
|
|
493
|
-
if ! grep -qF "$_state_rel" "$_gitignore_path" 2>/dev/null; then
|
|
494
|
-
printf '\n# Pipeline runtime state (auto-added by dev-pipeline)\n%s/\n' "$_state_rel" >> "$_gitignore_path"
|
|
495
|
-
fi
|
|
496
|
-
else
|
|
497
|
-
printf '# Pipeline runtime state (auto-added by dev-pipeline)\n%s/\n' "$_state_rel" > "$_gitignore_path"
|
|
498
|
-
fi
|
|
499
486
|
fi
|
|
500
487
|
|
|
501
488
|
# Verify bug exists
|
|
@@ -843,19 +830,6 @@ main() {
|
|
|
843
830
|
local bugs_count
|
|
844
831
|
bugs_count=$(echo "$init_result" | python3 -c "import sys,json; print(json.load(sys.stdin).get('bugs_count', 0))" 2>/dev/null || echo "0")
|
|
845
832
|
log_success "Bugfix pipeline initialized with $bugs_count bugs"
|
|
846
|
-
|
|
847
|
-
# Ensure state directory is gitignored
|
|
848
|
-
local _gitignore_path
|
|
849
|
-
_gitignore_path="$PROJECT_ROOT/.gitignore"
|
|
850
|
-
local _state_rel
|
|
851
|
-
_state_rel=$(python3 -c "import os; print(os.path.relpath('$STATE_DIR', '$PROJECT_ROOT'))" 2>/dev/null || echo ".prizmkit/state/bugfix")
|
|
852
|
-
if [[ -f "$_gitignore_path" ]]; then
|
|
853
|
-
if ! grep -qF "$_state_rel" "$_gitignore_path" 2>/dev/null; then
|
|
854
|
-
printf '\n# Pipeline runtime state (auto-added by dev-pipeline)\n%s/\n' "$_state_rel" >> "$_gitignore_path"
|
|
855
|
-
fi
|
|
856
|
-
else
|
|
857
|
-
printf '# Pipeline runtime state (auto-added by dev-pipeline)\n%s/\n' "$_state_rel" > "$_gitignore_path"
|
|
858
|
-
fi
|
|
859
833
|
else
|
|
860
834
|
log_info "Resuming existing bugfix pipeline..."
|
|
861
835
|
fi
|
|
@@ -1084,21 +1084,6 @@ main() {
|
|
|
1084
1084
|
local features_count
|
|
1085
1085
|
features_count=$(echo "$init_result" | python3 -c "import sys,json; print(json.load(sys.stdin).get('features_count', 0))" 2>/dev/null || echo "0")
|
|
1086
1086
|
log_success "Pipeline initialized with $features_count features"
|
|
1087
|
-
|
|
1088
|
-
# Ensure state directory is gitignored (prevents branch-switch state loss)
|
|
1089
|
-
local _gitignore_path
|
|
1090
|
-
_gitignore_path="$PROJECT_ROOT/.gitignore"
|
|
1091
|
-
local _state_rel
|
|
1092
|
-
_state_rel=$(python3 -c "import os; print(os.path.relpath('$STATE_DIR', '$PROJECT_ROOT'))" 2>/dev/null || echo ".prizmkit/state/features")
|
|
1093
|
-
if [[ -f "$_gitignore_path" ]]; then
|
|
1094
|
-
if ! grep -qF "$_state_rel" "$_gitignore_path" 2>/dev/null; then
|
|
1095
|
-
printf '\n# Pipeline runtime state (auto-added by dev-pipeline)\n%s/\n' "$_state_rel" >> "$_gitignore_path"
|
|
1096
|
-
log_info "Added $_state_rel/ to .gitignore"
|
|
1097
|
-
fi
|
|
1098
|
-
else
|
|
1099
|
-
printf '# Pipeline runtime state (auto-added by dev-pipeline)\n%s/\n' "$_state_rel" > "$_gitignore_path"
|
|
1100
|
-
log_info "Created .gitignore with $_state_rel/"
|
|
1101
|
-
fi
|
|
1102
1087
|
else
|
|
1103
1088
|
log_info "Resuming existing pipeline..."
|
|
1104
1089
|
fi
|
|
@@ -510,19 +510,6 @@ run_one() {
|
|
|
510
510
|
local refactors_count
|
|
511
511
|
refactors_count=$(echo "$init_result" | python3 -c "import sys,json; print(json.load(sys.stdin).get('refactors_count', 0))" 2>/dev/null || echo "0")
|
|
512
512
|
log_success "Refactor pipeline initialized with $refactors_count refactors"
|
|
513
|
-
|
|
514
|
-
# Ensure state directory is gitignored
|
|
515
|
-
local _gitignore_path
|
|
516
|
-
_gitignore_path="$PROJECT_ROOT/.gitignore"
|
|
517
|
-
local _state_rel
|
|
518
|
-
_state_rel=$(python3 -c "import os; print(os.path.relpath('$STATE_DIR', '$PROJECT_ROOT'))" 2>/dev/null || echo ".prizmkit/state/refactor")
|
|
519
|
-
if [[ -f "$_gitignore_path" ]]; then
|
|
520
|
-
if ! grep -qF "$_state_rel" "$_gitignore_path" 2>/dev/null; then
|
|
521
|
-
printf '\n# Pipeline runtime state (auto-added by dev-pipeline)\n%s/\n' "$_state_rel" >> "$_gitignore_path"
|
|
522
|
-
fi
|
|
523
|
-
else
|
|
524
|
-
printf '# Pipeline runtime state (auto-added by dev-pipeline)\n%s/\n' "$_state_rel" > "$_gitignore_path"
|
|
525
|
-
fi
|
|
526
513
|
fi
|
|
527
514
|
|
|
528
515
|
# Verify refactor exists
|
|
@@ -873,19 +860,6 @@ main() {
|
|
|
873
860
|
local refactors_count
|
|
874
861
|
refactors_count=$(echo "$init_result" | python3 -c "import sys,json; print(json.load(sys.stdin).get('refactors_count', 0))" 2>/dev/null || echo "0")
|
|
875
862
|
log_success "Refactor pipeline initialized with $refactors_count refactors"
|
|
876
|
-
|
|
877
|
-
# Ensure state directory is gitignored
|
|
878
|
-
local _gitignore_path
|
|
879
|
-
_gitignore_path="$PROJECT_ROOT/.gitignore"
|
|
880
|
-
local _state_rel
|
|
881
|
-
_state_rel=$(python3 -c "import os; print(os.path.relpath('$STATE_DIR', '$PROJECT_ROOT'))" 2>/dev/null || echo ".prizmkit/state/refactor")
|
|
882
|
-
if [[ -f "$_gitignore_path" ]]; then
|
|
883
|
-
if ! grep -qF "$_state_rel" "$_gitignore_path" 2>/dev/null; then
|
|
884
|
-
printf '\n# Pipeline runtime state (auto-added by dev-pipeline)\n%s/\n' "$_state_rel" >> "$_gitignore_path"
|
|
885
|
-
fi
|
|
886
|
-
else
|
|
887
|
-
printf '# Pipeline runtime state (auto-added by dev-pipeline)\n%s/\n' "$_state_rel" > "$_gitignore_path"
|
|
888
|
-
fi
|
|
889
863
|
else
|
|
890
864
|
log_info "Resuming existing refactor pipeline..."
|
|
891
865
|
fi
|