prizmkit 1.1.152 → 1.1.154
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/README.md +100 -87
- package/bundled/dev-pipeline/assets/skill-subagent-integration.md +1 -1
- package/bundled/dev-pipeline/prizmkit_runtime/checkpoint_state.py +14 -0
- package/bundled/dev-pipeline/prizmkit_runtime/cli.py +192 -110
- package/bundled/dev-pipeline/prizmkit_runtime/commands.py +146 -111
- package/bundled/dev-pipeline/prizmkit_runtime/daemon.py +3 -5
- package/bundled/dev-pipeline/prizmkit_runtime/interoperability.py +0 -1
- package/bundled/dev-pipeline/prizmkit_runtime/paths.py +0 -3
- package/bundled/dev-pipeline/prizmkit_runtime/reset.py +122 -15
- package/bundled/dev-pipeline/prizmkit_runtime/reset_preserve.py +1 -1
- package/bundled/dev-pipeline/prizmkit_runtime/runner_models.py +1 -1
- package/bundled/dev-pipeline/prizmkit_runtime/runners.py +19 -52
- package/bundled/dev-pipeline/prizmkit_runtime/status.py +106 -1
- package/bundled/dev-pipeline/scripts/init-bugfix-pipeline.py +2 -2
- package/bundled/dev-pipeline/scripts/parse-stream-progress.py +10 -12
- package/bundled/dev-pipeline/scripts/update-bug-status.py +196 -67
- package/bundled/dev-pipeline/scripts/update-checkpoint.py +16 -3
- package/bundled/dev-pipeline/scripts/update-feature-status.py +45 -117
- package/bundled/dev-pipeline/scripts/update-refactor-status.py +45 -119
- package/bundled/dev-pipeline/scripts/utils.py +119 -0
- package/bundled/dev-pipeline/templates/bug-fix-list-schema.json +3 -2
- package/bundled/dev-pipeline/tests/test_auto_skip.py +111 -32
- package/bundled/dev-pipeline/tests/test_checkpoint_state.py +148 -12
- package/bundled/dev-pipeline/tests/test_generate_bootstrap_prompt.py +0 -19
- package/bundled/dev-pipeline/tests/test_python_runner_parity.py +113 -188
- package/bundled/dev-pipeline/tests/test_recovery_workflow.py +211 -0
- package/bundled/dev-pipeline/tests/test_reset_modes.py +935 -0
- package/bundled/dev-pipeline/tests/test_reset_preserve.py +5 -5
- package/bundled/dev-pipeline/tests/test_unified_cli.py +544 -181
- package/bundled/skills/_metadata.json +1 -1
- package/bundled/skills/bug-planner/references/schema-validation.md +1 -1
- package/bundled/skills/bug-planner/scripts/validate-bug-list.py +1 -1
- package/bundled/skills/bugfix-pipeline-launcher/SKILL.md +21 -13
- package/bundled/skills/feature-pipeline-launcher/SKILL.md +22 -14
- package/bundled/skills/recovery-workflow/SKILL.md +7 -5
- package/bundled/skills/recovery-workflow/evals/evals.json +2 -2
- package/bundled/skills/recovery-workflow/references/detection.md +3 -3
- package/bundled/skills/recovery-workflow/scripts/detect-recovery-state.py +1 -1
- package/bundled/skills/refactor-pipeline-launcher/SKILL.md +21 -13
- package/bundled/templates/project-memory-template.md +19 -11
- package/package.json +1 -1
- package/bundled/dev-pipeline/prizmkit_runtime/runner_recovery.py +0 -228
- package/bundled/dev-pipeline/scripts/generate-recovery-prompt.py +0 -767
|
@@ -306,9 +306,9 @@ def test_preserve_runtime_option_boundaries_and_removed_reset_run_do_not_mutate_
|
|
|
306
306
|
invalid_cases = [
|
|
307
307
|
(("F-001", "--run"), "no longer accepts --run"),
|
|
308
308
|
(("--preserve-runtime",), "requires --failed"),
|
|
309
|
-
(("--failed", "--preserve-runtime", "--clean"), "
|
|
310
|
-
(("F-001", "--failed", "--preserve-runtime"), "cannot target an ID or
|
|
311
|
-
(("F-001:F-003", "--failed", "--preserve-runtime"), "cannot target an ID or
|
|
309
|
+
(("--failed", "--preserve-runtime", "--clean"), "Exactly one reset mode"),
|
|
310
|
+
(("F-001", "--failed", "--preserve-runtime"), "cannot target an ID, range, or --all"),
|
|
311
|
+
(("F-001:F-003", "--failed", "--preserve-runtime"), "cannot target an ID, range, or --all"),
|
|
312
312
|
(("--failed", "--preserve-runtime", "--stalled"), "Unsupported reset arguments"),
|
|
313
313
|
(("--failed", "--preserve-runtime", "--unknown"), "Unsupported reset arguments"),
|
|
314
314
|
]
|
|
@@ -441,7 +441,7 @@ def test_public_reset_cli_hard_rejects_run_for_every_family_without_state_change
|
|
|
441
441
|
)
|
|
442
442
|
|
|
443
443
|
assert completed.returncode == 2
|
|
444
|
-
assert "
|
|
444
|
+
assert "unrecognized arguments: --run" in completed.stdout + completed.stderr
|
|
445
445
|
assert not (project / ".prizmkit").exists()
|
|
446
446
|
|
|
447
447
|
|
|
@@ -503,7 +503,7 @@ def test_preserve_runtime_success_quotes_list_path_in_separate_run_instruction(t
|
|
|
503
503
|
result = run_reset_command("feature", ("--failed", "--preserve-runtime"), paths)
|
|
504
504
|
|
|
505
505
|
assert result.exit_code == 0
|
|
506
|
-
assert f"feature
|
|
506
|
+
assert f"run feature {shlex.quote(str(plan.resolve()))}" in result.render()
|
|
507
507
|
|
|
508
508
|
|
|
509
509
|
def test_preserve_runtime_requires_recorded_base_to_be_a_local_branch(tmp_path):
|