pdd-cli 0.0.264__tar.gz → 0.0.266__tar.gz
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.
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.github/workflows/release.yml +6 -5
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/Makefile +40 -2
- {pdd_cli-0.0.264/pdd_cli.egg-info → pdd_cli-0.0.266}/PKG-INFO +1 -1
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/README.md +11 -3
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/architecture.json +56 -8
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/ONBOARDING.md +4 -4
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/prompt_lint.md +7 -1
- pdd_cli-0.0.266/docs/prompt_repair.md +114 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/_version.py +3 -3
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_checkup.py +392 -19
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_checkup_orchestrator.py +515 -46
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_common.py +58 -22
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/checkup_gates.py +0 -82
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/checkup_prompt_main.py +31 -14
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/checkup_review_loop.py +110 -15
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/ci_validation.py +238 -16
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/checkup.py +172 -16
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/fix_error_loop.py +3 -2
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/json_atomic.py +26 -0
- pdd_cli-0.0.266/pdd/prompt_repair.py +703 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_checkup_python.prompt +23 -3
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_checkup_step5_test_LLM.prompt +3 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_checkup_step7_verify_LLM.prompt +15 -4
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/checkup_gates_python.prompt +0 -1
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/ci_validation_python.prompt +3 -1
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/checkup_python.prompt +33 -4
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/fix_error_loop_python.prompt +3 -1
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/pdd_completion_bash.prompt +1 -1
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/pdd_completion_fish.prompt +1 -1
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/pdd_completion_zsh.prompt +1 -1
- pdd_cli-0.0.266/pdd/prompts/prompt_repair_python.prompt +85 -0
- pdd_cli-0.0.266/pdd/prompts/release_video_script_LLM.prompt +59 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266/pdd_cli.egg-info}/PKG-INFO +1 -1
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd_cli.egg-info/SOURCES.txt +6 -1
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/scripts/release_video.py +127 -31
- pdd_cli-0.0.266/tests/scripts/source_set_repair_cli_smoke.py +197 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_checkup_orchestrator.py +419 -21
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_common.py +89 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_checkup_gates.py +12 -104
- pdd_cli-0.0.266/tests/test_checkup_prompt_main.py +464 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_checkup_review_loop.py +52 -6
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_ci_validation.py +213 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_final_pr_gate.py +321 -32
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_fix_error_loop.py +31 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_fix_main.py +36 -17
- pdd_cli-0.0.266/tests/test_prompt_repair.py +559 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_release_video.py +186 -6
- pdd_cli-0.0.264/tests/test_checkup_prompt_main.py +0 -228
- pdd_cli-0.0.264/user_stories/story__checkup_gates_doc_contract.md +0 -46
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.env.example +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.gitattributes +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.github/dependabot.yml +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.github/workflows/auto-heal.yml +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.github/workflows/backfill-release-notes.yml +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.github/workflows/pdd-secrets-dispatch.yml +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.github/workflows/unit-tests.yml +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.gitignore +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_architecture_orchestrator_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_bug_orchestrator_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_bug_orchestrator_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_bug_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_change_orchestrator_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_change_orchestrator_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_checkup_orchestrator_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_checkup_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_checkup_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_common_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_common_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_crash_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_e2e_fix_orchestrator_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_e2e_fix_orchestrator_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_fix_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_split_orchestrator_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_split_orchestrator_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_sync_runner_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_update_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/agentic_verify_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/architecture_sync_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/architecture_sync_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/checkup_review_loop_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/checkup_review_loop_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/ci_drift_heal_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/code_generator_main_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/commands_checkup_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/commands_checkup_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/commands_modify_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/commands_modify_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/commands_prompt_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/core_cloud_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/fix_code_loop_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/fix_error_loop_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/get_comment_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/get_test_command_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/git_update_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/llm_invoke_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/llm_invoke_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/metadata_sync_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/metadata_sync_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/pin_example_hack_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/pin_example_hack_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/preprocess_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/prompt_lint_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/provider_manager_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/provider_manager_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/server_jobs_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/summarize_directory_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/summarize_directory_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/sync_determine_operation_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/sync_orchestration_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/sync_orchestration_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/sync_tui_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/sync_tui_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/track_cost_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/track_cost_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pdd/meta/update_main_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pddignore +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.pddrc +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/.sync-config.yml +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/AGENTS.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/CHANGELOG.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/CLAUDE.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/CONTRIBUTING.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/GEMINI.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/LICENSE +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/SETUP_WITH_GEMINI.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/SETUP_WITH_WINDOWS.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/ci/cloud-batch/Dockerfile +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/ci/cloud-batch/balance-chunks.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/ci/cloud-batch/cloudbuild.yaml +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/ci/cloud-batch/collect-results.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/ci/cloud-batch/entrypoint.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/ci/cloud-batch/job-template-standard.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/ci/cloud-batch/job-template.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/ci/cloud-batch/setup-gcp.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/ci/cloud-batch/submit.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/ci/cloud-batch/test-durations.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/DSPy_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/__init__example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/_keyring_timeout_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_architecture_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_architecture_orchestrator_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_bug_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_bug_orchestrator_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_change_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_change_orchestrator_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_checkup_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_checkup_orchestrator_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_common_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_crash_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_e2e_fix_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_e2e_fix_orchestrator_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_fix_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_langtest_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_split_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_split_orchestrator_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_sync_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_sync_runner_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_test_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_test_orchestrator_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_update_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/agentic_verify_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/anthropic_counter_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/anthropic_tool_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/api_contract_slicer_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/api_key_scanner_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/architecture_registry_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/architecture_sync_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/auth_service_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/auto_deps_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/auto_include_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/auto_update_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/autotokenizer_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/bug_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/bug_to_unit_test_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/bug_to_unit_test_failure_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/1/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/1/final_code_generator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/1/initial_code_generator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/1/initial_code_generator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/10/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/10/final_fix_errors_from_unit_tests_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/10/initial_fix_errors_from_unit_tests.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/10/initial_fix_errors_from_unit_tests_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/11/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/11/initial_code_generator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/11/initial_code_generator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/11/initial_split_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/12/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/12/final_unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/12/initial_postprocess.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/12/initial_postprocess_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/13/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/13/initial_split.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/13/initial_split_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/13/modified_initial_split.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/14/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/14/initial_change.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/14/initial_change_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/14/modified_initial_change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/15/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/15/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/15/initial_cli.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/15/initial_cli_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/15/modified_initial_cli.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/16/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/16/fix_code_module_errors_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/16/fix_code_module_errors_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/16/fix_error_loop.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/16/fix_error_loop_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/16/fix_errors_from_unit_tests_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/16/modified_fix_error_loop_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/17/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/17/continue_generation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/17/continue_generation_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/17/unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/17/updated_continue_generation_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/17/updated_unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/18/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/18/code_generator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/18/code_generator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/18/unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/18/updated_code_generator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/18/updated_unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/19/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/19/context_generator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/19/context_generator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/19/unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/19/updated_context_generator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/19/updated_unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/2/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/2/final_context_generator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/2/initial_context_generator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/2/initial_context_generator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/20/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/20/generate_test.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/20/generate_test_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/20/updated_generate_test_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/21/auto_deps_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/21/auto_include.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/21/auto_include_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/21/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/22/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/22/preprocess.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/22/preprocess_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/22/preprocess_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/3/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/3/final_test_generator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/3/initial_test_generator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/3/intial_test_generator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/4/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/4/final_postprocess_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/4/initial_postprocess.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/4/initial_postprocess_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/5/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/5/final_split_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/5/initial_split.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/5/initial_split_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/6/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/6/final_xml_tagger_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/6/initial_xml_tagger.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/6/initial_xml_tagger_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/7/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/7/final_fix_errors_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/7/initial_fix_errors.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/7/initial_fix_errors_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/8/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/8/final_fix_errors_from_unit_tests_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/8/initial_fix_errors_from_unit_tests.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/8/initial_fix_errors_from_unit_tests_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/9/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/9/final_fix_error_loop_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/9/initial_fix_error_loop.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/9/initial_fix_error_loop_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change/simple_math/change.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/change_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/checkup_gates_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/checkup_review_loop_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/ci_detect_changed_modules_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/ci_drift_heal_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/ci_validation_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/cli_detector_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/cli_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/click_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/click_executor_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/cloud_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/cloud_function_call.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/cmd_test_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/code_generator_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/code_generator_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/commands/__init___example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/commands/analysis_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/commands/auth_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/commands/checkup_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/commands/connect_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/commands/fix_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/commands/generate_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/commands/maintenance_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/commands/misc_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/commands/modify_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/commands/sessions_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/commands/templates_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/commands/utility_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/comment_line_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/config_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/conflicts_in_prompts_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/conflicts_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/construct_paths_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/content_selector_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/context_generator_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/context_generator_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/continue_generation_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/core/cli_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/core/cloud_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/core/dump_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/core/duplicate_cli_guard_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/core/errors_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/core/utils_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/crash_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/ctx_obj_params.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/detect_change_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/detect_change_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/dict_utils_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/edit_file_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/embed_retrieve_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/example.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/extracts_prune_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/fastapi_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/find_section_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/firecrawl_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/fix_code_loop_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/fix_code_module_errors_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/fix_error_loop_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/fix_errors_from_unit_tests_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/fix_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/fix_verification_errors_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/fix_verification_errors_loop_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/fix_verification_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/gemini_may_pro_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/generate_model_catalog_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/generate_output_paths_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/generate_test_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/generation_completion_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/get_comment_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/get_extension_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/get_jwt_token_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/get_language_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/get_run_command_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/get_test_command_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/git_update_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/include_query_extractor_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/increase_tests_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/incremental_code_generator_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/insert_includes_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/install_completion_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/job_manager_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/langchain_lcel_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/list_stats_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/llm_invoke_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/llm_model_ranges_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/llm_selector_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/load_prompt_template_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/logo_animation_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/metadata_sync_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/model_tester_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/one_session_sync_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/operation_log_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/path_resolution_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/pdd_completion_example.fish +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/pdd_completion_example.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/pdd_completion_example.zsh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/pddrc_initializer_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/pin_example_hack_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/postprocess_0_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/postprocess_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/pre_checkup_gate_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/preprocess_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/preprocess_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/process_csv_change_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/provider_manager_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/pytest_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/pytest_isolation_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/pytest_output_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/pytest_slicer_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/python_env_detector_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/python_preamble.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/range_validator_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/remote_session_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/render_mermaid_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/resolve_effective_config_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/__init___example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/app_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/click_executor_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/executor_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/jobs_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/models_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/routes/__init___example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/routes/architecture_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/routes/auth_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/routes/commands_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/routes/config_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/routes/extracts_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/routes/files_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/routes/prompts_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/routes/session_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/routes/websocket_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/security_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/terminal_spawner_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/server/token_counter_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/setup_tool_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/split/simple_math/split_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/split_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/split_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/split_validation_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/summarize_directory_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/sync_animation_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/sync_code_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/sync_determine_operation_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/sync_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/sync_orchestration_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/sync_order_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/sync_tui_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/test.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/tiktoken_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/trace_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/trace_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/track_cost_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/unfinished_prompt_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/update_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/update_model_costs_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/update_prompt_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/user_story_tests_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/validate_prompt_includes_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/websocket_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/context/xml_tagger_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/Software Development Costs and Maintenance_ 2022/342/200/2232025 Trends and AI Impact.md" +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/TUTORIALS.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/architecture_include_validation.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/architecture_postcheck_waivers.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/checkup_prompt_quality_gate.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/checkup_simplify.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/checkup_simplify_providers.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/checkup_verifier.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/ci.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/comparison.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/contract_check.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/coverage_contracts.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/drift.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/evidence_manifest.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/examples/prompt_with_metadata.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/faq.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/goldilocks_prompt.jpeg +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/grounding_policy.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/issue_820_user_story_template.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/issues/issue_813_verification_plan.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/mid_run_steering_validation.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/new_whitepaper.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/o3_whitepaper.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/orig_whitepaper.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/path_resolution_resolver.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/pdd_vs_agentic_cli_definitive_proof_plan.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/prompt-driven-development-doctrine.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/prompting_guide.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/runbooks/pr-loop-process.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/skills/checkup-simplify/SKILL.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/standup_notes.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/sync_architecture_analysis.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/sync_determination_analysis.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/sync_solution_o3pro.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/sync_solution_opus.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/the-last-programming-language.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/videos/handpaint_demo.gif +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_before_4.5.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/evidence/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/evidence/SHA256SUMS.txt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/evidence/_session_classification.tsv +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/evidence/prompts_pdd.jsonl +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/evidence/prompts_pdd.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/evidence/prompts_vibe.jsonl +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/evidence/prompts_vibe.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/evidence/quote_map.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/images/loop.mmd +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/images/loop.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/images/oscillation.mmd +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/images/oscillation.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/images/pdd_cycle.mmd +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/images/pdd_cycle.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/images/pipeline.mmd +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/images/pipeline.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/images/threshold.mmd +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/images/threshold.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_specification_drift/whitepaper.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/analysis_report/avg_api_cost_by_edit_type.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/analysis_report/avg_api_cost_by_file_size.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/analysis_report/avg_api_cost_by_language.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/analysis_report/avg_execution_time_by_edit_type.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/analysis_report/avg_execution_time_by_file_size.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/analysis_report/avg_execution_time_by_language.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/analysis_report/cost_per_successful_task.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/analysis_report/overall_avg_api_cost.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/analysis_report/overall_avg_execution_time.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/analysis_report/overall_success_rate.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/analysis_report/success_rate_by_edit_type.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/analysis_report/success_rate_by_file_size.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/analysis_report/success_rate_by_language.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/analysis_report/time_vs_cost_scatter.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/analysis_report/total_api_cost_comparison.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/creation_report/claude_cost_per_run_dist.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/creation_report/claude_lines_added_removed_dist.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/creation_report/claude_wall_duration_dist.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/creation_report/pdd_avg_cost_per_module_dist.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/creation_report/pdd_top_modules_by_cost.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/creation_report/pdd_top_modules_by_time.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/creation_report/pdd_total_time_per_module_dist.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/creation_report/total_cost_comparison.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/creation_report/total_time_comparison.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/docs/whitepaper_with_benchmarks/whitepaper_w_benchmarks.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/environment.yml +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_bug_orchestrator_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_change_orchestrator_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_checkup_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_common_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_common_worktree_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_e2e_fix_orchestrator_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example/main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example/src/main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example/src/utils.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example/tests/test_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example/utils_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_gradle/.gitignore +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_gradle/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_gradle/build.gradle +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_gradle/gradle/wrapper/gradle-wrapper.jar +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_gradle/gradle/wrapper/gradle-wrapper.properties +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_gradle/gradlew +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_gradle/gradlew.bat +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_gradle/main_java.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_gradle/settings.gradle +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_gradle/src/main/java/Main.java +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_gradle/src/main/java/Util.java +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_gradle/src/test/java/TestMain.java +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_gradle/util_java.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_maven/.gitignore +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_maven/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_maven/main_java.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_maven/pom.xml +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_maven/src/main/java/Main.java +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_maven/src/main/java/Util.java +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_maven/src/test/java/TestMain.java +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_java_maven/util_java.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_javascript/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_javascript/main_javascript.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_javascript/package.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_javascript/src/main.js +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_javascript/src/utils.js +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_javascript/tests/test_main.js +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_javascript/utils_javascript.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_typescript/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_typescript/main_typescript.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_typescript/package.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_typescript/src/main.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_typescript/src/utils.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_typescript/tests/test_main.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_typescript/tsconfig.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_fallback_example_typescript/utils_typescript.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_split_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/agentic_split_orchestrator_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/arch/ORDER_MANAGEMENT_PRD.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/arch/architecture.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/arch/architecture_diagram.html +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/arch/tech_stack.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/architecture_contract_summary_demo/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/architecture_contract_summary_demo/TOUCHPOINTS.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/architecture_contract_summary_demo/architecture.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/architecture_contract_summary_demo/prompts/legacy_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/architecture_contract_summary_demo/prompts/refund_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/architecture_contract_summary_demo/run_demo.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/architecture_contract_summary_demo/run_demo.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/architecture_contract_summary_demo/user_stories/story__refund_cap.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/checkup_review_loop_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/checkup_simplify_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/context_snapshot_demo/.gitignore +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/context_snapshot_demo/.pddrc +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/context_snapshot_demo/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/context_snapshot_demo/context/note.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/context_snapshot_demo/pdd/.gitkeep +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/context_snapshot_demo/prompts/dynamic_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/context_snapshot_demo/prompts/foo_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/context_snapshot_demo/prompts/static_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/context_snapshot_demo/prompts/with_shell_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/context_snapshot_demo/run_demo.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/context_snapshot_demo/run_test_plan_manual.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/get_lint_commands_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/git_porcelain_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/handpaint/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/handpaint/cursor/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/handpaint/cursor/handpaint.html +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/handpaint/pdd/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/handpaint/pdd/handpaint_html.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/handpaint/pdd/handpaint_pdd.html +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/hello/.pdd/meta/hello_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/hello/.pddrc +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/hello/examples/hello_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/hello/hello_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/hello/src/hello.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/hello/tests/test_hello.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/hello_you/hello_you_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/image_prompt_example/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/image_prompt_example/describe.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/image_prompt_example/describe_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/image_prompt_example/image.heic +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/image_prompt_example/image.jpeg +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/pi_calc/.pdd/meta/pi_calc_python.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/pi_calc/.pdd/meta/pi_calc_python_run.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/pi_calc/examples/pi_calc_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/pi_calc/examples/pi_calc_example_iteration_1.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/pi_calc/examples/pi_calc_example_iteration_2.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/pi_calc/pdd/pi_calc.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/pi_calc/pdd/pi_calc_1_2_2_0_20250715_122550.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/pi_calc/pdd/pi_calc_iteration_1.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/pi_calc/pdd/pi_calc_iteration_2.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/pi_calc/pi_calc_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/pi_calc/tests/test_pi_calc.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/.pddrc +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/Makefile +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/architecture.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/architecture_diagram.html +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/docs/specs.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/docs/tech_stack.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/examples/backend_api_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/examples/cli_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/examples/fix_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/examples/frontend_streamlit_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/examples/helpers_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/examples/llm_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/examples/models_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/examples/pipeline_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/examples/report_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/examples/report_output.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/examples/report_output.txt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/examples/rules_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/project_dependencies.csv +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/prompts/backend_api_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/prompts/cli_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/prompts/fix_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/prompts/frontend_streamlit_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/prompts/helpers_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/prompts/llm_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/prompts/models_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/prompts/pipeline_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/prompts/report_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/prompts/rules_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/requirements.txt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/src/backend/backend_api.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/src/cli/cli.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/src/frontend/frontend_streamlit.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/src/utils/fix.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/src/utils/helpers.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/src/utils/llm.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/src/utils/models.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/src/utils/pipeline.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/src/utils/report.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/src/utils/rules.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/tests/test_backend_api.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/tests/test_cli.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/tests/test_fix.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/tests/test_frontend_streamlit.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/tests/test_helpers.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/tests/test_llm.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/tests/test_models.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/tests/test_pipeline.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/tests/test_report.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/prompts_linter/tests/test_rules.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/qrcode_sandwich/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/qrcode_sandwich/qrcode_sandwich.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/qrcode_sandwich/qrcode_sandwich.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/qrcode_sandwich/qrcode_sandwich_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/split_main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/split_validation_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/.gitignore +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/.pddrc +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/API_FAILURE_ANALYSIS.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/API_KEY_SETUP.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/EDIT_FILE_TOOL_README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/Makefile +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/architecture.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/architecture_diagram.html +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/data/llm_model.csv +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/example2.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/project_dependencies.csv +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/prompts/__init___Python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/prompts/architecture/architecture_json.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/prompts/cache_manager_utility_Python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/prompts/cli_Python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/prompts/core_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/prompts/cost_tracker_utility_Python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/prompts/pyproject_TOML.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/prompts/think_tool_capability_Python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/pyproject.toml +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/edit_file_tool/__init__.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/edit_file_tool/cache_manager_utility.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/edit_file_tool/cli.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/edit_file_tool/core.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/edit_file_tool/cost_tracker_utility.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/edit_file_tool/think_tool_capability.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/examples/__init___example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/examples/cache_manager_utility_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/examples/cli_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/examples/core_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/examples/cost_tracker_utility_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/examples/generated_xml/example_mod.xml +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/examples/think_tool_capability_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/tests/test___init__.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/tests/test_cache_manager_utility.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/tests/test_cli.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/tests/test_core.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/tests/test_cost_tracker_utility.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/template_example/src/tests/test_think_tool_capability.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/test_generation_benchmark/ANALYSIS.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/test_generation_benchmark/DISCORD_SUMMARY.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/test_generation_benchmark/Makefile +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/test_generation_benchmark/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/test_generation_benchmark/benchmark_results/code_based/test_email_validator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/test_generation_benchmark/benchmark_results/example_based/test_email_validator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/test_generation_benchmark/email_validator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/test_generation_benchmark/examples/email_validator_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/test_generation_benchmark/src/email_validator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/tictactoe/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/tictactoe/tictactoe_architecture.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/tictactoe/tictactoe_architecture_diagram.html +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/examples/tictactoe/tictactoe_prd.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/__init__.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/__main__.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/_keyring_timeout.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/_selector_parse.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_architecture.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_architecture_orchestrator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_bug.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_bug_orchestrator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_change.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_change_orchestrator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_common_worktree.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_crash.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_e2e_fix.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_e2e_fix_orchestrator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_fix.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_langtest.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_split.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_split_orchestrator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_sync.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_sync_runner.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_test.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_test_generate.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_test_orchestrator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_update.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/agentic_verify.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/api_contract_slicer.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/api_key_scanner.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/architecture_include_validation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/architecture_registry.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/architecture_sync.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/architecture_sync_helper.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/auth_service.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/auto_deps_architecture.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/auto_deps_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/auto_include.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/auto_update.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/bug_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/bug_to_unit_test.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/change.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/change_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/checkup_file_selection.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/checkup_simplify.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/checkup_simplify_claude.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/checkup_simplify_engines.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/checkup_target.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/ci_detect_changed_modules.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/ci_drift_heal.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/cli.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/cli_branding.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/cli_detector.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/cmd_test_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/code_generator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/code_generator_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/codex_subscription.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/__init__.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/analysis.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/auth.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/checkup_simplify.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/checkup_snapshot.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/connect.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/contracts.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/coverage.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/drift.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/extracts.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/firecrawl.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/fix.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/gate.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/generate.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/maintenance.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/misc.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/modify.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/prompt.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/replay.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/report.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/sessions.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/templates.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/utility.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/commands/which.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/comment_line.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/compressed_sync_context.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/compression_reporting.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/config_resolution.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/conflicts_in_prompts.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/conflicts_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/construct_paths.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/content_selector.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/context_generator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/context_generator_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/context_snapshot.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/context_snapshot_policy.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/continue_generation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/contract_check.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/contract_ir.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/core/__init__.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/core/cli.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/core/cloud.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/core/dump.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/core/duplicate_cli_guard.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/core/errors.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/core/llm_trace.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/core/remote_session.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/core/utils.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/coverage_contracts.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/crash_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/data/arena_elo_manifest.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/data/deepswe_manifest.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/data/language_format.csv +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/data/llm_model.csv +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/detect_change.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/detect_change_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/docs/prompting_guide.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/drift_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/durable_sync_runner.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/edit_file.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/embed_retrieve.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/evidence_manifest.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/evidence_store.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/extracts_prune.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/failure_classification.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/find_section.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/firecrawl_cache.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/fix_code_loop.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/fix_code_module_errors.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/fix_errors_from_unit_tests.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/fix_focus.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/fix_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/fix_verification_errors.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/fix_verification_errors_loop.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/fix_verification_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/.gitignore +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/App.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/api.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/AddModuleModal.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/AddToQueueModal.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/ArchitectureView.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/AuthStatusIndicator.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/BatchFilterDropdown.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/BugModal.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/ChangeModal.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/CommandForm.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/CommandOutput.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/CreatePromptModal.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/DependencyViewer.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/DeviceIndicator.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/ErrorBoundary.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/ExecutionModeToggle.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/ExtractsPanel.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/FileBrowser.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/FilePickerInput.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/GeneratedCommand.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/GenerationProgressModal.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/GraphToolbar.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/GroupEditModal.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/GroupNode.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/GuidanceSidebar.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/Header.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/Icon.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/InputField.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/JobCard.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/JobDashboard.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/JobOutputPanel.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/ModelSelector.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/ModelSliders.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/ModuleEditModal.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/ModuleNode.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/ProjectSettings.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/PromptCodeDiffModal.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/PromptEditor.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/PromptMetricsBar.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/PromptOrderModal.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/PromptSelector.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/PromptSpace.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/ReauthModal.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/RemoteSessionSelector.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/SyncFromPromptModal.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/SyncOptionsModal.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/SyncStatusBadge.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/Tabs.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/TaskQueueControls.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/TaskQueueItem.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/TaskQueuePanel.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/TextAreaField.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/Toast.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/components/Tooltip.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/constants.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/data/mockPrd.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/data/mockPrompts.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/hooks/useArchitectureHistory.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/hooks/useAudioNotification.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/hooks/useJobs.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/hooks/useTaskQueue.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/index.html +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/index.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/lib/batchUtils.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/lib/commandBuilder.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/lib/format.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/lib/includeAnalyzer.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/lib/modelResolver.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/lib/pddAutocomplete.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/lib/pddDirectives.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/metadata.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/package-lock.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/package.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/public/logo.svg +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/tests/command-builder.test.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/tests/compact-font-direct-zoom.test.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/tests/compact-font-size.test.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/tests/group-layout.test.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/tests/group-subflow-nodes.test.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/tests/module-needs-sync.test.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/tests/rearrange-discard.test.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/tests/rearrange-positions.test.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/tests/setup.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/tests/sync-completed-refresh.test.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/tests/vp-zoom-sync.test.tsx +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/tests/waypoint-edge.test.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/tsconfig.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/types.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/frontend/vite.config.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/gate_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/gate_policy.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/generate_model_catalog.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/generate_output_paths.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/generate_test.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/generation_completion.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/get_comment.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/get_extension.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/get_jwt_token.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/get_language.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/get_lint_commands.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/get_run_command.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/get_test_command.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/git_porcelain.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/git_update.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/grounding_policy.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/grounding_provenance.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/include_query_extractor.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/increase_tests.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/incremental_code_generator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/incremental_prd_architecture.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/insert_includes.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/install_completion.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/json_invocation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/list_drift_detection.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/llm_invoke.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/load_prompt_template.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/logo_animation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/mcp_config.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/metadata_sync.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/model_tester.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/one_session_sync.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/operation_log.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/path_resolution.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/pdd_completion.fish +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/pdd_completion.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/pdd_completion.zsh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/pddrc_initializer.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/pin_example_hack.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/postprocess.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/postprocess_0.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/pre_checkup_gate.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/preprocess.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/preprocess_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/process_csv_change.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompt_gate.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompt_lint.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/Makefile_makefile.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/_keyring_timeout_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step10_completeness_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step11_sync_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step12_deps_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step13_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step1_analyze_prd_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step1b_complexity_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step2_analyze_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step2b_codebase_scan_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step3_research_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step4_data_model_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step5_design_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step5b_completeness_gate_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step5b_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step6_research_deps_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step7_generate_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step7b_review_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step8_5_context_docs_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step8_pddrc_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step9_prompts_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_arch_step9b_cross_audit_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_architecture_orchestrator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_architecture_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_bug_orchestrator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_bug_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_bug_step10_verify_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_bug_step11_e2e_test_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_bug_step12_pr_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_bug_step1_duplicate_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_bug_step2_docs_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_bug_step3_triage_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_bug_step4_api_research_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_bug_step5_reproduce_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_bug_step6_root_cause_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_bug_step7_prompt_classification_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_bug_step8_test_plan_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_bug_step9_generate_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_change_orchestrator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_change_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_change_step10_architecture_update_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_change_step11_identify_issues_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_change_step12_fix_issues_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_change_step13_create_pr_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_change_step1_duplicate_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_change_step2_docs_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_change_step3_research_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_change_step4_clarify_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_change_step5_docs_change_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_change_step6_devunits_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_change_step7_architecture_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_change_step8_analyze_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_change_step9_implement_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_checkup_orchestrator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_checkup_step1_discover_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_checkup_step2_deps_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_checkup_step3_build_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_checkup_step4_interfaces_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_checkup_step6_1_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_checkup_step6_2_regression_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_checkup_step6_3_e2e_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_checkup_step8_create_pr_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_common_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_common_worktree_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_crash_explore_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_crash_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_e2e_fix_orchestrator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_e2e_fix_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_e2e_fix_step10_ci_validation_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_e2e_fix_step11_code_cleanup_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_e2e_fix_step1_unit_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_e2e_fix_step2_e2e_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_e2e_fix_step3_root_cause_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_e2e_fix_step4_fix_e2e_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_e2e_fix_step5_identify_devunits_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_e2e_fix_step6_create_unit_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_e2e_fix_step7_verify_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_e2e_fix_step8_run_pdd_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_e2e_fix_step9_verify_all_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_fix_explore_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_fix_nonpython_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_fix_primary_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_fix_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_langtest_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_split_orchestrator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_split_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_split_step0_intent_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_split_step1_survey_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_split_step2_diagnose_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_split_step3_investigate_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_split_step4_propose_options_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_split_step6_extract_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_split_step6a_phase_extract_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_split_step7_assess_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_split_step8_repair_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_split_step9_refine_check_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_sync_fix_dry_run_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_sync_identify_modules_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_sync_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_sync_runner_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_generate_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_generate_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_orchestrator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step10_validate_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step11_loop_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step15_plan_validation_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step16_run_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step1_duplicate_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step2_docs_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step3_clarify_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step4_detect_frontend_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step5_test_plan_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step5b_enhance_plan_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step6_coverage_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step6_generate_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step7_checklist_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step7_run_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step8_fix_iterate_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step8_manual_test_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step9_regression_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_test_step9_submit_pr_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_update_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_update_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_verify_explore_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/agentic_verify_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/api_contract_slicer_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/api_key_scanner_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/architecture_include_validation_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/architecture_registry_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/architecture_sync_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/arrange_graph_layout_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/auth_service_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/auto_deps_architecture_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/auto_deps_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/auto_include_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/auto_include_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/auto_update_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/bug_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/bug_to_unit_test_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/bug_to_unit_test_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/change_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/change_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/change_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/checkup_file_selection_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/checkup_review_loop_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/checkup_simplify_claude_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/checkup_simplify_engines_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/checkup_simplify_invoke_claude_code_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/checkup_simplify_invoke_codex_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/checkup_simplify_invoke_gemini_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/checkup_simplify_invoke_opencode_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/checkup_simplify_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/checkup_simplify_workflow_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/ci_detect_changed_modules_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/ci_drift_heal_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/cli_branding_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/cli_detector_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/cli_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/cmd_test_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/code_generator_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/code_generator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/code_patcher_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/codex_subscription_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/combine.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/combined_output.txt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/__init___python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/analysis_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/auth_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/checkup_simplify_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/connect_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/contracts_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/firecrawl_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/fix_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/gate_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/generate_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/maintenance_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/misc_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/modify_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/prompt_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/replay_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/report_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/sessions_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/templates_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/utility_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/commands/which_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/comment_line_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/compressed_sync_context_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/config_resolution_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/conflict_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/conflicts_in_prompts_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/conflicts_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/construct_paths_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/content_selector_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/context_generator_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/context_generator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/context_snapshot_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/continue_generation_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/continue_generation_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/contract_check_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/contract_ir_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/core/cli_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/core/cloud_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/core/dump_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/core/duplicate_cli_guard_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/core/errors_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/core/remote_session_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/core/utils_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/core_dump_requirements_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/core_dump_smoke_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/coverage_contracts_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/crash_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/cross_issue_reconcile_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/detect_change_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/detect_change_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/detect_change_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/diff_analyzer_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/durable_sync_runner_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/edit_file_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/embed_retrieve_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/evidence_manifest_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/evidence_store_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/example_generator_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/extract_code_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/extract_conflict_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/extract_detect_change_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/extract_program_code_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/extract_prompt_change_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/extract_prompt_split_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/extract_prompt_update_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/extract_promptline_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/extract_unit_code_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/extract_xml_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/extracts_prune_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/failure_classification_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/find_section_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/find_verification_errors_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/firecrawl_cache_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/fix_code_loop_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/fix_code_module_errors_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/fix_code_module_errors_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/fix_errors_from_unit_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/fix_errors_from_unit_tests_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/fix_focus_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/fix_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/fix_verification_errors_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/fix_verification_errors_loop_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/fix_verification_errors_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/fix_verification_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/App_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/api_typescript.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/AddModuleModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/AddToQueueModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/ArchitectureView_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/AuthStatusIndicator_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/BatchFilterDropdown_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/BugModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/ChangeModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/CommandForm_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/CommandOutput_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/CreatePromptModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/DependencyViewer_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/DeviceIndicator_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/ErrorBoundary_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/ExecutionModeToggle_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/FileBrowser_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/FilePickerInput_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/GeneratedCommand_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/GenerationProgressModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/GraphToolbar_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/GuidanceSidebar_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/Header_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/Icon_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/InputField_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/JobCard_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/JobDashboard_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/JobOutputPanel_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/ModelSelector_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/ModelSliders_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/ModuleEditModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/ModuleNode_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/ProjectSettings_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/PromptCodeDiffModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/PromptEditor_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/PromptMetricsBar_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/PromptOrderModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/PromptSelector_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/PromptSpace_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/ReauthModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/RemoteSessionSelector_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/SyncFromPromptModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/SyncOptionsModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/SyncStatusBadge_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/Tabs_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/TaskQueueControls_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/TaskQueueItem_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/TaskQueuePanel_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/TextAreaField_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/Toast_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/components/Tooltip_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/constants_typescript.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/hooks/useArchitectureHistory_typescript.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/hooks/useAudioNotification_typescript.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/hooks/useJobs_typescript.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/hooks/useTaskQueue_typescript.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/index_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/frontend/types_typescript.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/gate_policy_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/gate_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/generate_model_catalog_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/generate_output_paths_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/generate_test_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/generate_test_from_example_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/generate_test_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/generate_user_story_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/generation_completion_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/get_comment_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/get_extension_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/get_jwt_token_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/get_language_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/get_lint_commands_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/get_run_command_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/get_test_command_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/git_porcelain_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/git_update_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/grounding_policy_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/include_query_extractor_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/include_query_extractor_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/increase_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/increase_tests_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/incremental_code_generator_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/incremental_prd_architecture_patch_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/incremental_prd_architecture_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/insert_includes_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/insert_includes_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/install_completion_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/language_format_csv.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/llm_invoke_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/llm_model_csv.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/load_prompt_template_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/logo_animation_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/main_gen_prompt.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/metadata_sync_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/model_tester_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/one_session_agent_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/one_session_sync_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/operation_log_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/path_resolution_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/pdd_theme_json.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/pddrc_initializer_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/pin_example_hack_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/post_gen_verify_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/postprocess_0_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/postprocess_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/pre_checkup_gate_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/preprocess_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/preprocess_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/process_csv_change_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/prompt_code_diff_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/prompt_diff_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/prompt_lint_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/prompt_lint_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/prompt_tester_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/provider_manager_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/pypi_description_restructuredtext.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/pyproject_toml.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/pytest_output_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/pytest_slicer_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/python_env_detector_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/reasoning_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/regression_analysis_log.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/regression_bash.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/remote_session_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/render_mermaid_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/resurface_check_Python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/run_generated_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/__init___python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/app_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/click_executor_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/executor_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/jobs_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/models_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/routes/__init___python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/routes/architecture_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/routes/auth_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/routes/commands_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/routes/config_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/routes/extracts_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/routes/files_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/routes/prompts_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/routes/session_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/routes/websocket_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/security_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/terminal_spawner_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/server/token_counter_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/setup_tool_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/split_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/split_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/split_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/split_validation_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/summarize_directory_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/summarize_file_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/sync_analysis_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/sync_animation_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/sync_determine_operation_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/sync_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/sync_orchestration_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/sync_order_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/sync_tui_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/template_expander_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/template_registry_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/trace_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/trace_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/trace_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/track_cost_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/trim_results_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/trim_results_start_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/unfinished_prompt_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/update_main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/update_model_costs_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/update_prompt_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/update_prompt_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/user_story_tests_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/validate_prompt_includes_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/xml/change_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/xml/change_example_full.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/xml/change_example_partial.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/xml/change_example_partial_processed.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/xml/split_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/xml_convertor_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/prompts/xml_tagger_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/provider_manager.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/pytest_output.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/pytest_slicer.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/python_env_detector.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/reasoning.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/remote_session.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/render_mermaid.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/schemas/architecture_contract_summary.schema.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/schemas/evidence_manifest.schema.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/__init__.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/app.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/click_executor.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/executor.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/jobs.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/models.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/routes/__init__.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/routes/architecture.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/routes/auth.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/routes/commands.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/routes/config.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/routes/extracts.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/routes/files.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/routes/prompts.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/routes/websocket.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/security.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/terminal_spawner.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/server/token_counter.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/setup_tool.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/source_set_model.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/split.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/split_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/split_validation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/summarize_directory.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/sync_animation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/sync_determine_operation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/sync_graph_order_consistency.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/sync_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/sync_orchestration.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/sync_order.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/sync_tui.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/template_expander.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/template_registry.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/templates/architecture/architecture_json.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/templates/architecture/example_nextjs_task_notes.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/templates/architecture/example_python_backend.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/templates/architecture/pdd_path_construction_guide.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/templates/generic/generate_pddrc_YAML.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/templates/generic/generate_prompt.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/test_result.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/trace.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/trace_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/track_cost.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/unfinished_prompt.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/update_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/update_model_costs.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/update_prompt.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/user_story_tests.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/validate_prompt_includes.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/waiver_policy.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd/xml_tagger.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd-local.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd_cli.egg-info/dependency_links.txt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd_cli.egg-info/entry_points.txt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd_cli.egg-info/requires.txt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pdd_cli.egg-info/top_level.txt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pr_summary.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/project_dependencies.csv +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pypi_description.rst +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pyproject.toml +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pyrightconfig.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/pytest.ini +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/requirements.txt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/research/repo-bloat-benchmark/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/research/repo-bloat-benchmark/agentic_cli_search.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/research/repo-bloat-benchmark/design.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/scripts/check_deps.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/scripts/ci_detect_changed_modules.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/scripts/copy_package_data_to_public.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/scripts/extract_wheel.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/scripts/preprocess_wheel.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/setup.cfg +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/__init__.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/cloud_regression.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/__init__.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/test_analysis.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/test_auth.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/test_checkup.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/test_checkup_contracts.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/test_checkup_simplify.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/test_connect.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/test_contract_rule_test_smoke.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/test_coverage.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/test_drift_cli.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/test_evidence.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/test_fix.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/test_gate.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/test_generate.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/test_maintenance.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/test_modify.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/test_sessions.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/commands/test_utility.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/conftest.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/core/__init__.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/core/test_cli.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/core/test_cloud.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/core/test_remote_session.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/arch_include_validate_ok/architecture.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/arch_include_validate_ok/prompts/child_Python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/arch_include_validate_ok/prompts/parent_Python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/autoheal_1187_post.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/autoheal_1187_pre.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/conftest.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/auth_service_clean_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/capabilities_no_modal_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/coverage_unchecked_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/duplicate_ids_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/legacy_no_sections_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/malformed_ids_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/missing_modal_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/non_sequential_ids_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/payment_api_clean_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/payment_api_issues_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/rate_limiter_issues_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/story__covers_rule_ids.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/story__cross_module_covers.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/story__payment_bad_refs.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/story__payment_flow.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/story__unknown_rule_ids.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/uncovered_mustnot_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/unknown_coverage_refs_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/vague_no_vocab_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/vague_with_vocab_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/valid_contract_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/waiver_expired_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/waiver_missing_fields_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/waiver_ref_missing_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/waiver_valid_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_check/with_coverage_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/contract_rules_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/coverage_contracts/failed_receipt_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/coverage_contracts/fake_tests/test_receipt_failed.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/coverage_contracts/fake_tests/test_refund.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/coverage_contracts/legacy_no_contracts_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/coverage_contracts/refund_payment_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/coverage_contracts/stories/story__receipt_missing_acceptance.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/coverage_contracts/stories/story__refund_idempotency.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/coverage_contracts/stories/story__refund_invalid.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/encode_message_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/issue591_behavioral_signal_test.py.fixture +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/issue591_dockerfile_test.py.fixture +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/issue591_structural_getsource_test.py.fixture +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/one_session_eval/one_session_agent_LLM_original.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/one_session_eval/s7_large_code_bug/examples/llm_client_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/one_session_eval/s7_large_code_bug/prompts/llm_client_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/one_session_eval/s7_large_code_bug/scenario.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/one_session_eval/s7_large_code_bug/src/llm_client.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/one_session_eval/s7_large_code_bug/tests/test_llm_client.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/one_session_eval/s8_large_minimal_tests/examples/workflow_engine_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/one_session_eval/s8_large_minimal_tests/prompts/workflow_engine_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/one_session_eval/s8_large_minimal_tests/scenario.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/one_session_eval/s8_large_minimal_tests/src/workflow_engine.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/one_session_eval/s8_large_minimal_tests/tests/test_workflow_engine.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/one_session_eval/s9_large_wrong_tests/examples/config_manager_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/one_session_eval/s9_large_wrong_tests/prompts/config_manager_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/one_session_eval/s9_large_wrong_tests/scenario.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/one_session_eval/s9_large_wrong_tests/src/config_manager.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/one_session_eval/s9_large_wrong_tests/tests/test_config_manager.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/prompt_lint/clean.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/prompt_lint/llm_template_empty_LLM.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/prompt_lint/payment_api.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/prompt_lint/payment_api_clean_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/prompt_lint/payment_api_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/prompt_lint/story__clean.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/prompt_lint/story__covers.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/prompt_lint/story__payment_api.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/prompt_lint/story__payment_vague.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/prompt_lint/story__vague_criteria.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/prompt_lint/strict_terms_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/prompt_lint/upload_handler_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/prompt_lint/upload_handler_with_vocab_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/prompt_lint/vague_defined.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/prompt_lint/vague_undefined.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/simple_math.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/simple_math_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/simple_math_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/sub_simple_math.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/test_generation/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/test_generation/refund_policy.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/test_generation/refund_policy_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/test_other_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/test_simple_math.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/fixtures/updated_simple_math_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/isolated_verify.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/prompt_tester.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/regression.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/regression_public.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/__init__.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/conftest.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/routes/__init__.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/routes/conftest.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/routes/test_architecture.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/routes/test_auth.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/routes/test_commands.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/routes/test_config.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/routes/test_extracts.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/routes/test_files.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/routes/test_prompts.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/routes/test_routes_init.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/routes/test_websocket.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/test___init__.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/test_app.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/test_click_executor.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/test_executor.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/test_jobs.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/test_models.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/test_security.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/test_terminal_spawner.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/server/test_token_counter.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/sync_regression.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/sync_regression_parallel.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_739_complete.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_739_e2e_synthetic.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_739_fixtures.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_arch_complexity_prompt.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_architecture.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_architecture_orchestrator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_bug.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_bug_orchestrator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_bug_orchestrator_1.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_bug_orchestrator_step_comments.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_bug_step10_prompt.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_bug_step11_prompt.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_bug_step7_prompt.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_change.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_change_orchestrator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_checkup.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_common_issue_813_anthropic_api_key_oauth_shadow.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_common_worktree.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_crash.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_e2e_fix.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_e2e_fix_orchestrator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_e2e_fix_orchestrator_resume_prompt.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_e2e_fix_step10_prompt.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_fix.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_langtest.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_split.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_split_orchestrator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_split_real.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_split_v2.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_sync.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_sync_nearest_config.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_sync_runner.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_test.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_test_generate.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_test_orchestrator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_update.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_agentic_verify.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_antigravity_provider.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_api_contract_slicer.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_api_key_scanner.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_architecture_include_validation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_architecture_registry.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_architecture_sync.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_auth_service.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_auto_deps_architecture.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_auto_deps_entry_wipe.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_auto_deps_lock.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_auto_deps_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_auto_heal_workflow.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_auto_include.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_auto_update.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_balance_chunks.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_bug_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_bug_to_unit_test.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_change.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_change_call_site_and_retry.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_change_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_checkup_artifact_hygiene.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_checkup_freshness_lease_integration.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_checkup_pr_mode.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_checkup_simplify_engines.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_checkup_target.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_ci_detect_changed_modules.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_ci_drift_heal.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_ci_drift_heal_e2e.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_circular_includes.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_cli.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_cli_binary_isolation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_cli_detector.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_cloud_noninteractive_auth.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_cmd_test_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_code_generator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_code_generator_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_code_patcher_prompt_json_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_codex_subscription.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_commands_auth.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_commands_firecrawl.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_commands_fix.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_commands_generate.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_commands_maintenance.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_commands_modify.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_commands_templates.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_commands_utility.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_comment_line.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_compressed_sync_context.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_conflicts_in_prompts.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_conflicts_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_construct_paths.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_content_selector.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_context_compression.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_context_example_isolation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_context_generator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_context_generator_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_context_snapshot_policy.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_context_snapshot_replay.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_continue_generation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_contract_check.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_copy_package_data_to_public.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_core_dump.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_core_errors.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_core_utils.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_coverage_contracts.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_crash_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_cross_step_consistency_prompts.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_detect_change.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_detect_change_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_discover_associated_documents.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_drift_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_duplicate_cli_guard.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_durable_sync_runner.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_auto_deps_pipeline.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_bug_step9_verification.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_1201_output_paths.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_1205_example_output_extension.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_1211_parent_dir_path.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_219_duplicate_includes.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_295_openai_schema.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_296_custom_csv.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_305_false_success.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_309_oauth_rate_limit.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_319_json_braces.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_340_report_core_no_default.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_342_syspath_isolation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_349_sys_modules_pollution.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_357_step9_keyerror.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_358_jwt_cache_null.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_364_cumulative_cost.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_373_step5_keyerror.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_375_malformed_json.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_379_auth_null_expires.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_383_commit_intermediate_files.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_399_ssh_url_message.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_419_cli_unpushed_commits.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_419_unpushed_commits.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_426_include_path_validation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_429_prompt_files_in_pr.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_445_worktree_resume.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_448_change_orchestrator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_448_step5_keyerror.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_449_auth_logout_message.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_467_false_cached_steps.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_468_not_a_bug_early_exit.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_469_cleanup_messages.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_469_duplicate_unresolved.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_470_sessions_cleanup_auth_message.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_481_pagination.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_485_warning_false_negative.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_493_update_output_subdir.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_508_budget_test_cost.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_508_sync_budget_tracking.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_509_retry_cost.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_521_circular_includes.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_522_include_fingerprint.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_545_no_changes_to_commit.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_549_format_double_escaping.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_549_other_orchestrators.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_553_circular_includes_non_recursive.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_557_codex_ndjson.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_566_code_fence_tags.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_579_bug_worktree_rerun.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_579_orchestrator_rerun.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_594_preamble_imports.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_604_handler_wiring.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_620_hallucinated_imports.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_626_nextjs_rendering_model.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_686_anthropic_cost_double_count.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_687_postprocess_model_name.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_737_step_completion_markers.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_745_initial_cost_tracking.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_773_hard_stop.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_791_e2e_timeout_retry.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_796_typescript_python_validation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_797_typescript_verification.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_817_step5_degenerate_cli.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_824_artifact_filtering.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_825_param_drop.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_830_workflow_stall.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_894.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_902_provider_fallback.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_issue_903_convergence.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_openai_required_array.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_pattern_verification.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_selective_includes.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_selective_includes_integration.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_step11_cleanup_revert.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_subprocess_issue_399_ssh_url_message.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_subprocess_issue_541_quiet_flag.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_e2e_subprocess_issue_593_bug_exit_code.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_embed_retrieve.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_evidence_manifest.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_example_error_detection.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_explicit_output_paths.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_extracts_prune.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_failure_classification.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_find_prompt_file.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_find_section.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_firecrawl_cache.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_fix_cli_agentic_fallback_events_contract.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_fix_code_loop.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_fix_code_module_errors.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_fix_error_loop_failure_aware.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_fix_error_loop_prompt_contract.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_fix_error_loop_sync_e2e.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_fix_errors_from_unit_tests.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_fix_focus.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_fix_issue_1211_parent_dir_path.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_fix_main_issue_232.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_fix_verification_errors.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_fix_verification_errors_loop.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_fix_verification_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_gate_failed_sync.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_gate_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_generate_model_catalog.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_generate_output_paths.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_generate_output_paths_regression.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_generate_test.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_generate_test_llm_preprocess.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_generation_completion.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_get_comment.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_get_extension.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_get_jwt_token.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_get_language.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_get_lint_commands.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_get_run_command.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_get_test_command.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_git_porcelain.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_git_update.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_grounding_generate_evidence.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_grounding_policy.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_grounding_provenance.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_grounding_test_plan.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_home_isolation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_include_query_extractor.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_increase_tests.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_incremental_code_generator.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_incremental_prd_architecture.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_incremental_prd_architecture_real.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_insert_includes.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_install_completion.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_1021_reproduction.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_1049_reproduction.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_1060_pollution.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_1080_porcelain_scope_guards.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_1203_breaker.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_1212_reproduction.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_1240_generate_prompt_meta_framing.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_1272_cloud_timeout.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_225_paths_and_includes.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_237.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_417_regression_hardening.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_467_all_orchestrators.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_469_duplicate_unresolved.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_592_failing_case.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_600_agentic_weaknesses.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_633_reproduction.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_67.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_67_expansion.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_686_post_process_args_braces.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_737_step_completion_markers.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_791_reproduction.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_794_anti_tdd_and_test_discovery.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_794_repro.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_826_snapshot_touchpoint.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_830_contract_summary_touchpoint.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_830_remaining_fixes.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_865_reproduction.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_876_compress_wiring.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_876_compressed_few_shot.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_894_pytest_output_deadlock.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_902.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_902_prompt_sync.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_926_preserve_comments_directive.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_issue_953_directory_scan_regression.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_jobs_sync_failure_detection.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_json_invocation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_list_drift_detection.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_llm_invoke.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_llm_invoke_csv_model_registration.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_llm_invoke_grounding.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_llm_invoke_integration.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_llm_invoke_nested_schema.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_llm_invoke_retry_cost.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_llm_invoke_vertex_retry.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_load_prompt_template.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_logo_animation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_metadata_sync.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_mid_run_steer_orchestrator_integration.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_mock_vs_production_fix.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_model_tester.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_nextjs_rendering_model.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_one_session_eval.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_one_session_sync.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_opencode_provider.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_operation_log.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_operation_logging_e2e.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_path_resolution.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_pattern_completeness_verification.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_pddrc_initializer.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_pddrc_true_e2e.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_pin_example_hack.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_post_step_comment_once_real.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_postprocess.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_postprocess_0.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_pre_checkup_gate.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_preprocess.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_preprocess_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_preprocess_main_pdd_tags.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_process_csv_change.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_prompt_contract_validation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_prompt_gate.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_prompt_gate_integration.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_prompt_lint.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_provider_env_isolation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_provider_manager.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_pytest_output.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_pytest_slicer.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_quiet_flag.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_reasoning.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_remote_command_completion.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_remote_session.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_render_mermaid.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_report.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_research_prompt_web_tools.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_selector_parse.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_server_routes_prompts.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_server_spawn.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_setup_tool.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_source_set_model.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_space_path_support.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_split.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_split_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_split_seam_resolution.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_split_validation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_step11_api_mocking_guidance.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_structural_test_guard.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_structural_test_guard_integration.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_summarize_directory.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_sync_animation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_sync_animation_0.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_sync_backward_compat.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_sync_code_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_sync_contract_matrix.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_sync_determine_operation.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_sync_graph_order_consistency.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_sync_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_sync_orchestration.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_sync_order.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_sync_target_coverage_infinite_loop.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_sync_template_prompt_discovery.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_sync_tui.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_template_expander.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_template_registry.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_thread_safe_redirector.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_time_reasoning_effort_env.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_trace.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_trace_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_track_cost.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_unfinished_prompt.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_update_command.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_update_main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_update_model_costs.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_update_prompt.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_user_story_tests.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_validate_behavioral_test.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_version.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_waiver_policy.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_which.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_xml_tagger.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/test_z3_prompt_test_correspondence.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/tests/validate_behavioral_test.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/user_stories/story__template.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/__init__.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/context/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/context/definitions_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/context/handlers_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/context/main_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/context/regenerate_test_files.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/context/runner_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/context/server_example.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/generate_prompt.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/generate_python.sh +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/pdd_mcp_server/__init__.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/pdd_mcp_server/main.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/pdd_mcp_server/server.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/pdd_mcp_server/tools/__init__.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/pdd_mcp_server/tools/api_key_check.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/pdd_mcp_server/tools/definitions.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/pdd_mcp_server/tools/handlers.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/pdd_mcp_server/tools/runner.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/prompts/README_md.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/prompts/definitions_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/prompts/generate_prompt.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/prompts/handlers_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/prompts/io_dependencies.csv +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/prompts/io_dependencies_csv.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/prompts/main_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/prompts/mcp_architecture.csv +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/prompts/mcp_architecture_csv.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/prompts/requirements_txt.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/prompts/runner_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/prompts/server_python.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/requirements.txt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/mcp/tests/test_mcp_client.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/run_generated.py +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/.gitignore +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/.vscode/launch.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/.vscodeignore +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/AGENTS.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/CHANGELOG.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/LICENSE.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/Makefile +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/README.md +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/examples/pddInstaller_example.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/images/icon.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/images/icon.svg +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/images/video-thumb.png +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/language-configuration.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/out/extension.js +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/out/extension.js.map +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/out/pddInstaller.js +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/out/pddInstaller.js.map +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/package-lock.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/package.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/prompts/extension_typescript.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/prompts/pddInstaller_typescript.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/prompts/prompt.tmLanguage_json.prompt +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/scripts/generate-video-thumb.mjs +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/scripts/render-icon.mjs +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/src/extension.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/src/pddInstaller.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/syntaxes/prompt.tmLanguage.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/tests/test_extension.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/tests/test_pddInstaller.ts +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/tsconfig.json +0 -0
- {pdd_cli-0.0.264 → pdd_cli-0.0.266}/utils/vscode_prompt/vsc-extension-quickstart.md +0 -0
|
@@ -202,10 +202,11 @@ jobs:
|
|
|
202
202
|
# artifact:read, distribution:package,
|
|
203
203
|
# distribution:publish). A project-locked
|
|
204
204
|
# token (e.g. an e2e profile) will NOT work.
|
|
205
|
-
# vars.PDS_CLI_PACKAGE install spec for the
|
|
206
|
-
# @promptdriven/pds
|
|
207
|
-
#
|
|
208
|
-
# vars.PDS_API_URL PDS backend
|
|
205
|
+
# vars.PDS_CLI_PACKAGE install spec for the @promptdriven/pds
|
|
206
|
+
# CLI, for example @promptdriven/pds@latest
|
|
207
|
+
# or a pinned version.
|
|
208
|
+
# vars.PDS_API_URL PDS backend. Defaults to production when
|
|
209
|
+
# the repo variable is unset.
|
|
209
210
|
# vars.RELEASE_VIDEO_PROJECT_ID optional stable PDS project to reuse
|
|
210
211
|
# across releases (else a per-release
|
|
211
212
|
# "PDD <tag> release" project is created).
|
|
@@ -215,7 +216,7 @@ jobs:
|
|
|
215
216
|
env:
|
|
216
217
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
217
218
|
PDS_TOKEN: ${{ secrets.PDS_TOKEN }}
|
|
218
|
-
PDS_API_URL: ${{ vars.PDS_API_URL }}
|
|
219
|
+
PDS_API_URL: ${{ vars.PDS_API_URL || 'https://video.promptdriven.ai' }}
|
|
219
220
|
PDS_CLI_PACKAGE: ${{ vars.PDS_CLI_PACKAGE }}
|
|
220
221
|
CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
|
|
221
222
|
RELEASE_VIDEO_PROJECT_ID: ${{ vars.RELEASE_VIDEO_PROJECT_ID }}
|
|
@@ -58,6 +58,7 @@ help:
|
|
|
58
58
|
@echo " make publish - Build & upload current version to PyPI"
|
|
59
59
|
@echo " make publish-public - Copy artifacts to public repo only"
|
|
60
60
|
@echo " make release-video - Generate and upload a YouTube video for the current release tag"
|
|
61
|
+
@echo " make release-local - Run release with local Infisical PDS release token"
|
|
61
62
|
@echo " make check-deps - Check pyproject.toml and requirements.txt are in sync"
|
|
62
63
|
@echo " make release - On main: tag HEAD with next vN.N.N and push (BUMP=patch|minor|major; default patch)"
|
|
63
64
|
@echo " Actions publishes to PyPI via OIDC after gltanaka approval"
|
|
@@ -91,6 +92,10 @@ RELEASE_VIDEO_DRY_RUN ?= 0
|
|
|
91
92
|
RELEASE_VIDEO_PROJECT_ID ?=
|
|
92
93
|
CLAUDE_CLI ?= claude
|
|
93
94
|
PDS_CLI ?= pds
|
|
95
|
+
PDS_API_URL ?= https://video.promptdriven.ai
|
|
96
|
+
INFISICAL ?= infisical
|
|
97
|
+
INFISICAL_ENV ?= prod
|
|
98
|
+
INFISICAL_PATH ?= /
|
|
94
99
|
|
|
95
100
|
# Python files
|
|
96
101
|
PY_PROMPTS := $(shell find $(PROMPTS_DIR) -name "*_python.prompt")
|
|
@@ -106,6 +111,11 @@ ifeq ($(CI),true)
|
|
|
106
111
|
SKIP_MAKEFILE_REGEN := 1
|
|
107
112
|
endif
|
|
108
113
|
|
|
114
|
+
RELEASE_MAKE_GOALS := release release-video release-local release-infisical check-release-video-config check-release-video-config-local check-release-video-config-infisical
|
|
115
|
+
ifneq ($(filter $(RELEASE_MAKE_GOALS),$(MAKECMDGOALS)),)
|
|
116
|
+
SKIP_MAKEFILE_REGEN := 1
|
|
117
|
+
endif
|
|
118
|
+
|
|
109
119
|
# Auto-skip Makefile regeneration if prompt file doesn't exist (e.g., public repo)
|
|
110
120
|
ifeq ($(wildcard $(MAKEFILE_PROMPT)),)
|
|
111
121
|
SKIP_MAKEFILE_REGEN := 1
|
|
@@ -122,7 +132,7 @@ TEST_OUTPUTS := $(patsubst $(PDD_DIR)/%.py,$(TESTS_DIR)/test_%.py,$(PY_OUTPUTS))
|
|
|
122
132
|
# All Example files in context directory (recursive)
|
|
123
133
|
EXAMPLE_FILES := $(shell find $(CONTEXT_DIR) -name "*_example.py" 2>/dev/null)
|
|
124
134
|
|
|
125
|
-
.PHONY: all clean test requirements production coverage staging regression regression-public sync-regression all-regression cloud-regression install build upload-pypi analysis fix crash update update-extension generate run-examples verify detect change lint publish publish-public public-ensure public-update public-import public-diff sync-public ensure-dev-deps cloud-test cloud-test-quick cloud-test-build cloud-test-push cloud-test-setup test-frontend release release-video check-release-remote check-release-branch check-release-clean
|
|
135
|
+
.PHONY: all clean test requirements production coverage staging regression regression-public sync-regression all-regression cloud-regression install build upload-pypi analysis fix crash update update-extension generate run-examples verify detect change lint publish publish-public public-ensure public-update public-import public-diff sync-public ensure-dev-deps cloud-test cloud-test-quick cloud-test-build cloud-test-push cloud-test-setup test-frontend release release-local release-infisical release-video check-release-remote check-release-branch check-release-clean check-release-video-config check-release-video-config-local check-release-video-config-infisical
|
|
126
136
|
|
|
127
137
|
all: $(PY_OUTPUTS) $(MAKEFILE_OUTPUT) $(CSV_OUTPUTS) $(EXAMPLE_OUTPUTS) $(TEST_OUTPUTS)
|
|
128
138
|
|
|
@@ -735,6 +745,30 @@ check-release-clean:
|
|
|
735
745
|
exit 1; \
|
|
736
746
|
fi
|
|
737
747
|
|
|
748
|
+
check-release-video-config:
|
|
749
|
+
@RELEASE_PDS_TOKEN="$${PDS_TOKEN:-}"; \
|
|
750
|
+
if [ -z "$$RELEASE_PDS_TOKEN" ]; then RELEASE_PDS_TOKEN="$${PDS_RELEASE_TOKEN:-}"; fi; \
|
|
751
|
+
if [ -n "$$RELEASE_PDS_TOKEN" ]; then export PDS_TOKEN="$$RELEASE_PDS_TOKEN"; export PDS_PROFILE=; fi; \
|
|
752
|
+
export PDS_API_URL="$${PDS_API_URL:-$(PDS_API_URL)}"; \
|
|
753
|
+
python scripts/release_video.py \
|
|
754
|
+
--preflight \
|
|
755
|
+
--pds-cli "$(PDS_CLI)" \
|
|
756
|
+
--project-id "$(RELEASE_VIDEO_PROJECT_ID)"
|
|
757
|
+
|
|
758
|
+
check-release-video-config-local: check-release-video-config-infisical
|
|
759
|
+
|
|
760
|
+
check-release-video-config-infisical:
|
|
761
|
+
@command -v "$(INFISICAL)" >/dev/null 2>&1 || { echo "Error: $(INFISICAL) CLI is required."; exit 1; }
|
|
762
|
+
@"$(INFISICAL)" run --env "$(INFISICAL_ENV)" --path "$(INFISICAL_PATH)" --silent -- \
|
|
763
|
+
$(MAKE) --no-print-directory check-release-video-config
|
|
764
|
+
|
|
765
|
+
release-local: release-infisical
|
|
766
|
+
|
|
767
|
+
release-infisical:
|
|
768
|
+
@command -v "$(INFISICAL)" >/dev/null 2>&1 || { echo "Error: $(INFISICAL) CLI is required."; exit 1; }
|
|
769
|
+
@"$(INFISICAL)" run --env "$(INFISICAL_ENV)" --path "$(INFISICAL_PATH)" --silent -- \
|
|
770
|
+
$(MAKE) --no-print-directory release
|
|
771
|
+
|
|
738
772
|
release-video:
|
|
739
773
|
@if [ "$(RELEASE_VIDEO)" = "0" ]; then \
|
|
740
774
|
echo "Skipping release video because RELEASE_VIDEO=0"; \
|
|
@@ -742,6 +776,10 @@ release-video:
|
|
|
742
776
|
fi; \
|
|
743
777
|
DRY_RUN_FLAG=""; \
|
|
744
778
|
if [ "$(RELEASE_VIDEO_DRY_RUN)" = "1" ]; then DRY_RUN_FLAG="--dry-run"; fi; \
|
|
779
|
+
RELEASE_PDS_TOKEN="$${PDS_TOKEN:-}"; \
|
|
780
|
+
if [ -z "$$RELEASE_PDS_TOKEN" ]; then RELEASE_PDS_TOKEN="$${PDS_RELEASE_TOKEN:-}"; fi; \
|
|
781
|
+
if [ -n "$$RELEASE_PDS_TOKEN" ]; then export PDS_TOKEN="$$RELEASE_PDS_TOKEN"; export PDS_PROFILE=; fi; \
|
|
782
|
+
export PDS_API_URL="$${PDS_API_URL:-$(PDS_API_URL)}"; \
|
|
745
783
|
RELEASE_TAG="$(RELEASE_TAG)" RELEASE_GIT_SHA="$(RELEASE_GIT_SHA)" \
|
|
746
784
|
python scripts/release_video.py \
|
|
747
785
|
--output-dir "$(RELEASE_VIDEO_OUTPUT_DIR)" \
|
|
@@ -754,7 +792,7 @@ release-video:
|
|
|
754
792
|
--privacy "$(RELEASE_VIDEO_PRIVACY)" \
|
|
755
793
|
$$DRY_RUN_FLAG
|
|
756
794
|
|
|
757
|
-
release: check-deps check-suspicious-files check-release-remote check-release-branch check-release-clean
|
|
795
|
+
release: check-deps check-suspicious-files check-release-remote check-release-branch check-release-clean check-release-video-config
|
|
758
796
|
@echo "Preparing release"
|
|
759
797
|
@set -e; \
|
|
760
798
|
echo "Fetching tags from origin"; \
|
|
@@ -58,6 +58,9 @@ For pre-merge prompt and user-story quality (vague terms, vocabulary, optional L
|
|
|
58
58
|
For deterministic contract-section lint (`<contract_rules>`, `<coverage>`, waivers, story `## Covers`), see [docs/contract_check.md](docs/contract_check.md).
|
|
59
59
|
|
|
60
60
|
For a rule-to-story/test coverage matrix (`pdd checkup coverage`), see [docs/coverage_contracts.md](docs/coverage_contracts.md).
|
|
61
|
+
|
|
62
|
+
For non-interactive bounded prompt repair after a failed prompt source-set checkup, see [docs/prompt_repair.md](docs/prompt_repair.md).
|
|
63
|
+
|
|
61
64
|
## Installation
|
|
62
65
|
|
|
63
66
|
### Prerequisites for macOS
|
|
@@ -2879,7 +2882,7 @@ Run an automated health check on a project from a GitHub issue. The checkup work
|
|
|
2879
2882
|
|
|
2880
2883
|
`checkup` can also run against an existing pull request. With `--pr <PR_URL>` alone it reviews the PR diff on its own merits (correctness / quality), using full project context (architecture, `.pddrc`); the issue-alignment gate is skipped. Add `--issue <ISSUE_URL>` to also verify the PR resolves that issue. Default PR mode runs the standard checkup steps on the PR branch, can commit and push generated fixes back to that same PR, and skips PR creation because the PR already exists. Use `--no-fix` for verification-only PR checks, or `--review-loop` for the separate reviewer/fixer loop (which still requires `--issue`).
|
|
2881
2884
|
|
|
2882
|
-
**Final PR gate ("ready for maintainer review")** — `pdd checkup --pr <PR_URL> --issue <ISSUE_URL> --final-gate` (issue #1406): once a PR exists, "ready" means this one canonical gate passed. It runs two layers against the existing PR — **Layer 1** is the PR-scoped checkup (the standard steps, pushing fixes only to the same PR head, never opening a new PR) and **Layer 2** is the maintainer-style reviewer/fixer review-loop on the resulting head. Unlike a bare `--review-loop` (which always exits 0 once it produces a report), `--final-gate` returns a **real ship verdict**: it exits non-zero unless the review-loop's final state is genuinely clean (verified head matches the remote, the reviewer accepted the PR, no findings remain, and
|
|
2885
|
+
**Final PR gate ("ready for maintainer review")** — `pdd checkup --pr <PR_URL> --issue <ISSUE_URL> --final-gate` (issue #1406): once a PR exists, "ready" means this one canonical issue-resolution gate passed. It runs two layers against the existing PR — **Layer 1** is the PR-scoped checkup (the standard steps, pushing fixes only to the same PR head, never opening a new PR) and **Layer 2** is the maintainer-style reviewer/fixer review-loop on the resulting head. Unlike a bare `--review-loop` (which always exits 0 once it produces a report), `--final-gate` returns a **real ship verdict**: it exits non-zero unless the review-loop's final state is genuinely clean (verified head matches the remote, the reviewer accepted the PR, no findings remain, and the PR is issue-aligned). A Layer 1 failure short-circuits before Layer 2. This is the same gate `pdd-issue`'s autonomous final verification uses, so a PR that passes automation has cleared the same bar a human maintainer/Codex review would apply. By default the gate uses local full-suite evidence (`--full-suite-source local`, `--test-scope full`). In GitHub App/CI environments, use `--full-suite-source github-checks --test-scope targeted`: Layer 1 runs targeted local checks, then the gate fails closed unless GitHub checks pass on the current PR head before Layer 2. `--final-gate` requires both `--pr` and `--issue`. It cannot be combined with `--review-loop`, `--no-fix`, `--review-only`, `--start-step`, or `--no-gates`.
|
|
2883
2886
|
|
|
2884
2887
|
**Local utilities** (no GitHub issue URL): `pdd checkup lint`, `pdd checkup contract check`, `pdd checkup coverage`, **`pdd checkup snapshot`** for nondeterministic-prompt snapshot policy (prompts with `<shell>`, `<web>`, or `query=` includes must have a replayable artifact under `.pdd/evidence/`), and **`pdd checkup gate`** for evidence-manifest policy enforcement before merge. There is no top-level `pdd gate` or `pdd policy snapshot` command—use `pdd checkup snapshot` only.
|
|
2885
2888
|
|
|
@@ -2908,7 +2911,8 @@ Options:
|
|
|
2908
2911
|
- `--pr PR_URL`: Review an existing pull request instead of creating a new one. With no `--issue`, the PR is reviewed on its own merits. Cannot be combined with a positional issue URL.
|
|
2909
2912
|
- `--issue ISSUE_URL`: Optional source GitHub issue for `--pr`; when provided, used as the expected behavior and acceptance criteria for PR verification (the alignment gate applies). Required with `--review-loop`; cannot be passed without `--pr`.
|
|
2910
2913
|
- `--review-loop`: In PR mode, run the primary-reviewer/fixer loop. The primary reviewer reviews the PR, the fixer addresses actionable findings, fixes are committed and pushed to the PR branch, and the primary reviewer verifies until clean or a limit is reached.
|
|
2911
|
-
- `--final-gate`: The canonical final PR gate (issue #1406). Requires both `--pr` and `--issue`. Runs the PR-scoped checkup as Layer 1 (no new PR) and the review-loop as Layer 2, then returns a real ship verdict (exit non-zero unless the PR is genuinely shippable). This is what "ready for maintainer review" means once a PR exists, and the gate `pdd-issue` uses for its final verification. Cannot be combined with `--review-loop`, `--no-fix`, `--review-only`, `--start-step`, `--no-gates
|
|
2914
|
+
- `--final-gate`: The canonical final PR gate (issue #1406). Requires both `--pr` and `--issue`. Runs the PR-scoped checkup as Layer 1 (no new PR) and the review-loop as Layer 2, then returns a real ship verdict (exit non-zero unless the PR is genuinely shippable and issue-aligned). This is what "ready for maintainer review" means once a PR exists, and the gate `pdd-issue` uses for its final verification. Cannot be combined with `--review-loop`, `--no-fix`, `--review-only`, `--start-step`, or `--no-gates`.
|
|
2915
|
+
- `--full-suite-source local|github-checks`: Final-gate full-suite source (default: `local`). `local` requires `--test-scope full`. `github-checks` requires `--test-scope targeted`; Layer 1 runs targeted local tests and GitHub checks on the current PR head provide the full-suite truth before Layer 2.
|
|
2912
2916
|
- `--review-only`: With `--review-loop`, run only the primary reviewer first pass. This never invokes the fixer, commits, or pushes.
|
|
2913
2917
|
- `--reviewer ROLE`: Primary reviewer role for `--review-loop` (for example, `codex`).
|
|
2914
2918
|
- `--fixer ROLE`: Fixer role for `--review-loop` (for example, `claude`). The fixer must be different from the reviewer unless `--review-only` is used.
|
|
@@ -2922,9 +2926,13 @@ Options:
|
|
|
2922
2926
|
- `--continue-on-reviewer-limit`: Report provider, rate, context-window, timeout, auth, network, sandbox, permission, and non-zero-exit reviewer failures as `degraded` instead of `failed`. Degraded reviewers are still not clean unless a configured fallback reviewer completes successfully and takes over as the active reviewer.
|
|
2923
2927
|
- `--fallback-reviewer-on-failure`: When the primary reviewer ends in `failed` or `missing` (not `degraded`), run a second review pass using the fixer's identity as a fallback reviewer. On a clean fallback the rendered `reviewer-status:` line shows the primary as `clean` so the cloud verdict adapter's real-reviewer-clean rule can fire, while the primary's original failure detail is preserved in the `### Reviewer Diagnostics` subsection of the final report with a `superseded_by_fallback` marker. Off by default to preserve existing CI expectations.
|
|
2924
2928
|
- `--no-gates`: Disable the deterministic local gates (`git diff --check` against the PR range, `doc-contract`, `prettier --check`, `npx --no-install tsc --noEmit`, a non-mutating Python syntax check via the builtin `compile()`, `ruff check`/`ruff format --check`/`black --check`/`mypy`) that otherwise run before any `clean` verdict in `--review-loop`. **`ruff format --check`** is opt-in: it fires only when **either** `[tool.ruff.format]` is declared in `pyproject.toml`, **or** a literal `ruff format` / `ruff-format` reference appears in `.pre-commit-config.yaml`, `cloudbuild-*-ci.yaml`, or `.github/workflows/*.{yml,yaml}` (canonical pre-commit hook id matches the hyphenated form). Touched CI files are excluded from the signal scan to defend against PR-poisoned opt-in. The Python syntax gate routes through `compile()` rather than `python -m py_compile` so it never writes `__pycache__/*.pyc` into the worktree; the TypeScript gate uses `--no-install` so it never hits the npm registry. Gate subprocesses resolve `git` and tool binaries through a sanitized PATH so a PR cannot provide worktree-local shims via `PATH=.:$PATH`. Default: gates are enabled. The flag exists only as a diagnostic/emergency escape hatch — under normal operation a failing gate must block the PR from being declared clean even when the LLM reviewer says clean. Issue #1092.
|
|
2925
|
-
- `doc-contract` repo config: non-PDD projects can declare documentation contracts in `.pdd/doc_contract.json` or `.pdd/doc-contract.json` with `version: 1` and `rules` containing `source_globs`, `added_regex`, and `docs`/`doc_paths`. Each captured added surface must be documented in the configured docs/sections; optional `doc_regex` can tie named captures together, such as requiring an operation and its new skip condition to appear in the same documented contract. In PR mode the base branch’s config is authoritative, so a PR cannot bypass the gate by weakening its own config.
|
|
2929
|
+
- `doc-contract` repo config: non-PDD projects can declare documentation contracts in `.pdd/doc_contract.json` or `.pdd/doc-contract.json` with `version: 1` and `rules` containing `source_globs`, `added_regex`, and `docs`/`doc_paths`. Each captured added surface must be documented in the configured docs/sections; optional `doc_regex` can tie named captures together, such as requiring an operation and its new skip condition to appear in the same documented contract. In PR mode the base branch’s config is authoritative, so a PR cannot bypass the gate by weakening its own config.
|
|
2926
2930
|
- `--gate-timeout FLOAT`: Per-gate timeout in seconds (default: 60). Applies to every discovered gate; the runner kills the subprocess and surfaces the gate as a `runner-error` blocker finding when the timeout fires.
|
|
2927
2931
|
- `--gate-allow GATE`: Repeatable allowlist token forwarded to `discover_gates` as `extra_allow`. Reserved for future versions to opt extra gate names into the discovery set; the current default discovery is allowlist-only and the argument is accepted but does not widen it. Useful primarily as a forward-compat plumbing hook for CI configurations.
|
|
2932
|
+
- `--prompt-repair MODE`: Non-interactive prompt repair mode when automatic prompt checkup fails. Accepted values: `off` (default, no repair), `best-effort` (repair and continue even if issues remain after repair), `strict` (block on unresolved issues after repair). Overrides the `prompt_repair` setting in `[tool.pdd.checkup]` in `pyproject.toml`.
|
|
2933
|
+
- `--max-prompt-repair-rounds INT`: Maximum repair-and-recheck iterations per prompt file (default: 1).
|
|
2934
|
+
- `--max-prompt-token-growth INT`: Maximum token increase allowed during a single repair pass (default: 1000).
|
|
2935
|
+
- `--max-prompt-repair-seconds FLOAT`: Wall-clock timeout for the entire prompt repair loop in seconds (default: 120.0).
|
|
2928
2936
|
|
|
2929
2937
|
**Deterministic-gate coverage limits (issue #1092)**: The default gate set is intentionally conservative because PR contents are untrusted on fork PRs. As a result the following workflows do NOT block a clean verdict and you should still rely on CI / human review for them:
|
|
2930
2938
|
- **JS/TS PRs that change any `.js` / `.cjs` / `.mjs` file (anywhere in the worktree)**: prettier and eslint script gates are skipped because their configs can `require()` arbitrary local JavaScript (including subdirectory plugin modules) and the require chain is undecidable without running the very code we are trying to gate. A PR-sized JS formatting/lint regression on such a PR will only be caught by CI.
|
|
@@ -7334,11 +7334,12 @@
|
|
|
7334
7334
|
}
|
|
7335
7335
|
},
|
|
7336
7336
|
{
|
|
7337
|
-
"reason": "Entry point for the agentic checkup workflow
|
|
7338
|
-
"description": "Accepts an optional GitHub issue URL; when one is provided it fetches issue content and comments, otherwise (PR mode only) it threads empty issue context so the PR is reviewed on its own merits. Loads architecture.json and .pddrc, then invokes the multi-step checkup orchestrator, the PR-mode primary-reviewer/fixer review loop, or (final_gate) the canonical two-layer final PR gate (issue #1406): Layer 1 PR-scoped checkup then Layer 2 review-loop on the resulting head, returning a real ship verdict derived from the review-loop final-state.json. PR review-loop context is bounded and includes PR body, changed files, comments, and submitted reviews.",
|
|
7337
|
+
"reason": "Entry point for the agentic checkup workflow; in PR mode the linked issue is optional (own-merits review).",
|
|
7338
|
+
"description": "Accepts an optional GitHub issue URL; when one is provided it fetches issue content and comments, otherwise (PR mode only) it threads empty issue context so the PR is reviewed on its own merits. Loads architecture.json and .pddrc, optionally runs a bounded non-interactive prompt repair loop on changed .prompt files, then invokes the multi-step checkup orchestrator, the PR-mode primary-reviewer/fixer review loop, or (final_gate) the canonical two-layer final PR gate (issue #1406): Layer 1 PR-scoped checkup then Layer 2 review-loop on the resulting head, returning a real ship verdict derived from the review-loop final-state.json. PR review-loop context is bounded and includes PR body, changed files, comments, and submitted reviews.",
|
|
7339
7339
|
"dependencies": [
|
|
7340
7340
|
"agentic_common_python.prompt",
|
|
7341
|
-
"checkup_review_loop_python.prompt"
|
|
7341
|
+
"checkup_review_loop_python.prompt",
|
|
7342
|
+
"prompt_repair_python.prompt"
|
|
7342
7343
|
],
|
|
7343
7344
|
"priority": 217,
|
|
7344
7345
|
"filename": "agentic_checkup_python.prompt",
|
|
@@ -7354,7 +7355,7 @@
|
|
|
7354
7355
|
"functions": [
|
|
7355
7356
|
{
|
|
7356
7357
|
"name": "run_agentic_checkup",
|
|
7357
|
-
"signature": "(issue_url: Optional[str] = None, *, verbose: bool, quiet: bool, no_fix: bool, timeout_adder: float, use_github_state: bool, reasoning_time: Optional[float], pr_url: Optional[str], review_loop: bool, final_gate: bool, review_only: bool, reviewers: str, reviewer: Optional[str], fixer: Optional[str], reviewer_fallback: Optional[str], fixer_fallback: Optional[str], max_review_rounds: int, max_review_cost: float, max_review_minutes: float, require_all_reviewers_clean: bool, continue_on_reviewer_limit: bool, require_final_fresh_review: bool, blocking_severities: Optional[str], clean_reviewer_states: Optional[str], fallback_reviewer_on_failure: bool, enable_gates: bool = True, gate_timeout: float = 60.0, gate_allow: Tuple[str, ...] = (), start_step_override: Optional[Union[int, float]] = None, cwd: Optional[Path] = None) -> Tuple[bool, str, float, str]",
|
|
7358
|
+
"signature": "(issue_url: Optional[str] = None, *, verbose: bool = False, quiet: bool = False, no_fix: bool = False, timeout_adder: float = 0.0, use_github_state: bool = True, reasoning_time: Optional[float] = None, pr_url: Optional[str] = None, review_loop: bool = False, final_gate: bool = False, review_only: bool = False, reviewers: str = \"codex,claude\", reviewer: Optional[str] = None, fixer: Optional[str] = None, reviewer_fallback: Optional[str] = None, fixer_fallback: Optional[str] = None, max_review_rounds: int = 5, max_review_cost: float = 50.0, max_review_minutes: float = 90.0, require_all_reviewers_clean: bool = True, continue_on_reviewer_limit: bool = False, require_final_fresh_review: bool = True, blocking_severities: Optional[str] = None, clean_reviewer_states: Optional[str] = None, fallback_reviewer_on_failure: bool = False, enable_gates: bool = True, gate_timeout: float = 60.0, gate_allow: Tuple[str, ...] = (), start_step_override: Optional[Union[int, float]] = None, cwd: Optional[Path] = None, prompt_repair: str = \"off\", max_prompt_repair_rounds: int = 1, max_prompt_token_growth: int = 1000, max_prompt_repair_seconds: float = 120.0) -> Tuple[bool, str, float, str]",
|
|
7358
7359
|
"returns": "Tuple[bool, str, float, str]",
|
|
7359
7360
|
"sideEffects": [
|
|
7360
7361
|
"Fetches the GitHub issue (when provided) and PR context via gh api",
|
|
@@ -7394,6 +7395,22 @@
|
|
|
7394
7395
|
"sideEffects": [
|
|
7395
7396
|
"Reads PR metadata, changed files, PR comments, and PR reviews with gh api"
|
|
7396
7397
|
]
|
|
7398
|
+
},
|
|
7399
|
+
{
|
|
7400
|
+
"name": "_discover_prompt_paths",
|
|
7401
|
+
"signature": "(cwd: Path) -> List[Path]",
|
|
7402
|
+
"returns": "List[Path]",
|
|
7403
|
+
"sideEffects": [
|
|
7404
|
+
"Runs git diff to detect tracked/new .prompt files; falls back to glob"
|
|
7405
|
+
]
|
|
7406
|
+
},
|
|
7407
|
+
{
|
|
7408
|
+
"name": "_review_loop_ship_verdict",
|
|
7409
|
+
"signature": "(final_state: Optional[Dict[str, Any]], *, has_issue: bool) -> bool",
|
|
7410
|
+
"returns": "bool",
|
|
7411
|
+
"sideEffects": [
|
|
7412
|
+
"None"
|
|
7413
|
+
]
|
|
7397
7414
|
}
|
|
7398
7415
|
]
|
|
7399
7416
|
}
|
|
@@ -7523,7 +7540,7 @@
|
|
|
7523
7540
|
},
|
|
7524
7541
|
{
|
|
7525
7542
|
"reason": "Enforces deterministic-gate checks (linter, syntax, and doc-contract gates) in checkup review loops.",
|
|
7526
|
-
"description": "Discovers and executes a conservative, allowlisted set of repo-local checks (PR-range git diff --check, doc-contract, prettier --check via package.json, a non-mutating Python syntax check via the builtin compile() builtin per changed .py file, optional ruff/black/mypy when configured in pyproject.toml, optional `npx --no-install tsc --noEmit` when typescript is declared AND node_modules/typescript/bin/tsc is on disk). The doc-contract gate supports repo-declared `.pdd/doc_contract.json` / `.pdd/doc-contract.json` rules for non-PDD projects; when a base-tree config exists it is authoritative so a reviewed PR cannot weaken its own documentation contract.
|
|
7543
|
+
"description": "Discovers and executes a conservative, allowlisted set of repo-local checks (PR-range git diff --check, doc-contract, prettier --check via package.json, a non-mutating Python syntax check via the builtin compile() builtin per changed .py file, optional ruff/black/mypy when configured in pyproject.toml, optional `npx --no-install tsc --noEmit` when typescript is declared AND node_modules/typescript/bin/tsc is on disk). The doc-contract gate supports repo-declared `.pdd/doc_contract.json` / `.pdd/doc-contract.json` rules for non-PDD projects; when a base-tree config exists it is authoritative so a reviewed PR cannot weaken its own documentation contract. Per-file gates pass POSIX `--` end-of-options separator so paths cannot be parsed as flags. Each gate runs as a list-form subprocess with bounded timeout, output truncation, PDD_* env scrubbing, sanitized PATH, and secret redaction; gate discovery and changed-file git probes resolve a trusted absolute git binary outside the PR worktree so PATH=.:$PATH cannot run a PR-shipped ./git. Failing gates are converted into synthetic blocker ReviewFinding rows with reviewer prefix 'gate:' so the review loop refuses the clean verdict and routes the deterministic failure through the fixer.",
|
|
7527
7544
|
"dependencies": [
|
|
7528
7545
|
"checkup_review_loop_python.prompt"
|
|
7529
7546
|
],
|
|
@@ -8114,10 +8131,13 @@
|
|
|
8114
8131
|
}
|
|
8115
8132
|
},
|
|
8116
8133
|
{
|
|
8117
|
-
"reason": "Registers the pdd checkup CLI command
|
|
8134
|
+
"reason": "Registers the pdd checkup CLI command, which orchestrates project-wide health checks and fixes.",
|
|
8118
8135
|
"description": "Defines the checkup Click command including pdd checkup lint dispatch, validate-arch-includes, and agentic checkup integration. In PR mode (--pr) the --issue option is optional (PR reviewed on its own merits when omitted); --pr stays mutually exclusive with the positional TARGET, and --issue without --pr is rejected.",
|
|
8119
8136
|
"dependencies": [
|
|
8120
|
-
"agentic_checkup_python.prompt"
|
|
8137
|
+
"agentic_checkup_python.prompt",
|
|
8138
|
+
"commands/prompt_python.prompt",
|
|
8139
|
+
"commands/contracts_python.prompt",
|
|
8140
|
+
"commands/gate_python.prompt"
|
|
8121
8141
|
],
|
|
8122
8142
|
"priority": 236,
|
|
8123
8143
|
"filename": "commands/checkup_python.prompt",
|
|
@@ -9912,7 +9932,7 @@
|
|
|
9912
9932
|
},
|
|
9913
9933
|
{
|
|
9914
9934
|
"reason": "Single blocking pre-checkup gate that drift-syncs and build/smoke-verifies a PR before handing off to checkup --pr.",
|
|
9915
|
-
"description": "A blocking pre-checkup quality gate invoked by both the change/feature and fix/bug e2e orchestrators immediately before `pdd checkup --pr`. Runs two ordered phases against the PR worktree and returns a single hard pass/fail the caller uses to block the handoff. Phase 1 (drift-sync) brings code, prompt, architecture.json and .pdd/meta into sync in the worktree via run_metadata_sync / sync_all_prompts_to_architecture / detect_drift+heal_module, then re-detects to confirm. .pdd/meta fingerprints written here via run_metadata_sync cover prompt+code only (example/test hashes are null), so canonical fingerprint finalization belongs to the post-merge sync (#1317): BOTH orchestrator paths defer it
|
|
9935
|
+
"description": "A blocking pre-checkup quality gate invoked by both the change/feature and fix/bug e2e orchestrators immediately before `pdd checkup --pr`. Runs two ordered phases against the PR worktree and returns a single hard pass/fail the caller uses to block the handoff. Phase 1 (drift-sync) brings code, prompt, architecture.json and .pdd/meta into sync in the worktree via run_metadata_sync / sync_all_prompts_to_architecture / detect_drift+heal_module, then re-detects to confirm. .pdd/meta fingerprints written here via run_metadata_sync cover prompt+code only (example/test hashes are null), so canonical fingerprint finalization belongs to the post-merge sync (#1317): BOTH orchestrator paths defer it \u2014 the fix path filters .pdd/** from its commit, the change path restores tracked .pdd/meta after the gate \u2014 so the PR tree may still show fingerprint drift until the post-merge sync completes it. Phase 2 (build/smoke) runs deterministic per-file checks (py_compile/ruff/tsc) plus a project smoke layer (import changed modules, route/router-object probe, caller-compatibility sweep over both from-import and alias-import call sites, git-diff-targeted unit tests including directly-changed test files) and hard-blocks on any red result. Closes the vacuous-pass hole in run_ci_validation_loop by running its own checks rather than only polling GitHub required checks; preserves the fork-PR-RCE constraint by delegating to checkup_gates._script_is_acceptable, which runs only validated, safe package.json scripts (never build scripts) and skips the npm-family path entirely when the PR touches package.json / a package-manager config; the gate adds no command execution of its own beyond that allowlist. Docs-only diffs short-circuit; strict mode reuses PDD_STRICT_DOC_SYNC (issue #1293).",
|
|
9916
9936
|
"dependencies": [
|
|
9917
9937
|
"checkup_gates_python.prompt",
|
|
9918
9938
|
"ci_drift_heal_python.prompt",
|
|
@@ -9941,5 +9961,33 @@
|
|
|
9941
9961
|
]
|
|
9942
9962
|
}
|
|
9943
9963
|
}
|
|
9964
|
+
},
|
|
9965
|
+
{
|
|
9966
|
+
"reason": "Non-interactive prompt source-set repair orchestrator using the internal change() contract.",
|
|
9967
|
+
"description": "Implements run_prompt_repair_loop(): consumes pdd.prompt_source_set_report.v1 findings and supporting context, synthesizes bounded change instructions, applies the complete prompt through pdd.change.change(), enforces token growth, rebuilds the full source-set report after each round, and writes an audit artifact to .pdd/evidence/prompt_repair/.",
|
|
9968
|
+
"dependencies": [
|
|
9969
|
+
"change_python.prompt",
|
|
9970
|
+
"checkup_prompt_main_python.prompt",
|
|
9971
|
+
"prompt_lint_python.prompt"
|
|
9972
|
+
],
|
|
9973
|
+
"priority": 250,
|
|
9974
|
+
"filename": "prompt_repair_python.prompt",
|
|
9975
|
+
"filepath": "pdd/prompt_repair.py",
|
|
9976
|
+
"tags": [
|
|
9977
|
+
"module",
|
|
9978
|
+
"python"
|
|
9979
|
+
],
|
|
9980
|
+
"interface": {
|
|
9981
|
+
"type": "module",
|
|
9982
|
+
"module": {
|
|
9983
|
+
"functions": [
|
|
9984
|
+
{
|
|
9985
|
+
"name": "run_prompt_repair_loop",
|
|
9986
|
+
"signature": "(path: Path, config: PromptRepairConfig, *, context: Optional[Dict[str, str]] = None, cwd: Optional[Path] = None) -> RepairResult",
|
|
9987
|
+
"returns": "RepairResult"
|
|
9988
|
+
}
|
|
9989
|
+
]
|
|
9990
|
+
}
|
|
9991
|
+
}
|
|
9944
9992
|
}
|
|
9945
9993
|
]
|
|
@@ -667,12 +667,12 @@ git commit -m "docs: update documentation"
|
|
|
667
667
|
The version is derived from git tags via setuptools-scm. To release, on `main`:
|
|
668
668
|
|
|
669
669
|
```bash
|
|
670
|
-
make release
|
|
671
|
-
make release BUMP=minor
|
|
672
|
-
make release BUMP=major
|
|
670
|
+
make release-local # patch bump with local Infisical PDS token
|
|
671
|
+
make release-local BUMP=minor # minor bump
|
|
672
|
+
make release-local BUMP=major # major bump
|
|
673
673
|
```
|
|
674
674
|
|
|
675
|
-
`make release` tags `HEAD` with the next `vX.Y.Z`, pushes the tag, then runs `make release-video`. The release-video step asks Claude Code to turn the release diff/notes into a short video script and calls the Prompt Driven Studio CLI (`pds release-video create --target publish --platform youtube --privacy unlisted --wait`) to create and upload an unlisted YouTube video. Set `PDS_CLI` if `pds` is not on `PATH`, and set `RELEASE_VIDEO_PROJECT_ID`
|
|
675
|
+
`make release-local` injects the local Infisical `PDS_RELEASE_TOKEN`, tags `HEAD` with the next `vX.Y.Z`, pushes the tag, then runs `make release-video`. The release-video step asks Claude Code to turn the release diff/notes into a short video script and calls the Prompt Driven Studio CLI (`pds release-video create --target publish --platform youtube --privacy unlisted --wait`) to create and upload an unlisted YouTube video. Set `PDS_CLI` if `pds` is not on `PATH`, and set `RELEASE_VIDEO_PROJECT_ID` only for emergency recovery with a fixed-project PDS token. Use `RELEASE_VIDEO=0` only for an emergency release that must skip paid video generation/upload. GitHub Actions then builds the wheel, waits for the `gltanaka` approval on the `pypi-publish` environment, publishes to PyPI via OIDC, and creates a GitHub Release with auto-generated notes.
|
|
676
676
|
|
|
677
677
|
### 9. Troubleshooting Development Setup
|
|
678
678
|
|
|
@@ -55,7 +55,11 @@ To achieve maximum velocity and specification quality in Prompt-Driven Developme
|
|
|
55
55
|
```mermaid
|
|
56
56
|
graph TD
|
|
57
57
|
A["1. Write Draft Prompt (.prompt)"] --> B["2. Run 'pdd checkup lint'"]
|
|
58
|
-
B -->|Flagged Ambiguities| C["Refine Prose & Add <vocabulary>"]
|
|
58
|
+
B -->|"Flagged Ambiguities (repair=off)"| C["Refine Prose & Add <vocabulary>"]
|
|
59
|
+
B -->|"Flagged Ambiguities (repair=best-effort)"| R["Non-interactive prompt repair"]
|
|
60
|
+
R --> B2["Re-run checkup lint"]
|
|
61
|
+
B2 -->|"Still failing"| C
|
|
62
|
+
B2 -->|"Linter Passes"| D
|
|
59
63
|
C --> B
|
|
60
64
|
B -->|Linter Passes| D["3. Generate Code ('pdd generate')"]
|
|
61
65
|
D --> E["4. Verify Code ('make test')"]
|
|
@@ -75,6 +79,8 @@ pdd checkup lint prompts/my_feature_python.prompt --llm
|
|
|
75
79
|
```
|
|
76
80
|
Review the advisory warnings, refine any vague terms, and build a precise `<vocabulary>` block in the prompt to define what ambiguous terms mean in your domain. Rerun the linter until the scan is clean.
|
|
77
81
|
|
|
82
|
+
When `prompt_repair = "best-effort"` is set in `pyproject.toml` `[tool.pdd.checkup]` (or `--prompt-repair best-effort` is passed), a failed prompt source-set checkup automatically triggers a bounded, non-interactive repair pass — adding missing vocabulary definitions, normalizing contract rule IDs, filling coverage gaps — before re-running the full source-set check. See [docs/prompt_repair.md](prompt_repair.md) for configuration and safety details.
|
|
83
|
+
|
|
78
84
|
### Step 3: Generate Code
|
|
79
85
|
Once the prompt contract is clean and deterministic, generate the initial implementation:
|
|
80
86
|
```bash
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
# Non-Interactive Prompt Repair Loop
|
|
2
|
+
|
|
3
|
+
When automatic prompt checkup fails, PDD can run a **bounded, non-interactive repair pass**, re-run checkup, then continue or report remaining issues.
|
|
4
|
+
|
|
5
|
+
Keeps PDD in prompt space: improve the prompt before code-level debugging.
|
|
6
|
+
|
|
7
|
+
## Workflow
|
|
8
|
+
|
|
9
|
+
```text
|
|
10
|
+
PDD creates/modifies prompt
|
|
11
|
+
↓
|
|
12
|
+
deterministic prompt checkup
|
|
13
|
+
↓
|
|
14
|
+
pass → continue to code generation/change
|
|
15
|
+
fail → non-interactive prompt repair
|
|
16
|
+
↓
|
|
17
|
+
prompt checkup again
|
|
18
|
+
↓
|
|
19
|
+
pass/warn → continue | else report remaining issues (strict may block)
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
# Disable repair (default)
|
|
26
|
+
pdd checkup ... --prompt-repair off
|
|
27
|
+
|
|
28
|
+
# Best-effort repair (continues even if issues remain after repair)
|
|
29
|
+
pdd checkup ... --prompt-repair best-effort
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## What the Repair Loop Fixes
|
|
33
|
+
|
|
34
|
+
The repair brief consumes prompt-fixable findings from the structured source-set
|
|
35
|
+
report: lint, contract, and coverage (for example unchecked requirements or missing
|
|
36
|
+
contract rules). External-only findings such as gate `missing_evidence`, drift
|
|
37
|
+
readiness notes, and snapshot policy failures that require evidence capture do
|
|
38
|
+
not drive automated repair. The loop applies the smallest coherent prompt-only
|
|
39
|
+
update through the internal `pdd change` implementation, then rebuilds the
|
|
40
|
+
complete report.
|
|
41
|
+
|
|
42
|
+
The repair loop does **not** edit generated code, tests, stories, or other files.
|
|
43
|
+
|
|
44
|
+
## Configuration
|
|
45
|
+
|
|
46
|
+
```toml
|
|
47
|
+
# pyproject.toml
|
|
48
|
+
[tool.pdd.checkup]
|
|
49
|
+
prompt_repair = "best-effort" # off | best-effort | strict
|
|
50
|
+
max_prompt_repair_rounds = 1
|
|
51
|
+
max_prompt_token_growth = 1000
|
|
52
|
+
max_prompt_repair_seconds = 120
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
| Key | Default | Description |
|
|
56
|
+
|-----|---------|-------------|
|
|
57
|
+
| `prompt_repair` | `off` | Repair mode: `off` disables; `best-effort` repairs and continues on failure; `strict` blocks on unresolved issues after repair |
|
|
58
|
+
| `max_prompt_repair_rounds` | `1` | Maximum repair-and-recheck iterations |
|
|
59
|
+
| `max_prompt_token_growth` | `1000` | Maximum token increase allowed during repair |
|
|
60
|
+
| `max_prompt_repair_seconds` | `120` | Wall-clock timeout for the entire repair loop |
|
|
61
|
+
|
|
62
|
+
## CLI Flags
|
|
63
|
+
|
|
64
|
+
The following flags can be passed to `pdd checkup` (and related commands that invoke checkup) to override `pyproject.toml [tool.pdd.checkup]` defaults:
|
|
65
|
+
|
|
66
|
+
| Flag | Default | Description |
|
|
67
|
+
|------|---------|-------------|
|
|
68
|
+
| `--prompt-repair MODE` | `off` | Non-interactive repair mode: `off`, `best-effort`, or `strict` |
|
|
69
|
+
| `--max-prompt-repair-rounds INT` | `1` | Maximum repair-and-recheck iterations |
|
|
70
|
+
| `--max-prompt-token-growth INT` | `1000` | Maximum token increase allowed during repair |
|
|
71
|
+
| `--max-prompt-repair-seconds FLOAT` | `120.0` | Wall-clock timeout for the entire repair loop |
|
|
72
|
+
|
|
73
|
+
## Token Delta Reporting
|
|
74
|
+
|
|
75
|
+
After repair, PDD reports the token impact:
|
|
76
|
+
|
|
77
|
+
```
|
|
78
|
+
Prompt token delta: +312 tokens
|
|
79
|
+
Note: 240 tokens are reusable contract preamble.
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
A warning is emitted if growth exceeds `max_prompt_token_growth`.
|
|
83
|
+
|
|
84
|
+
## Safety
|
|
85
|
+
|
|
86
|
+
- Deterministic source-set checkup remains the authority after every repair round
|
|
87
|
+
- Prompt changes use `pdd.change.change()` and its modified-prompt delimiter contract
|
|
88
|
+
- No generated code edits
|
|
89
|
+
- Audit note written under `.pdd/evidence/prompt_repair/<slug>-<timestamp>.json`
|
|
90
|
+
|
|
91
|
+
## Evidence
|
|
92
|
+
|
|
93
|
+
Each repair run writes a record to the run's evidence manifest:
|
|
94
|
+
|
|
95
|
+
```json
|
|
96
|
+
{
|
|
97
|
+
"run_id": "...",
|
|
98
|
+
"prompt_path": "prompts/my_module_python.prompt",
|
|
99
|
+
"tokens_before": 412,
|
|
100
|
+
"tokens_after": 724,
|
|
101
|
+
"token_delta": 312,
|
|
102
|
+
"rounds_used": 1,
|
|
103
|
+
"issues_before": 3,
|
|
104
|
+
"issues_after": 0,
|
|
105
|
+
"status": "repaired"
|
|
106
|
+
}
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
## Non-goals
|
|
110
|
+
|
|
111
|
+
- No separate `pdd checkup coach` command
|
|
112
|
+
- No interactive questions (deferred to a later issue in the stack)
|
|
113
|
+
- No CI interactive mode
|
|
114
|
+
- No unbounded agentic repo search
|
|
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
|
|
|
18
18
|
commit_id: str | None
|
|
19
19
|
__commit_id__: str | None
|
|
20
20
|
|
|
21
|
-
__version__ = version = '0.0.
|
|
22
|
-
__version_tuple__ = version_tuple = (0, 0,
|
|
21
|
+
__version__ = version = '0.0.266'
|
|
22
|
+
__version_tuple__ = version_tuple = (0, 0, 266)
|
|
23
23
|
|
|
24
|
-
__commit_id__ = commit_id = '
|
|
24
|
+
__commit_id__ = commit_id = 'g38a270530'
|