pdd-cli 0.0.274__tar.gz → 0.0.276__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.276/.pdd/meta/agentic_sync_runner_python.json +21 -0
- pdd_cli-0.0.276/.pdd/meta/agentic_sync_runner_python_run.json +11 -0
- pdd_cli-0.0.276/.pdd/meta/durable_sync_runner_python.json +18 -0
- pdd_cli-0.0.276/.pdd/meta/durable_sync_runner_python_run.json +11 -0
- {pdd_cli-0.0.274/pdd_cli.egg-info → pdd_cli-0.0.276}/PKG-INFO +1 -1
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/README.md +3 -2
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/architecture.json +33 -30
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/_version.py +3 -3
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_bug_orchestrator.py +67 -4
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_change_orchestrator.py +85 -12
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_common.py +72 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_e2e_fix_orchestrator.py +134 -9
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_sync_runner.py +236 -47
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_test_orchestrator.py +64 -2
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/ci_validation.py +59 -3
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/code_generator_main.py +30 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/conflicts_in_prompts.py +17 -2
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/continue_generation.py +23 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/detect_change.py +16 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/durable_sync_runner.py +4 -2
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/fix_errors_from_unit_tests.py +19 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/incremental_code_generator.py +23 -6
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/incremental_prd_architecture.py +16 -1
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/insert_includes.py +12 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/postprocess.py +15 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/pre_checkup_gate.py +42 -13
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_bug_orchestrator_python.prompt +1 -1
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_bug_step12_pr_LLM.prompt +9 -9
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_change_orchestrator_python.prompt +2 -2
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_change_step13_create_pr_LLM.prompt +7 -7
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_common_python.prompt +1 -1
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_e2e_fix_orchestrator_python.prompt +3 -3
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_sync_runner_python.prompt +4 -3
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_orchestrator_python.prompt +1 -1
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step9_submit_pr_LLM.prompt +9 -9
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/ci_validation_python.prompt +2 -2
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/code_generator_main_python.prompt +1 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/conflicts_in_prompts_python.prompt +1 -1
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/continue_generation_python.prompt +21 -2
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/detect_change_python.prompt +20 -1
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/durable_sync_runner_python.prompt +2 -2
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/fix_errors_from_unit_tests_python.prompt +36 -1
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/incremental_code_generator_python.prompt +5 -3
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/incremental_prd_architecture_python.prompt +1 -1
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/insert_includes_python.prompt +1 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/postprocess_python.prompt +28 -1
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/update_prompt_python.prompt +20 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/xml_tagger_python.prompt +28 -1
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/update_prompt.py +11 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/xml_tagger.py +11 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276/pdd_cli.egg-info}/PKG-INFO +1 -1
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd_cli.egg-info/SOURCES.txt +4 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_bug_orchestrator.py +118 -3
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_change_orchestrator.py +312 -8
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_e2e_fix_orchestrator.py +130 -1
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_sync_runner.py +630 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_test_orchestrator.py +138 -3
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_ci_validation.py +486 -1
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_code_generator_main.py +95 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_conflicts_in_prompts.py +5 -7
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_continue_generation.py +29 -3
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_detect_change.py +136 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_durable_sync_runner.py +178 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_219_duplicate_includes.py +3 -4
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_selective_includes.py +5 -5
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_incremental_code_generator.py +182 -3
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_insert_includes.py +1 -1
- pdd_cli-0.0.276/tests/test_issue_1612_sibling_guards.py +1188 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_postprocess.py +87 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_pre_checkup_gate.py +49 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_xml_tagger.py +3 -12
- pdd_cli-0.0.274/.pdd/meta/agentic_sync_runner_python.json +0 -17
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.env.example +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.gitattributes +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.github/dependabot.yml +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.github/workflows/auto-heal.yml +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.github/workflows/backfill-release-notes.yml +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.github/workflows/pdd-secrets-dispatch.yml +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.github/workflows/release.yml +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.github/workflows/unit-tests.yml +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.gitignore +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_architecture_orchestrator_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_bug_orchestrator_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_bug_orchestrator_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_bug_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_change_orchestrator_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_change_orchestrator_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_checkup_orchestrator_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_checkup_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_checkup_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_common_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_common_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_crash_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_e2e_fix_orchestrator_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_e2e_fix_orchestrator_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_fix_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_split_orchestrator_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_split_orchestrator_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_update_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/agentic_verify_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/architecture_sync_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/checkup_review_loop_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/checkup_review_loop_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/ci_drift_heal_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/code_generator_main_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/commands_checkup_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/commands_checkup_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/commands_modify_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/commands_modify_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/commands_prompt_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/construct_paths_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/context_audit_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/context_snapshot_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/core_cloud_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/fix_code_loop_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/fix_error_loop_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/get_comment_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/get_test_command_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/git_update_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/llm_invoke_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/llm_invoke_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/metadata_sync_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/metadata_sync_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/pin_example_hack_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/pin_example_hack_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/preprocess_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/prompt_lint_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/provider_manager_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/provider_manager_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/server_jobs_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/summarize_directory_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/summarize_directory_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/sync_determine_operation_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/sync_orchestration_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/sync_orchestration_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/sync_tui_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/sync_tui_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/track_cost_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/track_cost_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pdd/meta/update_main_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pddignore +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.pddrc +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/.sync-config.yml +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/AGENTS.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/CHANGELOG.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/CLAUDE.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/CONTRIBUTING.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/GEMINI.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/LICENSE +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/Makefile +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/SETUP_WITH_GEMINI.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/SETUP_WITH_WINDOWS.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/ci/cloud-batch/Dockerfile +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/ci/cloud-batch/balance-chunks.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/ci/cloud-batch/cloudbuild.yaml +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/ci/cloud-batch/collect-results.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/ci/cloud-batch/entrypoint.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/ci/cloud-batch/job-template-standard.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/ci/cloud-batch/job-template.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/ci/cloud-batch/setup-gcp.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/ci/cloud-batch/submit.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/ci/cloud-batch/test-durations.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/DSPy_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/__init__example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/_keyring_timeout_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_architecture_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_architecture_orchestrator_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_bug_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_bug_orchestrator_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_change_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_change_orchestrator_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_checkup_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_checkup_orchestrator_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_common_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_crash_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_e2e_fix_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_e2e_fix_orchestrator_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_fix_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_langtest_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_split_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_split_orchestrator_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_sync_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_sync_runner_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_test_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_test_orchestrator_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_update_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/agentic_verify_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/anthropic_counter_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/anthropic_tool_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/api_contract_slicer_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/api_key_scanner_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/architecture_registry_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/architecture_sync_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/auth_service_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/auto_deps_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/auto_include_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/auto_update_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/autotokenizer_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/bug_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/bug_to_unit_test_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/bug_to_unit_test_failure_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/1/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/1/final_code_generator_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/1/initial_code_generator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/1/initial_code_generator_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/10/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/10/final_fix_errors_from_unit_tests_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/10/initial_fix_errors_from_unit_tests.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/10/initial_fix_errors_from_unit_tests_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/11/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/11/initial_code_generator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/11/initial_code_generator_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/11/initial_split_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/12/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/12/final_unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/12/initial_postprocess.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/12/initial_postprocess_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/13/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/13/initial_split.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/13/initial_split_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/13/modified_initial_split.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/14/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/14/initial_change.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/14/initial_change_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/14/modified_initial_change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/15/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/15/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/15/initial_cli.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/15/initial_cli_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/15/modified_initial_cli.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/16/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/16/fix_code_module_errors_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/16/fix_code_module_errors_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/16/fix_error_loop.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/16/fix_error_loop_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/16/fix_errors_from_unit_tests_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/16/modified_fix_error_loop_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/17/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/17/continue_generation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/17/continue_generation_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/17/unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/17/updated_continue_generation_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/17/updated_unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/18/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/18/code_generator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/18/code_generator_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/18/unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/18/updated_code_generator_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/18/updated_unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/19/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/19/context_generator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/19/context_generator_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/19/unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/19/updated_context_generator_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/19/updated_unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/2/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/2/final_context_generator_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/2/initial_context_generator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/2/initial_context_generator_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/20/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/20/generate_test.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/20/generate_test_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/20/updated_generate_test_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/21/auto_deps_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/21/auto_include.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/21/auto_include_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/21/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/22/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/22/preprocess.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/22/preprocess_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/22/preprocess_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/3/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/3/final_test_generator_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/3/initial_test_generator_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/3/intial_test_generator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/4/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/4/final_postprocess_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/4/initial_postprocess.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/4/initial_postprocess_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/5/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/5/final_split_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/5/initial_split.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/5/initial_split_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/6/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/6/final_xml_tagger_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/6/initial_xml_tagger.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/6/initial_xml_tagger_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/7/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/7/final_fix_errors_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/7/initial_fix_errors.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/7/initial_fix_errors_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/8/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/8/final_fix_errors_from_unit_tests_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/8/initial_fix_errors_from_unit_tests.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/8/initial_fix_errors_from_unit_tests_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/9/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/9/final_fix_error_loop_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/9/initial_fix_error_loop.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/9/initial_fix_error_loop_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change/simple_math/change.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/change_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/checkup_gates_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/checkup_interactive_session_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/checkup_prompt_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/checkup_review_loop_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/ci_detect_changed_modules_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/ci_drift_heal_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/ci_validation_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/cli_detector_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/cli_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/click_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/click_executor_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/cloud_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/cloud_function_call.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/cmd_test_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/code_generator_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/code_generator_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/commands/__init___example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/commands/analysis_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/commands/auth_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/commands/checkup_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/commands/connect_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/commands/fix_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/commands/generate_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/commands/maintenance_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/commands/misc_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/commands/modify_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/commands/sessions_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/commands/templates_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/commands/utility_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/comment_line_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/config_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/conflicts_in_prompts_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/conflicts_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/construct_paths_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/content_selector_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/context_audit_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/context_generator_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/context_generator_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/context_snapshot_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/continue_generation_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/core/cli_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/core/cloud_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/core/dump_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/core/duplicate_cli_guard_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/core/errors_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/core/utils_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/crash_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/ctx_obj_params.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/detect_change_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/detect_change_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/dict_utils_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/edit_file_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/embed_retrieve_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/example.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/extracts_prune_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/fastapi_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/find_section_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/firecrawl_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/fix_code_loop_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/fix_code_module_errors_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/fix_error_loop_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/fix_errors_from_unit_tests_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/fix_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/fix_verification_errors_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/fix_verification_errors_loop_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/fix_verification_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/gemini_may_pro_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/generate_model_catalog_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/generate_output_paths_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/generate_test_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/generation_completion_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/get_comment_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/get_extension_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/get_jwt_token_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/get_language_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/get_run_command_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/get_test_command_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/git_update_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/include_query_extractor_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/increase_tests_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/incremental_code_generator_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/insert_includes_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/install_completion_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/job_manager_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/langchain_lcel_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/list_stats_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/llm_invoke_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/llm_model_ranges_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/llm_selector_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/load_prompt_template_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/logo_animation_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/metadata_sync_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/model_tester_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/one_session_sync_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/operation_log_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/path_resolution_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/pdd_completion_example.fish +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/pdd_completion_example.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/pdd_completion_example.zsh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/pddrc_initializer_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/pin_example_hack_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/postprocess_0_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/postprocess_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/pre_checkup_gate_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/preprocess_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/preprocess_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/process_csv_change_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/provider_manager_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/pytest_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/pytest_isolation_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/pytest_output_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/pytest_slicer_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/python_env_detector_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/python_preamble.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/range_validator_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/remote_session_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/render_mermaid_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/resolve_effective_config_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/__init___example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/app_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/click_executor_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/executor_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/jobs_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/models_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/routes/__init___example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/routes/architecture_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/routes/auth_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/routes/commands_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/routes/config_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/routes/extracts_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/routes/files_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/routes/prompts_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/routes/session_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/routes/websocket_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/security_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/terminal_spawner_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/server/token_counter_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/setup_tool_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/split/simple_math/split_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/split_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/split_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/split_validation_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/summarize_directory_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/sync_animation_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/sync_code_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/sync_determine_operation_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/sync_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/sync_orchestration_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/sync_order_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/sync_tui_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/test.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/tiktoken_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/trace_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/trace_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/track_cost_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/unfinished_prompt_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/update_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/update_model_costs_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/update_prompt_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/user_story_tests_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/validate_prompt_includes_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/websocket_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/context/xml_tagger_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demo/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demo/prompts/agentic_change_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demo/prompts/fix_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demo/prompts/prompt_lint_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demo/run_scenarios.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demos/checkup_interactive/FULL_WORKFLOW.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demos/checkup_interactive/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demos/checkup_interactive/context/github_issues_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demos/checkup_interactive/drift_workspace/prompts/drift_candidate_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demos/checkup_interactive/drift_workspace/src/drift_candidate.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demos/checkup_interactive/expected/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demos/checkup_interactive/prompts/01_clean_task.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demos/checkup_interactive/prompts/02_vague_clarification.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demos/checkup_interactive/prompts/03_formatting_edge_case.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demos/checkup_interactive/prompts/04_contract_sensitive.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demos/checkup_interactive/prompts/05_coverage_sensitive.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demos/checkup_interactive/prompts/06_snapshot_candidate.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demos/checkup_interactive/prompts/07_drift_candidate.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/demos/checkup_interactive/run_demo.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/ONBOARDING.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/Software Development Costs and Maintenance_ 2022/342/200/2232025 Trends and AI Impact.md" +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/TUTORIALS.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/architecture_include_validation.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/architecture_postcheck_waivers.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/checkup_interactive_session.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/checkup_interactive_session_pi_sample.jsonl +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/checkup_interactive_session_spike.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/checkup_interactive_session_tty_sample.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/checkup_prompt_quality_gate.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/checkup_simplify.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/checkup_simplify_providers.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/checkup_verifier.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/ci.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/comparison.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/context.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/contract_check.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/coverage_contracts.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/design/EPIC-1540-design-refresh.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/design/color-system.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/design/context-token-colors.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/design/demos/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/design/demos/demo-pr1-color-system.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/design/demos/demo-pr1-color-system.svg +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/design/demos/demo-pr2-status-messaging.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/design/demos/demo-pr2-status-messaging.svg +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/design/demos/demo-pr3-context-tokens.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/design/demos/demo-pr3-context-tokens.svg +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/design/demos/generate_demos.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/design/status-messaging.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/drift.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/evidence_manifest.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/examples/prompt_with_metadata.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/faq.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/generating_user_stories.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/goldilocks_prompt.jpeg +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/grounding_policy.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/issue_820_user_story_template.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/issues/issue_813_verification_plan.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/mid_run_steering_validation.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/new_whitepaper.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/o3_whitepaper.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/orig_whitepaper.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/path_resolution_resolver.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/pdd_vs_agentic_cli_definitive_proof_plan.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/prompt-driven-development-doctrine.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/prompt_lint.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/prompt_repair.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/prompting_guide.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/runbooks/pr-loop-process.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/skills/checkup-simplify/SKILL.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/standup_notes.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/sync_architecture_analysis.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/sync_determination_analysis.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/sync_solution_o3pro.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/sync_solution_opus.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/the-last-programming-language.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/videos/handpaint_demo.gif +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_before_4.5.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/evidence/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/evidence/SHA256SUMS.txt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/evidence/_session_classification.tsv +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/evidence/prompts_pdd.jsonl +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/evidence/prompts_pdd.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/evidence/prompts_vibe.jsonl +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/evidence/prompts_vibe.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/evidence/quote_map.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/images/loop.mmd +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/images/loop.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/images/oscillation.mmd +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/images/oscillation.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/images/pdd_cycle.mmd +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/images/pdd_cycle.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/images/pipeline.mmd +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/images/pipeline.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/images/threshold.mmd +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/images/threshold.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_specification_drift/whitepaper.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/analysis_report/avg_api_cost_by_edit_type.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/analysis_report/avg_api_cost_by_file_size.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/analysis_report/avg_api_cost_by_language.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/analysis_report/avg_execution_time_by_edit_type.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/analysis_report/avg_execution_time_by_file_size.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/analysis_report/avg_execution_time_by_language.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/analysis_report/cost_per_successful_task.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/analysis_report/overall_avg_api_cost.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/analysis_report/overall_avg_execution_time.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/analysis_report/overall_success_rate.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/analysis_report/success_rate_by_edit_type.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/analysis_report/success_rate_by_file_size.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/analysis_report/success_rate_by_language.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/analysis_report/time_vs_cost_scatter.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/analysis_report/total_api_cost_comparison.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/creation_report/claude_cost_per_run_dist.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/creation_report/claude_lines_added_removed_dist.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/creation_report/claude_wall_duration_dist.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/creation_report/pdd_avg_cost_per_module_dist.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/creation_report/pdd_top_modules_by_cost.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/creation_report/pdd_top_modules_by_time.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/creation_report/pdd_total_time_per_module_dist.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/creation_report/total_cost_comparison.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/creation_report/total_time_comparison.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/docs/whitepaper_with_benchmarks/whitepaper_w_benchmarks.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/environment.yml +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_bug_orchestrator_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_change_orchestrator_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_checkup_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_common_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_common_worktree_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_e2e_fix_orchestrator_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example/main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example/src/main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example/src/utils.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example/tests/test_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example/utils_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_gradle/.gitignore +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_gradle/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_gradle/build.gradle +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_gradle/gradle/wrapper/gradle-wrapper.jar +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_gradle/gradle/wrapper/gradle-wrapper.properties +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_gradle/gradlew +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_gradle/gradlew.bat +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_gradle/main_java.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_gradle/settings.gradle +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_gradle/src/main/java/Main.java +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_gradle/src/main/java/Util.java +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_gradle/src/test/java/TestMain.java +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_gradle/util_java.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_maven/.gitignore +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_maven/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_maven/main_java.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_maven/pom.xml +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_maven/src/main/java/Main.java +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_maven/src/main/java/Util.java +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_maven/src/test/java/TestMain.java +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_java_maven/util_java.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_javascript/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_javascript/main_javascript.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_javascript/package.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_javascript/src/main.js +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_javascript/src/utils.js +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_javascript/tests/test_main.js +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_javascript/utils_javascript.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_typescript/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_typescript/main_typescript.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_typescript/package.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_typescript/src/main.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_typescript/src/utils.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_typescript/tests/test_main.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_typescript/tsconfig.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_fallback_example_typescript/utils_typescript.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_split_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/agentic_split_orchestrator_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/arch/ORDER_MANAGEMENT_PRD.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/arch/architecture.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/arch/architecture_diagram.html +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/arch/prompts/create_order_page_TypeScriptReact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/arch/prompts/database_config_Python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/arch/prompts/order_api_Python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/arch/prompts/order_components_TypeScriptReact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/arch/prompts/order_models_Python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/arch/prompts/orders_page_TypeScriptReact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/arch/prompts/view_order_page_TypeScriptReact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/arch/tech_stack.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/architecture_contract_summary_demo/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/architecture_contract_summary_demo/TOUCHPOINTS.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/architecture_contract_summary_demo/architecture.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/architecture_contract_summary_demo/prompts/legacy_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/architecture_contract_summary_demo/prompts/refund_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/architecture_contract_summary_demo/run_demo.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/architecture_contract_summary_demo/run_demo.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/architecture_contract_summary_demo/user_stories/story__refund_cap.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/checkup_review_loop_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/checkup_simplify_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/context_snapshot_demo/.gitignore +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/context_snapshot_demo/.pddrc +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/context_snapshot_demo/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/context_snapshot_demo/context/note.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/context_snapshot_demo/pdd/.gitkeep +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/context_snapshot_demo/prompts/dynamic_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/context_snapshot_demo/prompts/foo_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/context_snapshot_demo/prompts/static_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/context_snapshot_demo/prompts/with_shell_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/context_snapshot_demo/run_demo.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/context_snapshot_demo/run_test_plan_manual.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/get_lint_commands_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/git_porcelain_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/handpaint/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/handpaint/cursor/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/handpaint/cursor/handpaint.html +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/handpaint/pdd/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/handpaint/pdd/handpaint_html.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/handpaint/pdd/handpaint_pdd.html +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/hello/.pdd/meta/hello_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/hello/.pddrc +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/hello/examples/hello_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/hello/hello_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/hello/src/hello.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/hello/tests/test_hello.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/hello_you/hello_you_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/image_prompt_example/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/image_prompt_example/describe.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/image_prompt_example/describe_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/image_prompt_example/image.heic +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/image_prompt_example/image.jpeg +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/pi_calc/.pdd/meta/pi_calc_python.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/pi_calc/.pdd/meta/pi_calc_python_run.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/pi_calc/examples/pi_calc_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/pi_calc/examples/pi_calc_example_iteration_1.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/pi_calc/examples/pi_calc_example_iteration_2.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/pi_calc/pdd/pi_calc.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/pi_calc/pdd/pi_calc_1_2_2_0_20250715_122550.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/pi_calc/pdd/pi_calc_iteration_1.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/pi_calc/pdd/pi_calc_iteration_2.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/pi_calc/pi_calc_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/pi_calc/tests/test_pi_calc.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/.pddrc +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/Makefile +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/architecture.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/architecture_diagram.html +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/docs/specs.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/docs/tech_stack.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/examples/backend_api_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/examples/cli_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/examples/fix_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/examples/frontend_streamlit_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/examples/helpers_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/examples/llm_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/examples/models_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/examples/pipeline_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/examples/report_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/examples/report_output.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/examples/report_output.txt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/examples/rules_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/project_dependencies.csv +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/prompts/backend_api_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/prompts/cli_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/prompts/fix_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/prompts/frontend_streamlit_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/prompts/helpers_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/prompts/llm_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/prompts/models_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/prompts/pipeline_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/prompts/report_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/prompts/rules_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/requirements.txt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/src/backend/backend_api.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/src/cli/cli.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/src/frontend/frontend_streamlit.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/src/utils/fix.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/src/utils/helpers.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/src/utils/llm.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/src/utils/models.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/src/utils/pipeline.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/src/utils/report.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/src/utils/rules.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/tests/test_backend_api.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/tests/test_cli.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/tests/test_fix.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/tests/test_frontend_streamlit.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/tests/test_helpers.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/tests/test_llm.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/tests/test_models.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/tests/test_pipeline.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/tests/test_report.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/prompts_linter/tests/test_rules.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/qrcode_sandwich/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/qrcode_sandwich/qrcode_sandwich.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/qrcode_sandwich/qrcode_sandwich.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/qrcode_sandwich/qrcode_sandwich_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/split_main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/split_validation_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/.gitignore +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/.pddrc +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/API_FAILURE_ANALYSIS.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/API_KEY_SETUP.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/EDIT_FILE_TOOL_README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/Makefile +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/architecture.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/architecture_diagram.html +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/data/llm_model.csv +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/example2.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/project_dependencies.csv +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/prompts/__init___Python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/prompts/architecture/architecture_json.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/prompts/cache_manager_utility_Python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/prompts/cli_Python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/prompts/core_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/prompts/cost_tracker_utility_Python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/prompts/pyproject_TOML.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/prompts/think_tool_capability_Python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/pyproject.toml +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/edit_file_tool/__init__.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/edit_file_tool/cache_manager_utility.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/edit_file_tool/cli.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/edit_file_tool/core.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/edit_file_tool/cost_tracker_utility.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/edit_file_tool/think_tool_capability.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/examples/__init___example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/examples/cache_manager_utility_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/examples/cli_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/examples/core_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/examples/cost_tracker_utility_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/examples/generated_xml/example_mod.xml +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/examples/think_tool_capability_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/tests/test___init__.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/tests/test_cache_manager_utility.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/tests/test_cli.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/tests/test_core.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/tests/test_cost_tracker_utility.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/template_example/src/tests/test_think_tool_capability.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/test_generation_benchmark/ANALYSIS.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/test_generation_benchmark/DISCORD_SUMMARY.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/test_generation_benchmark/Makefile +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/test_generation_benchmark/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/test_generation_benchmark/benchmark_results/code_based/test_email_validator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/test_generation_benchmark/benchmark_results/example_based/test_email_validator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/test_generation_benchmark/email_validator_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/test_generation_benchmark/examples/email_validator_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/test_generation_benchmark/src/email_validator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/tictactoe/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/tictactoe/tictactoe_architecture.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/tictactoe/tictactoe_architecture_diagram.html +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/examples/tictactoe/tictactoe_prd.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/__init__.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/__main__.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/_keyring_timeout.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/_selector_parse.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_architecture.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_architecture_orchestrator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_bug.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_change.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_checkup.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_checkup_orchestrator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_common_worktree.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_crash.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_e2e_fix.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_fix.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_langtest.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_split.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_split_orchestrator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_sync.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_test.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_test_generate.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_update.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/agentic_verify.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/api_contract_slicer.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/api_key_scanner.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/architecture_include_validation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/architecture_registry.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/architecture_sync.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/architecture_sync_helper.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/auth_service.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/auto_deps_architecture.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/auto_deps_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/auto_include.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/auto_update.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/bug_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/bug_to_unit_test.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/change.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/change_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/checkup_agent.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/checkup_file_selection.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/checkup_gates.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/checkup_interactive_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/checkup_interactive_session.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/checkup_planner.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/checkup_prompt_apply.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/checkup_prompt_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/checkup_report.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/checkup_review_loop.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/checkup_simplify.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/checkup_simplify_claude.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/checkup_simplify_engines.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/checkup_target.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/checkup_tools.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/ci_detect_changed_modules.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/ci_drift_heal.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/cli.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/cli_branding.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/cli_detector.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/cli_status.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/cli_theme.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/cmd_test_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/code_generator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/codex_subscription.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/__init__.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/analysis.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/auth.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/checkup.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/checkup_simplify.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/checkup_snapshot.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/connect.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/context.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/contracts.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/coverage.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/drift.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/extracts.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/firecrawl.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/fix.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/gate.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/generate.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/maintenance.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/misc.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/modify.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/prompt.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/replay.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/report.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/sessions.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/templates.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/utility.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/commands/which.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/comment_line.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/compressed_sync_context.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/compression_reporting.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/config_resolution.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/conflicts_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/construct_paths.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/content_selector.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/context_audit.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/context_generator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/context_generator_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/context_snapshot.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/context_snapshot_policy.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/contract_check.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/contract_ir.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/core/__init__.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/core/cli.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/core/cloud.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/core/dump.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/core/duplicate_cli_guard.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/core/errors.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/core/llm_trace.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/core/remote_session.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/core/utils.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/coverage_contracts.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/crash_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/data/arena_elo_manifest.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/data/deepswe_manifest.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/data/language_format.csv +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/data/llm_model.csv +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/detect_change_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/docs/prompting_guide.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/drift_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/edit_file.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/embed_retrieve.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/evidence_manifest.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/evidence_store.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/extracts_prune.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/failure_classification.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/find_section.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/firecrawl_cache.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/fix_code_loop.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/fix_code_module_errors.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/fix_error_loop.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/fix_focus.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/fix_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/fix_verification_errors.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/fix_verification_errors_loop.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/fix_verification_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/.gitignore +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/App.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/api.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/AddModuleModal.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/AddToQueueModal.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/ArchitectureView.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/AuthStatusIndicator.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/BatchFilterDropdown.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/BugModal.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/ChangeModal.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/CommandForm.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/CommandOutput.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/CreatePromptModal.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/DependencyViewer.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/DeviceIndicator.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/ErrorBoundary.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/ExecutionModeToggle.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/ExtractsPanel.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/FileBrowser.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/FilePickerInput.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/GeneratedCommand.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/GenerationProgressModal.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/GraphToolbar.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/GroupEditModal.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/GroupNode.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/GuidanceSidebar.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/Header.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/Icon.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/InputField.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/JobCard.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/JobDashboard.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/JobOutputPanel.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/ModelSelector.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/ModelSliders.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/ModuleEditModal.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/ModuleNode.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/ProjectSettings.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/PromptCodeDiffModal.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/PromptEditor.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/PromptMetricsBar.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/PromptOrderModal.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/PromptSelector.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/PromptSpace.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/ReauthModal.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/RemoteSessionSelector.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/SyncFromPromptModal.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/SyncOptionsModal.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/SyncStatusBadge.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/Tabs.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/TaskQueueControls.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/TaskQueueItem.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/TaskQueuePanel.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/TextAreaField.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/Toast.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/components/Tooltip.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/constants.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/data/mockPrd.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/data/mockPrompts.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/hooks/useArchitectureHistory.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/hooks/useAudioNotification.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/hooks/useJobs.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/hooks/useTaskQueue.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/index.html +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/index.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/lib/batchUtils.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/lib/commandBuilder.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/lib/format.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/lib/includeAnalyzer.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/lib/modelResolver.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/lib/pddAutocomplete.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/lib/pddDirectives.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/metadata.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/package-lock.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/package.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/public/logo.svg +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/tests/command-builder.test.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/tests/compact-font-direct-zoom.test.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/tests/compact-font-size.test.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/tests/context-audit-wiring.test.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/tests/group-layout.test.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/tests/group-subflow-nodes.test.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/tests/module-needs-sync.test.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/tests/rearrange-discard.test.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/tests/rearrange-positions.test.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/tests/setup.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/tests/sync-completed-refresh.test.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/tests/vp-zoom-sync.test.tsx +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/tests/waypoint-edge.test.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/tsconfig.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/types.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/frontend/vite.config.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/gate_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/gate_policy.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/generate_model_catalog.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/generate_output_paths.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/generate_test.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/generation_completion.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/get_comment.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/get_extension.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/get_jwt_token.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/get_language.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/get_lint_commands.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/get_run_command.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/get_test_command.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/git_porcelain.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/git_update.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/grounding_policy.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/grounding_provenance.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/include_query_extractor.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/increase_tests.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/install_completion.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/interface_semantics.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/json_atomic.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/json_invocation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/language_extensions.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/list_drift_detection.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/llm_invoke.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/load_prompt_template.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/logo_animation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/mcp_config.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/metadata_sync.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/model_tester.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/one_session_sync.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/operation_log.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/path_resolution.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/pdd_completion.fish +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/pdd_completion.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/pdd_completion.zsh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/pddrc_initializer.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/pin_example_hack.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/postprocess_0.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/preprocess.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/preprocess_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/process_csv_change.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompt_gate.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompt_lint.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompt_repair.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/Makefile_makefile.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/_keyring_timeout_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step10_completeness_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step11_sync_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step12_deps_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step13_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step1_analyze_prd_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step1b_complexity_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step2_analyze_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step2b_codebase_scan_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step3_research_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step4_data_model_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step5_design_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step5b_completeness_gate_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step5b_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step6_research_deps_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step7_generate_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step7b_review_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step8_5_context_docs_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step8_pddrc_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step9_prompts_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_arch_step9b_cross_audit_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_architecture_orchestrator_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_architecture_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_bug_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_bug_step10_verify_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_bug_step11_e2e_test_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_bug_step1_duplicate_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_bug_step2_docs_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_bug_step3_triage_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_bug_step4_api_research_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_bug_step5_reproduce_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_bug_step6_root_cause_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_bug_step7_prompt_classification_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_bug_step8_test_plan_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_bug_step9_generate_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_change_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_change_step10_architecture_update_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_change_step11_identify_issues_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_change_step12_fix_issues_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_change_step1_duplicate_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_change_step2_docs_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_change_step3_research_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_change_step4_clarify_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_change_step5_docs_change_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_change_step6_devunits_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_change_step7_architecture_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_change_step8_analyze_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_change_step9_implement_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_checkup_orchestrator_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_checkup_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_checkup_step1_discover_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_checkup_step2_deps_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_checkup_step3_build_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_checkup_step4_interfaces_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_checkup_step5_test_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_checkup_step6_1_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_checkup_step6_2_regression_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_checkup_step6_3_e2e_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_checkup_step7_verify_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_checkup_step8_create_pr_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_common_worktree_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_crash_explore_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_crash_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_e2e_fix_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_e2e_fix_step10_ci_validation_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_e2e_fix_step11_code_cleanup_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_e2e_fix_step1_unit_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_e2e_fix_step2_e2e_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_e2e_fix_step3_root_cause_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_e2e_fix_step4_fix_e2e_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_e2e_fix_step5_identify_devunits_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_e2e_fix_step6_create_unit_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_e2e_fix_step7_verify_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_e2e_fix_step8_run_pdd_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_e2e_fix_step9_verify_all_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_fix_explore_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_fix_nonpython_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_fix_primary_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_fix_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_langtest_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_split_orchestrator_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_split_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_split_step0_intent_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_split_step1_survey_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_split_step2_diagnose_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_split_step3_investigate_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_split_step4_propose_options_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_split_step6_extract_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_split_step6a_phase_extract_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_split_step7_assess_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_split_step8_repair_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_split_step9_refine_check_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_sync_fix_dry_run_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_sync_identify_modules_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_sync_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_generate_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_generate_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step10_validate_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step11_loop_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step15_plan_validation_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step16_run_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step1_duplicate_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step2_docs_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step3_clarify_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step4_detect_frontend_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step5_test_plan_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step5b_enhance_plan_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step6_coverage_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step6_generate_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step7_checklist_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step7_run_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step8_fix_iterate_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step8_manual_test_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_test_step9_regression_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_update_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_update_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_verify_explore_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/agentic_verify_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/api_contract_slicer_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/api_key_scanner_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/architecture_include_validation_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/architecture_registry_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/architecture_sync_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/arrange_graph_layout_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/auth_service_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/auto_deps_architecture_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/auto_deps_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/auto_include_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/auto_include_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/auto_update_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/bug_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/bug_to_unit_test_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/bug_to_unit_test_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/change_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/change_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/change_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_agent_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_file_selection_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_gates_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_interactive_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_interactive_session_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_planner_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_prompt_apply_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_prompt_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_report_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_review_loop_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_simplify_claude_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_simplify_engines_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_simplify_invoke_claude_code_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_simplify_invoke_codex_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_simplify_invoke_gemini_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_simplify_invoke_opencode_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_simplify_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_simplify_workflow_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/checkup_tools_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/ci_detect_changed_modules_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/ci_drift_heal_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/cli_branding_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/cli_detector_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/cli_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/cli_status_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/cli_theme_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/cmd_test_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/code_generator_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/code_patcher_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/codex_subscription_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/combine.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/combined_output.txt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/__init___python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/analysis_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/auth_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/checkup_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/checkup_simplify_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/connect_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/context_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/contracts_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/firecrawl_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/fix_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/gate_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/generate_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/maintenance_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/misc_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/modify_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/prompt_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/replay_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/report_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/sessions_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/templates_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/utility_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/commands/which_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/comment_line_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/compressed_sync_context_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/config_resolution_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/conflict_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/conflicts_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/construct_paths_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/content_selector_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/context_audit_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/context_generator_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/context_generator_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/context_snapshot_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/continue_generation_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/contract_check_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/contract_ir_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/core/cli_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/core/cloud_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/core/dump_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/core/duplicate_cli_guard_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/core/errors_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/core/remote_session_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/core/utils_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/core_dump_requirements_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/core_dump_smoke_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/coverage_contracts_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/crash_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/cross_issue_reconcile_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/detect_change_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/detect_change_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/diff_analyzer_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/edit_file_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/embed_retrieve_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/evidence_manifest_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/evidence_store_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/example_generator_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/extract_code_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/extract_conflict_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/extract_detect_change_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/extract_program_code_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/extract_prompt_change_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/extract_prompt_split_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/extract_prompt_update_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/extract_promptline_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/extract_unit_code_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/extract_xml_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/extracts_prune_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/failure_classification_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/find_section_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/find_verification_errors_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/firecrawl_cache_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/fix_code_loop_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/fix_code_module_errors_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/fix_code_module_errors_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/fix_error_loop_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/fix_errors_from_unit_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/fix_focus_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/fix_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/fix_verification_errors_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/fix_verification_errors_loop_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/fix_verification_errors_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/fix_verification_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/App_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/api_typescript.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/AddModuleModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/AddToQueueModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/ArchitectureView_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/AuthStatusIndicator_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/BatchFilterDropdown_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/BugModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/ChangeModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/CommandForm_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/CommandOutput_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/CreatePromptModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/DependencyViewer_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/DeviceIndicator_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/ErrorBoundary_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/ExecutionModeToggle_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/FileBrowser_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/FilePickerInput_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/GeneratedCommand_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/GenerationProgressModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/GraphToolbar_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/GuidanceSidebar_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/Header_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/Icon_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/InputField_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/JobCard_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/JobDashboard_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/JobOutputPanel_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/ModelSelector_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/ModelSliders_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/ModuleEditModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/ModuleNode_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/ProjectSettings_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/PromptCodeDiffModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/PromptEditor_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/PromptMetricsBar_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/PromptOrderModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/PromptSelector_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/PromptSpace_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/ReauthModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/RemoteSessionSelector_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/SyncFromPromptModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/SyncOptionsModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/SyncStatusBadge_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/Tabs_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/TaskQueueControls_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/TaskQueueItem_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/TaskQueuePanel_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/TextAreaField_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/Toast_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/components/Tooltip_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/constants_typescript.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/hooks/useArchitectureHistory_typescript.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/hooks/useAudioNotification_typescript.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/hooks/useJobs_typescript.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/hooks/useTaskQueue_typescript.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/index_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/frontend/types_typescript.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/gate_policy_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/gate_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/generate_model_catalog_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/generate_output_paths_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/generate_story_contract_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/generate_test_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/generate_test_from_example_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/generate_test_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/generate_user_story_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/generation_completion_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/get_comment_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/get_extension_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/get_jwt_token_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/get_language_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/get_lint_commands_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/get_run_command_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/get_test_command_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/git_porcelain_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/git_update_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/grounding_policy_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/include_query_extractor_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/include_query_extractor_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/increase_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/increase_tests_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/incremental_prd_architecture_patch_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/insert_includes_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/install_completion_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/language_format_csv.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/llm_invoke_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/llm_model_csv.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/load_prompt_template_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/logo_animation_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/main_gen_prompt.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/metadata_sync_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/model_tester_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/one_session_agent_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/one_session_sync_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/operation_log_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/path_resolution_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/pdd_completion_bash.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/pdd_completion_fish.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/pdd_completion_zsh.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/pdd_theme_json.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/pddrc_initializer_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/pin_example_hack_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/post_gen_verify_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/postprocess_0_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/pre_checkup_gate_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/preprocess_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/preprocess_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/process_csv_change_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/prompt_code_diff_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/prompt_diff_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/prompt_lint_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/prompt_lint_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/prompt_repair_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/prompt_tester_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/provider_manager_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/pypi_description_restructuredtext.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/pyproject_toml.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/pytest_output_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/pytest_slicer_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/python_env_detector_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/reasoning_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/regression_analysis_log.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/regression_bash.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/release_video_script_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/remote_session_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/render_mermaid_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/resurface_check_Python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/run_generated_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/__init___python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/app_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/click_executor_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/executor_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/jobs_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/models_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/routes/__init___python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/routes/architecture_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/routes/auth_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/routes/commands_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/routes/config_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/routes/extracts_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/routes/files_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/routes/prompts_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/routes/session_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/routes/websocket_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/security_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/terminal_spawner_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/server/token_counter_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/setup_tool_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/split_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/split_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/split_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/split_validation_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/summarize_directory_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/summarize_file_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/sync_analysis_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/sync_animation_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/sync_determine_operation_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/sync_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/sync_orchestration_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/sync_order_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/sync_tui_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/template_expander_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/template_registry_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/trace_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/trace_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/trace_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/track_cost_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/trim_results_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/trim_results_start_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/unfinished_prompt_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/update_main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/update_model_costs_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/update_prompt_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/user_story_tests_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/validate_prompt_includes_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/xml/change_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/xml/change_example_full.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/xml/change_example_partial.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/xml/change_example_partial_processed.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/xml/split_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/prompts/xml_convertor_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/provider_manager.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/pytest_output.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/pytest_slicer.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/python_env_detector.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/reasoning.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/remote_session.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/render_mermaid.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/schemas/architecture_contract_summary.schema.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/schemas/evidence_manifest.schema.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/__init__.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/app.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/click_executor.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/executor.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/jobs.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/models.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/routes/__init__.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/routes/architecture.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/routes/auth.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/routes/commands.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/routes/config.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/routes/extracts.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/routes/files.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/routes/prompts.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/routes/websocket.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/security.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/terminal_spawner.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/server/token_counter.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/setup_tool.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/source_set_model.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/split.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/split_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/split_validation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/summarize_directory.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/sync_animation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/sync_determine_operation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/sync_graph_order_consistency.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/sync_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/sync_orchestration.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/sync_order.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/sync_tui.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/template_expander.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/template_registry.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/templates/architecture/architecture_json.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/templates/architecture/example_nextjs_task_notes.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/templates/architecture/example_python_backend.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/templates/architecture/pdd_path_construction_guide.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/templates/generic/generate_pddrc_YAML.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/templates/generic/generate_prompt.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/test_result.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/trace.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/trace_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/track_cost.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/unfinished_prompt.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/update_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/update_model_costs.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/user_story_tests.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/validate_prompt_includes.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd/waiver_policy.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd-local.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd_cli.egg-info/dependency_links.txt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd_cli.egg-info/entry_points.txt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd_cli.egg-info/requires.txt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pdd_cli.egg-info/top_level.txt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pr_summary.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/project_dependencies.csv +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pypi_description.rst +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pyproject.toml +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pyrightconfig.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/pytest.ini +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/requirements.txt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/research/repo-bloat-benchmark/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/research/repo-bloat-benchmark/agentic_cli_search.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/research/repo-bloat-benchmark/design.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/scripts/check_deps.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/scripts/ci_detect_changed_modules.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/scripts/copy_package_data_to_public.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/scripts/e2e_story_workflow_demo.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/scripts/extract_wheel.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/scripts/preprocess_wheel.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/scripts/release_video.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/setup.cfg +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/__init__.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/cloud_regression.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/__init__.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_analysis.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_auth.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_checkup.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_checkup_contracts.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_checkup_interactive_demo.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_checkup_simplify.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_connect.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_context.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_contract_rule_test_smoke.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_coverage.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_drift_cli.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_evidence.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_fix.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_gate.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_generate.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_maintenance.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_modify.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_sessions.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/commands/test_utility.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/conftest.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/core/__init__.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/core/test_cli.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/core/test_cloud.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/core/test_remote_session.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/e2e/test_checkup_lifecycle.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/arch_include_validate_ok/architecture.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/arch_include_validate_ok/prompts/child_Python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/arch_include_validate_ok/prompts/parent_Python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/autoheal_1187_post.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/autoheal_1187_pre.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/conftest.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/auth_service_clean_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/capabilities_no_modal_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/coverage_unchecked_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/duplicate_ids_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/legacy_no_sections_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/malformed_ids_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/missing_modal_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/non_sequential_ids_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/payment_api_clean_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/payment_api_issues_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/rate_limiter_issues_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/story__covers_rule_ids.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/story__cross_module_covers.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/story__payment_bad_refs.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/story__payment_flow.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/story__unknown_rule_ids.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/uncovered_mustnot_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/unknown_coverage_refs_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/vague_no_vocab_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/vague_with_vocab_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/valid_contract_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/waiver_expired_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/waiver_missing_fields_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/waiver_ref_missing_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/waiver_valid_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_check/with_coverage_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/contract_rules_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/coverage_contracts/failed_receipt_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/coverage_contracts/fake_tests/test_receipt_failed.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/coverage_contracts/fake_tests/test_refund.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/coverage_contracts/legacy_no_contracts_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/coverage_contracts/refund_payment_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/coverage_contracts/stories/story__receipt_missing_acceptance.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/coverage_contracts/stories/story__refund_idempotency.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/coverage_contracts/stories/story__refund_invalid.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/encode_message_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/generate_estimate_accuracy/includes/shared_helpers.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/generate_estimate_accuracy/manifest.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/generate_estimate_accuracy/prompts/code_heavy_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/generate_estimate_accuracy/prompts/docs_heavy_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/generate_estimate_accuracy/prompts/include_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/generate_estimate_accuracy/prompts/interface_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/generate_estimate_accuracy/prompts/large_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/generate_estimate_accuracy/prompts/medium_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/generate_estimate_accuracy/prompts/reason_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/generate_estimate_accuracy/prompts/tests_examples_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/generate_estimate_accuracy/prompts/tiny_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/generate_estimate_accuracy/prompts/unknown_price_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/issue591_behavioral_signal_test.py.fixture +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/issue591_dockerfile_test.py.fixture +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/issue591_structural_getsource_test.py.fixture +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/one_session_eval/one_session_agent_LLM_original.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/one_session_eval/s7_large_code_bug/examples/llm_client_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/one_session_eval/s7_large_code_bug/prompts/llm_client_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/one_session_eval/s7_large_code_bug/scenario.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/one_session_eval/s7_large_code_bug/src/llm_client.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/one_session_eval/s7_large_code_bug/tests/test_llm_client.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/one_session_eval/s8_large_minimal_tests/examples/workflow_engine_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/one_session_eval/s8_large_minimal_tests/prompts/workflow_engine_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/one_session_eval/s8_large_minimal_tests/scenario.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/one_session_eval/s8_large_minimal_tests/src/workflow_engine.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/one_session_eval/s8_large_minimal_tests/tests/test_workflow_engine.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/one_session_eval/s9_large_wrong_tests/examples/config_manager_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/one_session_eval/s9_large_wrong_tests/prompts/config_manager_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/one_session_eval/s9_large_wrong_tests/scenario.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/one_session_eval/s9_large_wrong_tests/src/config_manager.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/one_session_eval/s9_large_wrong_tests/tests/test_config_manager.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/prompt_lint/clean.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/prompt_lint/llm_template_empty_LLM.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/prompt_lint/payment_api.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/prompt_lint/payment_api_clean_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/prompt_lint/payment_api_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/prompt_lint/story__clean.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/prompt_lint/story__covers.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/prompt_lint/story__payment_api.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/prompt_lint/story__payment_vague.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/prompt_lint/story__vague_criteria.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/prompt_lint/strict_terms_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/prompt_lint/upload_handler_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/prompt_lint/upload_handler_with_vocab_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/prompt_lint/vague_defined.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/prompt_lint/vague_undefined.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/simple_math.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/simple_math_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/simple_math_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/sub_simple_math.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/test_generation/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/test_generation/refund_policy.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/test_generation/refund_policy_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/test_other_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/test_simple_math.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/fixtures/updated_simple_math_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/isolated_verify.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/prompt_tester.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/regression.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/regression_public.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/scripts/source_set_repair_cli_smoke.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/__init__.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/conftest.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/routes/__init__.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/routes/conftest.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/routes/test_architecture.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/routes/test_auth.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/routes/test_commands.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/routes/test_config.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/routes/test_extracts.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/routes/test_files.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/routes/test_prompts.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/routes/test_routes_init.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/routes/test_websocket.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/test___init__.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/test_app.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/test_click_executor.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/test_executor.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/test_jobs.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/test_models.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/test_security.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/test_terminal_spawner.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/server/test_token_counter.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/sync_regression.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/sync_regression_parallel.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_739_complete.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_739_e2e_synthetic.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_739_fixtures.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_arch_complexity_prompt.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_architecture.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_architecture_orchestrator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_bug.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_bug_orchestrator_1.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_bug_orchestrator_step_comments.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_bug_step10_prompt.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_bug_step11_prompt.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_bug_step7_prompt.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_change.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_checkup.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_checkup_orchestrator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_common.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_common_issue_813_anthropic_api_key_oauth_shadow.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_common_worktree.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_crash.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_e2e_fix.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_e2e_fix_orchestrator_resume_prompt.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_e2e_fix_step10_prompt.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_fix.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_langtest.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_split.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_split_orchestrator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_split_real.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_split_v2.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_sync.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_sync_nearest_config.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_test.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_test_generate.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_update.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_agentic_verify.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_antigravity_provider.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_api_contract_slicer.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_api_key_scanner.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_architecture_include_validation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_architecture_registry.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_architecture_sync.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_auth_service.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_auto_deps_architecture.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_auto_deps_entry_wipe.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_auto_deps_lock.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_auto_deps_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_auto_heal_workflow.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_auto_include.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_auto_update.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_balance_chunks.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_bug_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_bug_to_unit_test.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_change.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_change_call_site_and_retry.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_change_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_checkup_agent.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_checkup_artifact_hygiene.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_checkup_freshness_lease_integration.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_checkup_gates.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_checkup_interactive.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_checkup_interactive_session.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_checkup_interactive_session_spike.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_checkup_pr_mode.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_checkup_prompt_apply.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_checkup_prompt_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_checkup_report.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_checkup_review_loop.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_checkup_simplify_engines.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_checkup_target.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_ci_detect_changed_modules.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_ci_drift_heal.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_ci_drift_heal_e2e.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_circular_includes.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_cli.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_cli_binary_isolation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_cli_detector.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_cli_status.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_cli_theme.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_cloud_batch_source_upload.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_cloud_noninteractive_auth.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_cmd_test_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_code_generator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_code_patcher_prompt_json_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_codex_subscription.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_commands_auth.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_commands_firecrawl.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_commands_fix.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_commands_generate.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_commands_maintenance.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_commands_modify.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_commands_templates.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_commands_utility.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_comment_line.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_compressed_sync_context.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_conflicts_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_construct_paths.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_content_selector.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_context_audit.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_context_compression.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_context_example_isolation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_context_generator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_context_generator_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_context_snapshot.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_context_snapshot_policy.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_context_snapshot_replay.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_context_token_colors.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_contract_check.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_copy_package_data_to_public.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_core_dump.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_core_errors.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_core_utils.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_coverage_contracts.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_crash_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_cross_step_consistency_prompts.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_detect_change_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_discover_associated_documents.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_drift_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_duplicate_cli_guard.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_auto_deps_pipeline.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_bug_step9_verification.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_1201_output_paths.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_1205_example_output_extension.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_1211_parent_dir_path.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_295_openai_schema.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_296_custom_csv.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_305_false_success.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_309_oauth_rate_limit.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_319_json_braces.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_340_report_core_no_default.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_342_syspath_isolation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_349_sys_modules_pollution.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_357_step9_keyerror.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_358_jwt_cache_null.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_364_cumulative_cost.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_373_step5_keyerror.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_375_malformed_json.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_379_auth_null_expires.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_383_commit_intermediate_files.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_399_ssh_url_message.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_419_cli_unpushed_commits.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_419_unpushed_commits.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_426_include_path_validation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_429_prompt_files_in_pr.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_445_worktree_resume.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_448_change_orchestrator.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_448_step5_keyerror.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_449_auth_logout_message.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_467_false_cached_steps.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_468_not_a_bug_early_exit.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_469_cleanup_messages.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_469_duplicate_unresolved.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_470_sessions_cleanup_auth_message.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_481_pagination.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_485_warning_false_negative.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_493_update_output_subdir.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_508_budget_test_cost.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_508_sync_budget_tracking.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_509_retry_cost.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_521_circular_includes.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_522_include_fingerprint.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_545_no_changes_to_commit.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_549_format_double_escaping.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_549_other_orchestrators.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_553_circular_includes_non_recursive.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_557_codex_ndjson.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_566_code_fence_tags.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_579_bug_worktree_rerun.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_579_orchestrator_rerun.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_594_preamble_imports.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_604_handler_wiring.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_620_hallucinated_imports.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_626_nextjs_rendering_model.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_686_anthropic_cost_double_count.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_687_postprocess_model_name.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_737_step_completion_markers.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_745_initial_cost_tracking.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_773_hard_stop.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_791_e2e_timeout_retry.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_796_typescript_python_validation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_797_typescript_verification.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_817_step5_degenerate_cli.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_824_artifact_filtering.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_825_param_drop.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_830_workflow_stall.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_894.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_902_provider_fallback.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_issue_903_convergence.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_openai_required_array.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_pattern_verification.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_selective_includes_integration.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_step11_cleanup_revert.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_story_workflow_1501.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_subprocess_issue_399_ssh_url_message.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_subprocess_issue_541_quiet_flag.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_e2e_subprocess_issue_593_bug_exit_code.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_embed_retrieve.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_estimate_generate_smoke.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_evidence_manifest.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_example_error_detection.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_explicit_output_paths.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_extracts_prune.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_failure_classification.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_final_pr_gate.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_find_prompt_file.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_find_section.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_firecrawl_cache.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_fix_cli_agentic_fallback_events_contract.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_fix_code_loop.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_fix_code_module_errors.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_fix_error_loop.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_fix_error_loop_failure_aware.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_fix_error_loop_prompt_contract.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_fix_error_loop_sync_e2e.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_fix_errors_from_unit_tests.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_fix_focus.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_fix_issue_1211_parent_dir_path.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_fix_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_fix_main_issue_232.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_fix_verification_errors.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_fix_verification_errors_loop.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_fix_verification_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_gate_failed_sync.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_gate_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_generate_estimate_accuracy.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_generate_model_catalog.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_generate_output_paths.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_generate_output_paths_regression.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_generate_test.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_generate_test_llm_preprocess.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_generation_completion.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_get_comment.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_get_extension.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_get_jwt_token.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_get_language.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_get_lint_commands.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_get_run_command.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_get_test_command.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_git_porcelain.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_git_update.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_grounding_generate_evidence.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_grounding_policy.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_grounding_provenance.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_grounding_test_plan.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_home_isolation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_include_query_extractor.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_increase_tests.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_incremental_prd_architecture.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_incremental_prd_architecture_real.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_install_completion.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_interface_semantics.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_1021_reproduction.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_1049_reproduction.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_1060_pollution.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_1080_porcelain_scope_guards.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_1203_breaker.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_1212_reproduction.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_1240_generate_prompt_meta_framing.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_1272_cloud_timeout.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_1558_semantic_contracts.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_225_paths_and_includes.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_237.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_417_regression_hardening.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_467_all_orchestrators.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_469_duplicate_unresolved.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_592_failing_case.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_600_agentic_weaknesses.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_633_reproduction.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_67.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_67_expansion.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_686_post_process_args_braces.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_737_step_completion_markers.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_791_reproduction.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_794_anti_tdd_and_test_discovery.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_794_repro.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_826_snapshot_touchpoint.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_830_contract_summary_touchpoint.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_830_remaining_fixes.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_865_reproduction.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_876_compress_wiring.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_876_compressed_few_shot.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_894_pytest_output_deadlock.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_902.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_902_prompt_sync.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_926_preserve_comments_directive.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_issue_953_directory_scan_regression.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_jobs_sync_failure_detection.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_json_invocation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_language_extensions.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_list_drift_detection.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_llm_invoke.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_llm_invoke_csv_model_registration.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_llm_invoke_grounding.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_llm_invoke_integration.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_llm_invoke_nested_schema.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_llm_invoke_retry_cost.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_llm_invoke_vertex_retry.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_load_prompt_template.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_logo_animation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_metadata_sync.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_mid_run_steer_orchestrator_integration.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_mock_vs_production_fix.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_model_tester.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_nextjs_rendering_model.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_one_session_eval.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_one_session_sync.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_opencode_provider.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_operation_log.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_operation_logging_e2e.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_path_resolution.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_pattern_completeness_verification.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_pddrc_initializer.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_pddrc_true_e2e.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_pin_example_hack.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_post_step_comment_once_real.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_postprocess_0.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_preprocess.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_preprocess_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_preprocess_main_pdd_tags.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_process_csv_change.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_prompt_contract_validation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_prompt_gate.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_prompt_gate_integration.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_prompt_lint.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_prompt_repair.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_provider_env_isolation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_provider_manager.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_pytest_output.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_pytest_slicer.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_quiet_flag.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_reasoning.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_release_video.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_remote_command_completion.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_remote_session.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_render_mermaid.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_report.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_research_prompt_web_tools.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_selector_parse.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_server_routes_prompts.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_server_spawn.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_setup_tool.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_source_set_model.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_space_path_support.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_split.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_split_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_split_seam_resolution.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_split_validation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_step11_api_mocking_guidance.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_structural_test_guard.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_structural_test_guard_integration.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_summarize_directory.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_sync_animation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_sync_animation_0.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_sync_backward_compat.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_sync_code_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_sync_contract_matrix.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_sync_determine_operation.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_sync_graph_order_consistency.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_sync_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_sync_orchestration.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_sync_order.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_sync_target_coverage_infinite_loop.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_sync_template_prompt_discovery.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_sync_tui.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_template_expander.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_template_registry.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_thread_safe_redirector.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_time_reasoning_effort_env.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_trace.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_trace_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_track_cost.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_unfinished_prompt.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_update_command.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_update_main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_update_model_costs.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_update_prompt.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_user_story_tests.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_validate_behavioral_test.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_version.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_waiver_policy.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_which.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/test_z3_prompt_test_correspondence.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/tests/validate_behavioral_test.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/user_stories/contracts/pdd_bug.contract.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/user_stories/contracts/pdd_change.contract.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/user_stories/contracts/pdd_checkup.contract.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/user_stories/contracts/pdd_connect.contract.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/user_stories/contracts/pdd_fix.contract.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/user_stories/contracts/pdd_sync.contract.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/user_stories/contracts/pdd_test.contract.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/user_stories/contracts/template.contract.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/user_stories/story__pdd_bug.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/user_stories/story__pdd_change.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/user_stories/story__pdd_checkup.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/user_stories/story__pdd_connect.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/user_stories/story__pdd_fix.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/user_stories/story__pdd_sync.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/user_stories/story__pdd_test.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/user_stories/story__template.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/__init__.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/context/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/context/definitions_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/context/handlers_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/context/main_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/context/regenerate_test_files.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/context/runner_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/context/server_example.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/generate_prompt.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/generate_python.sh +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/pdd_mcp_server/__init__.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/pdd_mcp_server/main.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/pdd_mcp_server/server.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/pdd_mcp_server/tools/__init__.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/pdd_mcp_server/tools/api_key_check.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/pdd_mcp_server/tools/definitions.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/pdd_mcp_server/tools/handlers.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/pdd_mcp_server/tools/runner.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/prompts/README_md.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/prompts/definitions_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/prompts/generate_prompt.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/prompts/handlers_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/prompts/io_dependencies.csv +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/prompts/io_dependencies_csv.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/prompts/main_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/prompts/mcp_architecture.csv +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/prompts/mcp_architecture_csv.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/prompts/requirements_txt.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/prompts/runner_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/prompts/server_python.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/requirements.txt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/mcp/tests/test_mcp_client.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/run_generated.py +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/.gitignore +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/.vscode/launch.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/.vscodeignore +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/AGENTS.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/CHANGELOG.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/LICENSE.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/Makefile +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/README.md +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/examples/pddInstaller_example.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/images/icon.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/images/icon.svg +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/images/video-thumb.png +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/language-configuration.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/out/extension.js +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/out/extension.js.map +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/out/pddInstaller.js +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/out/pddInstaller.js.map +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/package-lock.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/package.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/prompts/extension_typescript.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/prompts/pddInstaller_typescript.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/prompts/prompt.tmLanguage_json.prompt +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/scripts/generate-video-thumb.mjs +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/scripts/render-icon.mjs +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/src/extension.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/src/pddInstaller.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/syntaxes/prompt.tmLanguage.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/tests/test_extension.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/tests/test_pddInstaller.ts +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/tsconfig.json +0 -0
- {pdd_cli-0.0.274 → pdd_cli-0.0.276}/utils/vscode_prompt/vsc-extension-quickstart.md +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pdd_version": "0.0.275.dev3",
|
|
3
|
+
"timestamp": "2026-06-16T01:31:18.161464+00:00",
|
|
4
|
+
"command": "fix",
|
|
5
|
+
"prompt_hash": "0784d6ff7f749b74e6938bfdd945a1cf97aed961ebea4bf3849fe512bf7163f9",
|
|
6
|
+
"code_hash": "587d51aaed8470de39bbefbb0882f481f269431cca8b50e45b22e90dbd2eb695",
|
|
7
|
+
"example_hash": "fcb36209abb5ab882ad551754fb574d62509c968f8c564e18163be7f2b7ef35a",
|
|
8
|
+
"test_hash": "781deb083113a3c96b990501f24cdf41e0742190be5cfbe85553639c25e62e22",
|
|
9
|
+
"test_files": {
|
|
10
|
+
"test_agentic_sync_runner.py": "781deb083113a3c96b990501f24cdf41e0742190be5cfbe85553639c25e62e22"
|
|
11
|
+
},
|
|
12
|
+
"include_deps": {
|
|
13
|
+
"context/agentic_change_example.py": "a8308b2af708c804d626a4a96012c5a67f5bc6469e33857cafc07627213828d7",
|
|
14
|
+
"context/agentic_common_example.py": "f9cdb30a932973d341b795faf510056b95573610af5ac48e3849cf42c205998e",
|
|
15
|
+
"context/agentic_langtest_example.py": "dbc5c87dc1b75d3299dbfb67b17df1838f9ba2c9bdb457097df0832cea112c3f",
|
|
16
|
+
"context/agentic_test_orchestrator_example.py": "473901f6f62844c81a047fa69387c4116d91a522c62d5c6ad30188e2e99dfaa5",
|
|
17
|
+
"context/architecture_sync_example.py": "b6158dbc7ca3fd32665528562225f6739ec521a071d845acab0f7caaea221ae0",
|
|
18
|
+
"context/python_preamble.prompt": "0388ed131bf986f8752e1bc4c81e4da0460cfe2908ec8c60b1314edbab768254",
|
|
19
|
+
"context/sync_order_example.py": "b4eb1e167e7604c7dbac703bdcba7287188fa9d2d5ef6d490216d003cdc542fa"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"timestamp": "2026-06-16T01:31:18.161464+00:00",
|
|
3
|
+
"exit_code": 0,
|
|
4
|
+
"tests_passed": 180,
|
|
5
|
+
"tests_failed": 0,
|
|
6
|
+
"coverage": 81.25,
|
|
7
|
+
"test_hash": "781deb083113a3c96b990501f24cdf41e0742190be5cfbe85553639c25e62e22",
|
|
8
|
+
"test_files": {
|
|
9
|
+
"test_agentic_sync_runner.py": "781deb083113a3c96b990501f24cdf41e0742190be5cfbe85553639c25e62e22"
|
|
10
|
+
}
|
|
11
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pdd_version": "0.0.275.dev3",
|
|
3
|
+
"timestamp": "2026-06-16T02:09:40.279393+00:00",
|
|
4
|
+
"command": "fix",
|
|
5
|
+
"prompt_hash": "607af0a8fd816de522eed6823ffa1865e52fd97893ea7a1d2c62381f3aaa1681",
|
|
6
|
+
"code_hash": "b95c3f7c268f7e91650068af248a25ad89ac9c133673c550cace9e22c4079265",
|
|
7
|
+
"example_hash": null,
|
|
8
|
+
"test_hash": "088d55daf37c57130e44c01d4e13fd2f259e2a83dba229f693aa2653abcd15dd",
|
|
9
|
+
"test_files": {
|
|
10
|
+
"test_durable_sync_runner.py": "088d55daf37c57130e44c01d4e13fd2f259e2a83dba229f693aa2653abcd15dd"
|
|
11
|
+
},
|
|
12
|
+
"include_deps": {
|
|
13
|
+
"context/agentic_sync_example.py": "9bcc2f199a1463e8c424d8210ea6d5f34ad6fb5fcb1022aa879a9ecba0f8d5d6",
|
|
14
|
+
"context/agentic_sync_runner_example.py": "fcb36209abb5ab882ad551754fb574d62509c968f8c564e18163be7f2b7ef35a",
|
|
15
|
+
"context/python_preamble.prompt": "0388ed131bf986f8752e1bc4c81e4da0460cfe2908ec8c60b1314edbab768254",
|
|
16
|
+
"context/sync_order_example.py": "b4eb1e167e7604c7dbac703bdcba7287188fa9d2d5ef6d490216d003cdc542fa"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"timestamp": "2026-06-16T02:09:40.279393+00:00",
|
|
3
|
+
"exit_code": 0,
|
|
4
|
+
"tests_passed": 24,
|
|
5
|
+
"tests_failed": 0,
|
|
6
|
+
"coverage": 80.0,
|
|
7
|
+
"test_hash": "088d55daf37c57130e44c01d4e13fd2f259e2a83dba229f693aa2653abcd15dd",
|
|
8
|
+
"test_files": {
|
|
9
|
+
"test_durable_sync_runner.py": "088d55daf37c57130e44c01d4e13fd2f259e2a83dba229f693aa2653abcd15dd"
|
|
10
|
+
}
|
|
11
|
+
}
|
|
@@ -1157,7 +1157,7 @@ pdd --context backend --force sync calculator # Explicit context override with v
|
|
|
1157
1157
|
When a GitHub issue URL is passed instead of a basename, sync enters agentic mode:
|
|
1158
1158
|
1. **Module Identification**: Fetches the issue content and uses an LLM to identify which modules need syncing
|
|
1159
1159
|
2. **Dependency Validation**: Validates architecture.json dependencies and applies corrections if needed
|
|
1160
|
-
3. **Parallel Execution**: Dispatches parallel sync via `AsyncSyncRunner` with dependency-aware scheduling (
|
|
1160
|
+
3. **Parallel Execution**: Dispatches parallel sync via `AsyncSyncRunner` with dependency-aware scheduling (up to 4 concurrent workers by default; set `PDD_SYNC_MAX_WORKERS` to cap concurrency lower — e.g. `1` on memory-constrained runners)
|
|
1161
1161
|
4. **Live Progress**: Posts and updates a GitHub comment with real-time module sync status
|
|
1162
1162
|
|
|
1163
1163
|
```bash
|
|
@@ -2529,7 +2529,7 @@ The 13-step workflow:
|
|
|
2529
2529
|
|
|
2530
2530
|
**Cross-Machine Resume**: By default, workflow state is stored in a hidden comment on the GitHub issue, enabling resume from any machine. If you start the workflow on machine A, you can continue from machine B by checking out the branch and running `pdd change` again. Use `--no-github-state` to disable this feature and use local-only state persistence. You can also set the `PDD_NO_GITHUB_STATE=1` environment variable to disable GitHub state globally.
|
|
2531
2531
|
|
|
2532
|
-
**Clean Restart** (`--clean-restart`, issue #1149): For `pdd change`, discards any persisted solving state for the issue and runs a fresh 13-step `pdd-issue` flow from the default base branch, ignoring any previously generated `change/issue-N` branch or PR. Use when recovering from a stopped or wrong-model run (e.g. you cancelled a Gemini-based run and want to rerun cleanly under Opus on the same issue). The orchestrator posts a `## Step 0/13: Workflow Startup` comment on the issue naming the mode, model, base branch, and command so reviewers can tell at a glance whether a run is resuming or clean-starting. The same restart intent is also available for `pdd bug`, `pdd test`, and `pdd fix` agentic GitHub issue workflows. Cannot be combined with `--manual`.
|
|
2532
|
+
**Clean Restart** (`--clean-restart`, issue #1149): For `pdd change`, discards any persisted solving state for the issue and runs a fresh 13-step `pdd-issue` flow from the default base branch, ignoring any previously generated `change/issue-N` branch or PR. Use when recovering from a stopped or wrong-model run (e.g. you cancelled a Gemini-based run and want to rerun cleanly under Opus on the same issue). The orchestrator posts a `## Step 0/13: Workflow Startup` comment on the issue naming the mode, model, base branch, and command so reviewers can tell at a glance whether a run is resuming or clean-starting. The same restart intent is also available for `pdd bug`, `pdd test`, and `pdd fix` agentic GitHub issue workflows. If the standard issue branch (`{command}/issue-N`) is checked out in another local worktree (e.g. a concurrent runner), the clean restart does not fail: it prunes stale worktree registrations and, if the branch is still genuinely locked, creates a fresh unique fallback branch (`{command}/issue-N-job-<id>`) from the base branch, pushes and opens/updates the PR on that branch, and leaves the locked worktree untouched. Cannot be combined with `--manual`.
|
|
2533
2533
|
|
|
2534
2534
|
**Review Loop**: Steps 11-12 form a review loop that identifies and fixes issues iteratively. The loop runs until no issues are found (max 5 iterations).
|
|
2535
2535
|
|
|
@@ -3562,6 +3562,7 @@ PDD uses several environment variables to customize its behavior:
|
|
|
3562
3562
|
- **`PDD_VERIFY_PROGRAM_OUTPUT_PATH`**: Default path for the final program file generated by the `verify` command.
|
|
3563
3563
|
- **`PDD_CLOUD_TIMEOUT`**: Cloud request timeout in seconds. Default is 900 (15 minutes). Increase this value if you experience timeouts with long-running cloud operations.
|
|
3564
3564
|
- **`PDD_MODULE_TIMEOUT_SECONDS`**: Per-module wall-clock cap for `pdd sync --agentic` runs in seconds. Default is 2700 (45 minutes).
|
|
3565
|
+
- **`PDD_SYNC_MAX_WORKERS`**: Maximum number of modules `pdd sync` (agentic and durable issue sync) runs concurrently. Default is 4; values are clamped to the range 1–4 (non-integer values fall back to 4). Lower it (e.g. `PDD_SYNC_MAX_WORKERS=1`) to reduce peak memory on constrained runners such as Cloud Run. A sync given an explicit `--budget` always runs sequentially regardless of this value; durable runs honor an explicit `--durable-max-parallel` over this default.
|
|
3565
3566
|
- **`PDD_AUTO_SUBMIT_AUTH_TIMEOUT_S`**: Timeout in seconds for the JWT auth call used by `pdd sync` / `pdd fix --auto-submit` example submission. Default is 300 (5 minutes). Auto-submit is skipped automatically when running inside a Cloud Run / Cloud Functions executor.
|
|
3566
3567
|
|
|
3567
3568
|
### Configuration Priority
|
|
@@ -2218,9 +2218,15 @@
|
|
|
2218
2218
|
}
|
|
2219
2219
|
},
|
|
2220
2220
|
{
|
|
2221
|
-
"reason": "Determines needed dependencies and inserts them into a prompt
|
|
2221
|
+
"reason": "Determines needed dependencies via auto_include and inserts them into a prompt, handling both new and updated includes.",
|
|
2222
2222
|
"description": "Adds <include> tags for dependencies. Supports auto-dependency detection.",
|
|
2223
|
-
"dependencies": [
|
|
2223
|
+
"dependencies": [
|
|
2224
|
+
"llm_invoke_python.prompt",
|
|
2225
|
+
"load_prompt_template_python.prompt",
|
|
2226
|
+
"auto_include_python.prompt",
|
|
2227
|
+
"preprocess_python.prompt",
|
|
2228
|
+
"path_resolution_python.prompt"
|
|
2229
|
+
],
|
|
2224
2230
|
"priority": 60,
|
|
2225
2231
|
"filename": "insert_includes_python.prompt",
|
|
2226
2232
|
"filepath": "pdd/insert_includes.py",
|
|
@@ -2234,19 +2240,8 @@
|
|
|
2234
2240
|
"functions": [
|
|
2235
2241
|
{
|
|
2236
2242
|
"name": "insert_includes",
|
|
2237
|
-
"signature": "(input_prompt: str, directory_path: str, csv_filename: str, prompt_filename: Optional[str] = None, strength: float = DEFAULT_STRENGTH, temperature: float = 0.0, time: float = DEFAULT_TIME, verbose: bool = False, progress_callback: Optional[Callable[[int, int], None]] = None, include_docs: bool = False, max_workers: int = 1, dedup: bool = True)",
|
|
2238
|
-
"returns": "Tuple[str, str, float, str]"
|
|
2239
|
-
"sideEffects": [
|
|
2240
|
-
"None"
|
|
2241
|
-
]
|
|
2242
|
-
},
|
|
2243
|
-
{
|
|
2244
|
-
"name": "main",
|
|
2245
|
-
"signature": "()",
|
|
2246
|
-
"returns": "None",
|
|
2247
|
-
"sideEffects": [
|
|
2248
|
-
"None"
|
|
2249
|
-
]
|
|
2243
|
+
"signature": "(input_prompt: str, directory_path: str, csv_filename: str, prompt_filename: Optional[str] = None, strength: float = DEFAULT_STRENGTH, temperature: float = 0.0, time: float = DEFAULT_TIME, verbose: bool = False, progress_callback: Optional[Callable[[int, int], None]] = None, include_docs: bool = False, max_workers: int = 1, dedup: bool = True, compress: bool = False)",
|
|
2244
|
+
"returns": "Tuple[str, str, float, str]"
|
|
2250
2245
|
}
|
|
2251
2246
|
]
|
|
2252
2247
|
}
|
|
@@ -5113,9 +5108,13 @@
|
|
|
5113
5108
|
}
|
|
5114
5109
|
},
|
|
5115
5110
|
{
|
|
5116
|
-
"reason": "
|
|
5111
|
+
"reason": "Analyzes prompt changes and incrementally patches existing code or triggers full regeneration.",
|
|
5117
5112
|
"description": "Detects changes between prompt versions and generates minimal code patches. More efficient than full regeneration for small modifications.",
|
|
5118
|
-
"dependencies": [
|
|
5113
|
+
"dependencies": [
|
|
5114
|
+
"llm_invoke_python.prompt",
|
|
5115
|
+
"preprocess_python.prompt",
|
|
5116
|
+
"postprocess_python.prompt"
|
|
5117
|
+
],
|
|
5119
5118
|
"priority": 149,
|
|
5120
5119
|
"filename": "incremental_code_generator_python.prompt",
|
|
5121
5120
|
"filepath": "pdd/incremental_code_generator.py",
|
|
@@ -5131,10 +5130,7 @@
|
|
|
5131
5130
|
{
|
|
5132
5131
|
"name": "incremental_code_generator",
|
|
5133
5132
|
"signature": "(original_prompt: str, new_prompt: str, existing_code: str, language: str, strength: float = DEFAULT_STRENGTH, temperature: float = 0.0, time: float = 0.25, force_incremental: bool = False, verbose: bool = False, preprocess_prompt: bool = True) -> Tuple[Optional[str], bool, float, str]",
|
|
5134
|
-
"returns": "Tuple[Optional[str], bool, float, str]"
|
|
5135
|
-
"sideEffects": [
|
|
5136
|
-
"None"
|
|
5137
|
-
]
|
|
5133
|
+
"returns": "Tuple[Optional[str], bool, float, str]"
|
|
5138
5134
|
}
|
|
5139
5135
|
]
|
|
5140
5136
|
}
|
|
@@ -5436,7 +5432,7 @@
|
|
|
5436
5432
|
}
|
|
5437
5433
|
},
|
|
5438
5434
|
{
|
|
5439
|
-
"reason": "
|
|
5435
|
+
"reason": "Incrementally propagates PRD changes into architecture.json and affected prompt Requirements using validated targeted patches.",
|
|
5440
5436
|
"description": "Reads a PRD diff from hash/provenance metadata and ignored local raw-baseline cache, asks the LLM for a structured architecture patch, validates dependency, prompt filename, filepath, and file invariants deterministically, rejects unsafe or secret-like code filepaths before reads, retries invalid patches with explicit validation feedback, writes targeted architecture updates atomically, validates prompt previews under the write lock to avoid lost edits, syncs prompt metadata tags, creates prompts for new modules, deletes prompts for removed modules, updates prompt Requirements through detect_change/change, and avoids persisting raw PRD or GitHub issue/comment text in tracked metadata.",
|
|
5441
5437
|
"dependencies": [
|
|
5442
5438
|
"architecture_sync_python.prompt",
|
|
@@ -5459,13 +5455,13 @@
|
|
|
5459
5455
|
"functions": [
|
|
5460
5456
|
{
|
|
5461
5457
|
"name": "run_incremental_prd_propagation",
|
|
5462
|
-
"signature": "(prd_source: str, *, architecture_path: Path | str, prompts_dir: Path | str, project_root: Path | str | None, issue_content: Optional[str], dry_run: bool, verbose: bool, quiet: bool, strength: float, temperature: float, time: float, max_patch_attempts: int, update_prompt_requirements: bool, generate_new_prompts: bool)",
|
|
5463
|
-
"returns": "Tuple
|
|
5458
|
+
"signature": "(prd_source: str, *, architecture_path: Path | str = \"architecture.json\", prompts_dir: Path | str = \"prompts\", project_root: Path | str | None = None, issue_content: Optional[str] = None, dry_run: bool = False, verbose: bool = False, quiet: bool = False, strength: float = DEFAULT_STRENGTH, temperature: float = 0.0, time: float = DEFAULT_TIME, max_patch_attempts: int = 3, update_prompt_requirements: bool = True, generate_new_prompts: bool = True) -> Tuple[bool, str, float, str, List[str]]",
|
|
5459
|
+
"returns": "Tuple of success flag, message, cost, model, and changed files"
|
|
5464
5460
|
},
|
|
5465
5461
|
{
|
|
5466
5462
|
"name": "apply_architecture_patch",
|
|
5467
|
-
"signature": "(raw_architecture: Any, patch: ArchitecturePatch)",
|
|
5468
|
-
"returns": "
|
|
5463
|
+
"signature": "(raw_architecture: Any, patch: ArchitecturePatch) -> PatchApplication",
|
|
5464
|
+
"returns": "Validated in-memory architecture patch application result"
|
|
5469
5465
|
}
|
|
5470
5466
|
]
|
|
5471
5467
|
}
|
|
@@ -7229,7 +7225,7 @@
|
|
|
7229
7225
|
},
|
|
7230
7226
|
{
|
|
7231
7227
|
"reason": "Parallel dependency-aware sync runner that forwards compressed-context sync settings.",
|
|
7232
|
-
"description": "Manages pdd sync subprocesses using ThreadPoolExecutor, preserves architecture subdirectory basenames, strips architecture filename/target language suffixes via PDD's known-language catalog so compound languages such as TypeScriptReact and JavaScriptReact resolve correctly, respects dependency ordering from architecture.json, enforces total-budget sequential execution when requested, shrinks each child/retry budget by persisted module costs plus current-module in-flight retry cost, posts live progress to GitHub issue comments with a total body cap below GitHub's comment limit, keeps unrelated ready modules running after a module failure while blocking transitive failed-dependency dependents, and stops all new scheduling when total budget is exhausted. Detects three repairable generation failures from per-module sync subprocesses — architecture-conformance ('Architecture conformance error for ' line prefix, parsed by _parse_conformance_failure), public-surface regression ('Public surface regression for ' line prefix, parsed by _parse_public_surface_failure, issue #1012), and test-churn ('Test churn threshold exceeded for ' line prefix, parsed by _parse_test_churn_failure, issue #1012) — and retries each up to MAX_CONFORMANCE_ATTEMPTS=3 with a PDD_REPAIR_DIRECTIVE env var that names the exact offending symbols / churn ratio and forbids editing architecture.json or rewriting unrelated tests. Every child/retry forwards the parent's resolved .pddrc context, --strength, and --temperature on the retry command so a flaky regeneration cannot silently switch model or context between attempts. Stops retrying before launching another repair child if the in-flight repair cost exhausts total_budget, short-circuits when the failure signature (sorted missing/removed symbols, or (rounded churn_ratio, pre_line_count)) repeats, and on hard failure records the matching structured block — '=== architecture conformance failure ===', '=== public surface regression ===', or '=== test churn threshold exceeded ===' (built by build_conformance_hard_failure_from_error / build_public_surface_hard_failure_from_error / build_test_churn_hard_failure_from_error, all importable from pdd.agentic_sync_runner so sync_main and sync_orchestration reuse them verbatim) — plus a 'Reproduce locally:' line and an '--- env ---' fingerprint (pdd.__file__, pdd --version, git SHA, dirty flag, repo-vs-site-packages) so the GitHub App surface is actionable without exceeding GitHub comment size limits.",
|
|
7228
|
+
"description": "Manages pdd sync subprocesses using a ThreadPoolExecutor whose worker count is read by _read_sync_max_workers() from the PDD_SYNC_MAX_WORKERS env var at construction (default 4, non-integer falls back to 4, clamped to 1-4, forced to 1 when total_budget is set; MAX_WORKERS stays a backwards-compatible module constant), preserves architecture subdirectory basenames, strips architecture filename/target language suffixes via PDD's known-language catalog so compound languages such as TypeScriptReact and JavaScriptReact resolve correctly, respects dependency ordering from architecture.json, enforces total-budget sequential execution when requested, shrinks each child/retry budget by persisted module costs plus current-module in-flight retry cost, posts live progress to GitHub issue comments with a total body cap below GitHub's comment limit, keeps unrelated ready modules running after a module failure while blocking transitive failed-dependency dependents, and stops all new scheduling when total budget is exhausted. Detects three repairable generation failures from per-module sync subprocesses — architecture-conformance ('Architecture conformance error for ' line prefix, parsed by _parse_conformance_failure), public-surface regression ('Public surface regression for ' line prefix, parsed by _parse_public_surface_failure, issue #1012), and test-churn ('Test churn threshold exceeded for ' line prefix, parsed by _parse_test_churn_failure, issue #1012) — and retries each up to MAX_CONFORMANCE_ATTEMPTS=3 with a PDD_REPAIR_DIRECTIVE env var that names the exact offending symbols / churn ratio and forbids editing architecture.json or rewriting unrelated tests. Every child/retry forwards the parent's resolved .pddrc context, --strength, and --temperature on the retry command so a flaky regeneration cannot silently switch model or context between attempts. Stops retrying before launching another repair child if the in-flight repair cost exhausts total_budget, short-circuits when the failure signature (sorted missing/removed symbols, or (rounded churn_ratio, pre_line_count)) repeats, and on hard failure records the matching structured block — '=== architecture conformance failure ===', '=== public surface regression ===', or '=== test churn threshold exceeded ===' (built by build_conformance_hard_failure_from_error / build_public_surface_hard_failure_from_error / build_test_churn_hard_failure_from_error, all importable from pdd.agentic_sync_runner so sync_main and sync_orchestration reuse them verbatim) — plus a 'Reproduce locally:' line and an '--- env ---' fingerprint (pdd.__file__, pdd --version, git SHA, dirty flag, repo-vs-site-packages) so the GitHub App surface is actionable without exceeding GitHub comment size limits. Bounds per-attempt child stdout/stderr capture with a _BoundedTextCapture tail (capped by STDOUT_CAPTURE_LINE_LIMIT=5000 lines and STDOUT_CAPTURE_BYTE_LIMIT=1 MiB per stream, allocated fresh each attempt) so verbose repair retries cannot grow memory unbounded and trigger SIGKILL on Cloud Run; reads child pipes as bytes and decodes UTF-8 incrementally; tracks dropped line/byte counts surfaced via _log_dropped_output() and appended to failure/timeout summaries without injecting diagnostics into captured child output. The 'Overall status: ... Failed' verdict is recorded as the stdout line streams in (sticky), so a failure marker evicted from the bounded tail by trailing output still yields a failed verdict and a correct failure reason.",
|
|
7233
7229
|
"dependencies": [
|
|
7234
7230
|
"architecture_sync_python.prompt",
|
|
7235
7231
|
"agentic_langtest_python.prompt",
|
|
@@ -7293,7 +7289,7 @@
|
|
|
7293
7289
|
},
|
|
7294
7290
|
{
|
|
7295
7291
|
"reason": "Durable issue-sync execution engine that isolates each module in a dedicated git worktree and checkpoints successful module output to a durable branch.",
|
|
7296
|
-
"description": "Subclass of AsyncSyncRunner used when run_agentic_sync is invoked with durable=True. Prepares a `sync/issue-<N>` durable branch (or an explicit override) and a `.pdd/worktrees/durable-issue-<N>` worktree, runs each scheduled module inside its own per-module worktree, and on success applies the module diff to the durable branch as a checkpoint commit carrying a `PDD-Sync-Checkpoint-V1: issue=<N> module=<basename>` trailer. Pushes checkpoints with bounded retries, halts further checkpointing on patch conflict or non-fast-forward push, refuses to operate on `main`/`master`/the repository default branch, ignores `.pdd/agentic_sync_state.json` for resume, and emits stdout markers (`PDD_CHECKPOINT: issue=<N> module=<m> commit=<sha> empty=<bool>`) only after a successful push.",
|
|
7292
|
+
"description": "Subclass of AsyncSyncRunner used when run_agentic_sync is invoked with durable=True. Worker concurrency follows the same precedence as the parent: total_budget forces one worker, an explicit durable_max_parallel overrides, otherwise it reads the shared PDD_SYNC_MAX_WORKERS default via _read_sync_max_workers(). Prepares a `sync/issue-<N>` durable branch (or an explicit override) and a `.pdd/worktrees/durable-issue-<N>` worktree, runs each scheduled module inside its own per-module worktree, and on success applies the module diff to the durable branch as a checkpoint commit carrying a `PDD-Sync-Checkpoint-V1: issue=<N> module=<basename>` trailer. Pushes checkpoints with bounded retries, halts further checkpointing on patch conflict or non-fast-forward push, refuses to operate on `main`/`master`/the repository default branch, ignores `.pdd/agentic_sync_state.json` for resume, and emits stdout markers (`PDD_CHECKPOINT: issue=<N> module=<m> commit=<sha> empty=<bool>`) only after a successful push.",
|
|
7297
7293
|
"dependencies": [
|
|
7298
7294
|
"agentic_sync_runner_python.prompt"
|
|
7299
7295
|
],
|
|
@@ -7314,7 +7310,7 @@
|
|
|
7314
7310
|
"signature": "(*, basenames: List[str], dep_graph: Dict[str, List[str]], sync_options: Dict[str, object], github_info: Optional[Dict[str, object]], issue_number: int, project_root: Path, durable_branch: Optional[str] = None, no_resume: bool = False, durable_max_parallel: Optional[int] = None, quiet: bool = False, verbose: bool = False, issue_url: Optional[str] = None, module_cwds: Optional[Dict[str, Path]] = None, initial_cost: float = 0.0)",
|
|
7315
7311
|
"returns": "DurableSyncRunner",
|
|
7316
7312
|
"sideEffects": [
|
|
7317
|
-
"Resolves durable branch name and durable worktree path; total_budget in sync_options forces sequential scheduling,
|
|
7313
|
+
"Resolves durable branch name and durable worktree path; total_budget in sync_options forces sequential scheduling, else an explicit durable_max_parallel caps concurrency, else concurrency falls back to the shared PDD_SYNC_MAX_WORKERS default via agentic_sync_runner._read_sync_max_workers()"
|
|
7318
7314
|
]
|
|
7319
7315
|
},
|
|
7320
7316
|
{
|
|
@@ -7896,7 +7892,9 @@
|
|
|
7896
7892
|
{
|
|
7897
7893
|
"reason": "Module providing CI polling, log retrieval, and fix-iteration loop infrastructure for post-push CI validation.",
|
|
7898
7894
|
"description": "Module providing CI polling, log retrieval, and fix-iteration loop infrastructure for post-push CI validation.",
|
|
7899
|
-
"dependencies": [
|
|
7895
|
+
"dependencies": [
|
|
7896
|
+
"agentic_common_python.prompt"
|
|
7897
|
+
],
|
|
7900
7898
|
"priority": 221,
|
|
7901
7899
|
"filename": "ci_validation_python.prompt",
|
|
7902
7900
|
"filepath": "pdd/ci_validation.py",
|
|
@@ -7916,6 +7914,11 @@
|
|
|
7916
7914
|
"expected_head_sha_override forces the poll to wait for a specific PR head SHA instead of _get_head_sha(cwd); used by the post-checkup CI re-validation gate where cwd's local HEAD is stale relative to the PR remote because the checkup pushed from its own worktree"
|
|
7917
7915
|
]
|
|
7918
7916
|
},
|
|
7917
|
+
{
|
|
7918
|
+
"name": "run_github_checks_gate",
|
|
7919
|
+
"signature": "(cwd, repo_owner, repo_name, pr_number, quiet, expected_head_sha=None, required_only=False)",
|
|
7920
|
+
"returns": "Tuple[bool, str, str]"
|
|
7921
|
+
},
|
|
7919
7922
|
{
|
|
7920
7923
|
"name": "post_ci_failure_comment",
|
|
7921
7924
|
"signature": "(repo_owner, repo_name, pr_number, failures, attempts, cwd)",
|
|
@@ -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.276'
|
|
22
|
+
__version_tuple__ = version_tuple = (0, 0, 276)
|
|
23
23
|
|
|
24
|
-
__commit_id__ = commit_id = '
|
|
24
|
+
__commit_id__ = commit_id = 'g6c9ab157b'
|
|
@@ -15,6 +15,9 @@ from rich.console import Console
|
|
|
15
15
|
from rich.markup import escape
|
|
16
16
|
|
|
17
17
|
from .agentic_common import (
|
|
18
|
+
branch_checked_out_worktree,
|
|
19
|
+
clean_restart_fallback_branch,
|
|
20
|
+
current_worktree_branch,
|
|
18
21
|
run_agentic_task,
|
|
19
22
|
load_workflow_state,
|
|
20
23
|
save_workflow_state,
|
|
@@ -205,16 +208,64 @@ def _setup_worktree(
|
|
|
205
208
|
|
|
206
209
|
# Clean up branch if it exists
|
|
207
210
|
reset_after_attach = False
|
|
211
|
+
fallback_branch: Optional[str] = None
|
|
208
212
|
branch_exists = _branch_exists(cwd, branch_name)
|
|
209
213
|
if branch_exists and (clean_restart or not resume_existing):
|
|
210
214
|
success, _err = _delete_branch(cwd, branch_name)
|
|
211
215
|
if success:
|
|
212
216
|
branch_exists = False
|
|
213
217
|
elif clean_restart:
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
218
|
+
# The common cause is a stale worktree registration: prune and
|
|
219
|
+
# retry the delete first (resolves it without a fallback).
|
|
220
|
+
subprocess.run(
|
|
221
|
+
["git", "worktree", "prune"],
|
|
222
|
+
cwd=git_root, capture_output=True,
|
|
217
223
|
)
|
|
224
|
+
success, _err = _delete_branch(cwd, branch_name)
|
|
225
|
+
if success:
|
|
226
|
+
branch_exists = False
|
|
227
|
+
else:
|
|
228
|
+
# Still locked. Only fall back when the branch is genuinely
|
|
229
|
+
# checked out in ANOTHER live worktree (issue #1596). Use a
|
|
230
|
+
# fresh unique fallback branch off main so the locked worktree
|
|
231
|
+
# is left untouched.
|
|
232
|
+
holder = branch_checked_out_worktree(git_root, branch_name)
|
|
233
|
+
if holder and Path(holder).resolve() != worktree_path.resolve():
|
|
234
|
+
fallback_branch = clean_restart_fallback_branch(branch_name)
|
|
235
|
+
# The fallback name is stable across retries of the same
|
|
236
|
+
# job (JOB_ID-derived), so a prior attempt may have left
|
|
237
|
+
# this branch behind after its worktree was removed. Delete
|
|
238
|
+
# it (best effort) so we recreate it fresh from main rather
|
|
239
|
+
# than failing `git worktree add -b` on a name clash.
|
|
240
|
+
_delete_branch(cwd, fallback_branch)
|
|
241
|
+
# Fetch the FALLBACK branch's own tracking ref so Step 12's
|
|
242
|
+
# `git push --force-with-lease origin {head_branch}` has
|
|
243
|
+
# lease info. On a same-job retry in a fresh clone,
|
|
244
|
+
# origin/{fallback} already exists but the local tracking
|
|
245
|
+
# ref does not — without this fetch the push is rejected
|
|
246
|
+
# with "stale info". Best effort.
|
|
247
|
+
fallback_lease = (
|
|
248
|
+
f"+refs/heads/{fallback_branch}:refs/remotes/origin/{fallback_branch}"
|
|
249
|
+
)
|
|
250
|
+
try:
|
|
251
|
+
subprocess.run(
|
|
252
|
+
["git", "fetch", "origin", fallback_lease],
|
|
253
|
+
cwd=git_root, capture_output=True, check=True,
|
|
254
|
+
)
|
|
255
|
+
except subprocess.CalledProcessError:
|
|
256
|
+
pass
|
|
257
|
+
branch_exists = False
|
|
258
|
+
if not quiet:
|
|
259
|
+
console.print(
|
|
260
|
+
f"[bold cyan]Clean restart: branch {branch_name!r} is locked by "
|
|
261
|
+
f"worktree {holder} — creating fresh fallback branch "
|
|
262
|
+
f"{fallback_branch!r} from main instead.[/bold cyan]"
|
|
263
|
+
)
|
|
264
|
+
else:
|
|
265
|
+
return None, (
|
|
266
|
+
f"Cannot perform clean restart: local branch {branch_name!r} "
|
|
267
|
+
"could not be deleted. Remove the worktree using it, then retry."
|
|
268
|
+
)
|
|
218
269
|
else:
|
|
219
270
|
# Branch couldn't be deleted — will reuse with --force,
|
|
220
271
|
# then reset to HEAD so old commits don't pollute the PR.
|
|
@@ -236,7 +287,10 @@ def _setup_worktree(
|
|
|
236
287
|
"(checked origin/main, origin/master, main, master). Refusing "
|
|
237
288
|
"to base the fresh bug worktree on current HEAD."
|
|
238
289
|
)
|
|
239
|
-
|
|
290
|
+
# Under a #1596 fallback the canonical branch is locked by another
|
|
291
|
+
# worktree, so create the unique fallback branch instead.
|
|
292
|
+
create_branch = fallback_branch or branch_name
|
|
293
|
+
cmd = ["git", "worktree", "add", "-b", create_branch, str(worktree_path), base_ref]
|
|
240
294
|
subprocess.run(
|
|
241
295
|
cmd,
|
|
242
296
|
cwd=git_root,
|
|
@@ -2414,6 +2468,15 @@ def run_agentic_bug_orchestrator(
|
|
|
2414
2468
|
if stage_result.returncode != 0 and not quiet:
|
|
2415
2469
|
console.print(f"[yellow]Warning: failed to stage {filepath}: {stage_result.stderr.strip()}[/yellow]")
|
|
2416
2470
|
|
|
2471
|
+
# Pre-Step 12: thread the worktree's ACTUAL head branch so a #1596
|
|
2472
|
+
# clean-restart fallback branch is pushed/PR'd, not the (locked)
|
|
2473
|
+
# canonical name. Defaults to the canonical name → byte-identical
|
|
2474
|
+
# rendered output when no fallback occurred.
|
|
2475
|
+
if step_num == 12:
|
|
2476
|
+
context["head_branch"] = (
|
|
2477
|
+
current_worktree_branch(current_work_dir) or f"fix/issue-{issue_number}"
|
|
2478
|
+
)
|
|
2479
|
+
|
|
2417
2480
|
# Load and preprocess template
|
|
2418
2481
|
step_str = str(step_num).replace(".", "_")
|
|
2419
2482
|
template_name = f"agentic_bug_step{step_str}_{name}_LLM"
|
|
@@ -19,6 +19,9 @@ from rich.console import Console
|
|
|
19
19
|
from rich.markup import escape
|
|
20
20
|
|
|
21
21
|
from pdd.agentic_common import (
|
|
22
|
+
branch_checked_out_worktree,
|
|
23
|
+
clean_restart_fallback_branch,
|
|
24
|
+
current_worktree_branch,
|
|
22
25
|
run_agentic_task,
|
|
23
26
|
load_workflow_state,
|
|
24
27
|
save_workflow_state,
|
|
@@ -555,6 +558,7 @@ def _setup_worktree(
|
|
|
555
558
|
console.print(f"[yellow]Warning: git fetch failed for {branch_name}: {stderr.strip()}[/yellow]")
|
|
556
559
|
|
|
557
560
|
# Clean up local branch if it exists
|
|
561
|
+
fallback_branch: Optional[str] = None
|
|
558
562
|
branch_exists = _branch_exists(cwd, branch_name)
|
|
559
563
|
if branch_exists:
|
|
560
564
|
success, _err = _delete_branch(cwd, branch_name)
|
|
@@ -566,11 +570,59 @@ def _setup_worktree(
|
|
|
566
570
|
# base the fresh restart on whatever the previous run
|
|
567
571
|
# left on the local change/issue-{N} branch, violating
|
|
568
572
|
# the Req 15 base-ref guarantee.
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
+
#
|
|
574
|
+
# The common cause is a stale worktree registration: prune
|
|
575
|
+
# and retry the delete first (resolves it without a fallback).
|
|
576
|
+
subprocess.run(
|
|
577
|
+
["git", "worktree", "prune"],
|
|
578
|
+
cwd=git_root, capture_output=True,
|
|
573
579
|
)
|
|
580
|
+
success, _err = _delete_branch(cwd, branch_name)
|
|
581
|
+
if success:
|
|
582
|
+
branch_exists = False
|
|
583
|
+
else:
|
|
584
|
+
# Still locked. Only fall back when the branch is genuinely
|
|
585
|
+
# checked out in ANOTHER live worktree (issue #1596: the
|
|
586
|
+
# GitHub App executor's). Use a fresh unique fallback branch
|
|
587
|
+
# off origin/main so the locked worktree is left untouched.
|
|
588
|
+
holder = branch_checked_out_worktree(git_root, branch_name)
|
|
589
|
+
if holder and Path(holder).resolve() != worktree_path.resolve():
|
|
590
|
+
fallback_branch = clean_restart_fallback_branch(branch_name)
|
|
591
|
+
# The fallback name is stable across retries of the same
|
|
592
|
+
# job (JOB_ID-derived), so a prior attempt may have left
|
|
593
|
+
# this branch behind after its worktree was removed. Delete
|
|
594
|
+
# it (best effort) so we recreate it fresh from main rather
|
|
595
|
+
# than failing `git worktree add -b` on a name clash.
|
|
596
|
+
_delete_branch(cwd, fallback_branch)
|
|
597
|
+
# Fetch the FALLBACK branch's own tracking ref (not the
|
|
598
|
+
# canonical one) so Step 13's `git push --force-with-lease
|
|
599
|
+
# origin {head_branch}` has lease info. On a same-job retry
|
|
600
|
+
# in a fresh clone, origin/{fallback} already exists but the
|
|
601
|
+
# local tracking ref does not — without this fetch the push
|
|
602
|
+
# is rejected with "stale info". Best effort.
|
|
603
|
+
fallback_lease = (
|
|
604
|
+
f"+refs/heads/{fallback_branch}:refs/remotes/origin/{fallback_branch}"
|
|
605
|
+
)
|
|
606
|
+
try:
|
|
607
|
+
subprocess.run(
|
|
608
|
+
["git", "fetch", "origin", fallback_lease],
|
|
609
|
+
cwd=git_root, capture_output=True, check=True
|
|
610
|
+
)
|
|
611
|
+
except subprocess.CalledProcessError:
|
|
612
|
+
pass
|
|
613
|
+
branch_exists = False
|
|
614
|
+
if not quiet:
|
|
615
|
+
console.print(
|
|
616
|
+
f"[bold cyan]Clean restart: branch {branch_name!r} is locked by "
|
|
617
|
+
f"worktree {holder} — creating fresh fallback branch "
|
|
618
|
+
f"{fallback_branch!r} from main instead.[/bold cyan]"
|
|
619
|
+
)
|
|
620
|
+
else:
|
|
621
|
+
return None, (
|
|
622
|
+
f"Cannot perform clean restart: local branch {branch_name!r} "
|
|
623
|
+
"could not be deleted (it is likely checked out in another "
|
|
624
|
+
"worktree). Remove that worktree first, then retry."
|
|
625
|
+
)
|
|
574
626
|
|
|
575
627
|
# Resolve base ref once. Under clean_restart, refuse to silently
|
|
576
628
|
# use the literal "HEAD" fallback (the user's CURRENT branch) —
|
|
@@ -606,9 +658,12 @@ def _setup_worktree(
|
|
|
606
658
|
if not quiet:
|
|
607
659
|
console.print(f"[blue]Reusing remote branch {branch_name} (preserving prior changes)[/blue]")
|
|
608
660
|
else:
|
|
609
|
-
# No prior work — create new branch from main
|
|
661
|
+
# No prior work — create new branch from main. Under a #1596
|
|
662
|
+
# fallback the canonical branch is locked by another worktree, so
|
|
663
|
+
# create the unique fallback branch instead.
|
|
664
|
+
create_branch = fallback_branch or branch_name
|
|
610
665
|
subprocess.run(
|
|
611
|
-
["git", "worktree", "add", "-b",
|
|
666
|
+
["git", "worktree", "add", "-b", create_branch, str(worktree_path), base_ref],
|
|
612
667
|
cwd=git_root, capture_output=True, check=True
|
|
613
668
|
)
|
|
614
669
|
if clean_restart and not quiet:
|
|
@@ -1682,21 +1737,33 @@ def _build_dependency_context(prompts_dir: Path, quiet: bool = False) -> str:
|
|
|
1682
1737
|
def _check_existing_pr(repo_owner: str, repo_name: str, issue_number: int) -> Optional[str]:
|
|
1683
1738
|
"""Check if an open PR already exists for this issue's branch.
|
|
1684
1739
|
|
|
1685
|
-
|
|
1740
|
+
Matches the canonical ``change/issue-{N}`` head AND any
|
|
1741
|
+
``change/issue-{N}-job-*`` clean-restart fallback head (issue #1596), so a
|
|
1742
|
+
later normal run does not open a duplicate PR for a fallback branch.
|
|
1743
|
+
Returns the PR URL if found, else None.
|
|
1744
|
+
|
|
1745
|
+
GitHub's ``head:`` search is a PREFIX match, so ``head:change/issue-{N}``
|
|
1746
|
+
also returns unrelated heads like ``change/issue-{N}0``; the results are
|
|
1747
|
+
filtered precisely in Python.
|
|
1686
1748
|
"""
|
|
1687
|
-
|
|
1749
|
+
canonical = f"change/issue-{issue_number}"
|
|
1750
|
+
fallback_prefix = f"{canonical}-job-"
|
|
1688
1751
|
try:
|
|
1689
1752
|
result = subprocess.run(
|
|
1690
1753
|
["gh", "pr", "list", "--repo", f"{repo_owner}/{repo_name}",
|
|
1691
|
-
"--search", f"head:{
|
|
1692
|
-
"--json", "url", "--limit", "
|
|
1754
|
+
"--search", f"head:{canonical}", "--state", "open",
|
|
1755
|
+
"--json", "url,headRefName", "--limit", "30"],
|
|
1693
1756
|
capture_output=True, text=True, check=False, timeout=30,
|
|
1694
1757
|
)
|
|
1695
1758
|
if result.returncode != 0:
|
|
1696
1759
|
return None
|
|
1697
1760
|
data = json.loads(result.stdout)
|
|
1698
|
-
if data and isinstance(data, list)
|
|
1699
|
-
|
|
1761
|
+
if data and isinstance(data, list):
|
|
1762
|
+
for pr in data:
|
|
1763
|
+
head = pr.get("headRefName", "")
|
|
1764
|
+
if head == canonical or head.startswith(fallback_prefix):
|
|
1765
|
+
if pr.get("url"):
|
|
1766
|
+
return pr["url"]
|
|
1700
1767
|
except (subprocess.TimeoutExpired, json.JSONDecodeError, Exception):
|
|
1701
1768
|
pass
|
|
1702
1769
|
return None
|
|
@@ -2835,6 +2902,12 @@ def run_agentic_change_orchestrator(
|
|
|
2835
2902
|
context["base_branch"] = _normalize_pr_base_branch(
|
|
2836
2903
|
_resolve_main_ref_name(git_root_for_pr_base)
|
|
2837
2904
|
)
|
|
2905
|
+
# Thread the worktree's ACTUAL head branch so a #1596 clean-restart
|
|
2906
|
+
# fallback branch is pushed/PR'd, not the (locked) canonical name.
|
|
2907
|
+
# Defaults to the canonical name → byte-identical when no fallback.
|
|
2908
|
+
context["head_branch"] = (
|
|
2909
|
+
current_worktree_branch(current_work_dir) or f"change/issue-{issue_number}"
|
|
2910
|
+
)
|
|
2838
2911
|
if not quiet: console.print("[bold][Step 13/13][/bold] Create PR and link to issue...")
|
|
2839
2912
|
s13_template = load_prompt_template("agentic_change_step13_create_pr_LLM")
|
|
2840
2913
|
# Preprocess to escape curly braces in included content
|
|
@@ -7,6 +7,7 @@ import os
|
|
|
7
7
|
import signal
|
|
8
8
|
import sys
|
|
9
9
|
import json
|
|
10
|
+
import secrets
|
|
10
11
|
import shutil
|
|
11
12
|
import subprocess
|
|
12
13
|
import tempfile
|
|
@@ -1252,6 +1253,77 @@ def classify_step_output(
|
|
|
1252
1253
|
return TokenMatch(tier="llm_classification_error", token="CLASSIFICATION_ERROR")
|
|
1253
1254
|
|
|
1254
1255
|
|
|
1256
|
+
def branch_checked_out_worktree(git_root: Path, branch_name: str) -> Optional[str]:
|
|
1257
|
+
"""Return the path of a LIVE worktree that currently has ``branch_name``
|
|
1258
|
+
checked out, or ``None``. Parses ``git worktree list --porcelain`` so the
|
|
1259
|
+
check does not depend on locale-specific ``git branch -D`` stderr text.
|
|
1260
|
+
|
|
1261
|
+
Only a worktree that genuinely holds the branch should trigger the issue
|
|
1262
|
+
#1596 fallback. A stanza marked ``prunable`` (stale registration) or whose
|
|
1263
|
+
path no longer exists on disk MUST NOT count — pruning + retrying the
|
|
1264
|
+
delete clears those, so treating them as a lock would force a needless
|
|
1265
|
+
fallback branch."""
|
|
1266
|
+
try:
|
|
1267
|
+
result = subprocess.run(
|
|
1268
|
+
["git", "worktree", "list", "--porcelain"],
|
|
1269
|
+
cwd=git_root, capture_output=True, text=True, check=True,
|
|
1270
|
+
)
|
|
1271
|
+
except (subprocess.CalledProcessError, OSError):
|
|
1272
|
+
return None
|
|
1273
|
+
target = f"refs/heads/{branch_name}"
|
|
1274
|
+
# Stanzas are separated by blank lines; the final stanza may have no
|
|
1275
|
+
# trailing blank line. Append one so the flush logic is uniform.
|
|
1276
|
+
path: Optional[str] = None
|
|
1277
|
+
branch: Optional[str] = None
|
|
1278
|
+
prunable = False
|
|
1279
|
+
for line in result.stdout.splitlines() + [""]:
|
|
1280
|
+
if line.startswith("worktree "):
|
|
1281
|
+
path = line[len("worktree "):].strip()
|
|
1282
|
+
elif line.startswith("branch "):
|
|
1283
|
+
branch = line[len("branch "):].strip()
|
|
1284
|
+
elif line == "prunable" or line.startswith("prunable "):
|
|
1285
|
+
prunable = True
|
|
1286
|
+
elif line == "":
|
|
1287
|
+
# End of a stanza — evaluate it.
|
|
1288
|
+
if (
|
|
1289
|
+
path is not None
|
|
1290
|
+
and branch == target
|
|
1291
|
+
and not prunable
|
|
1292
|
+
and Path(path).exists()
|
|
1293
|
+
):
|
|
1294
|
+
return path
|
|
1295
|
+
path = None
|
|
1296
|
+
branch = None
|
|
1297
|
+
prunable = False
|
|
1298
|
+
return None
|
|
1299
|
+
|
|
1300
|
+
|
|
1301
|
+
def clean_restart_fallback_branch(branch_name: str) -> str:
|
|
1302
|
+
"""Unique fallback branch name for a clean restart when ``branch_name`` is
|
|
1303
|
+
locked by another worktree (issue #1596). Prefers the executor job id
|
|
1304
|
+
(``JOB_ID`` / ``PDD_JOB_ID`` env) so the name — and therefore the PR — is
|
|
1305
|
+
stable across retries of the same job; otherwise a random token."""
|
|
1306
|
+
raw = os.environ.get("JOB_ID") or os.environ.get("PDD_JOB_ID") or ""
|
|
1307
|
+
slug = re.sub(r"[^A-Za-z0-9]", "", raw)[:8]
|
|
1308
|
+
if not slug:
|
|
1309
|
+
slug = secrets.token_hex(4) # 8 hex chars
|
|
1310
|
+
return f"{branch_name}-job-{slug}"
|
|
1311
|
+
|
|
1312
|
+
|
|
1313
|
+
def current_worktree_branch(cwd: Path) -> Optional[str]:
|
|
1314
|
+
"""Return the current branch name of the git worktree at ``cwd``, or
|
|
1315
|
+
``None`` if detached/unresolvable."""
|
|
1316
|
+
try:
|
|
1317
|
+
result = subprocess.run(
|
|
1318
|
+
["git", "rev-parse", "--abbrev-ref", "HEAD"],
|
|
1319
|
+
cwd=cwd, capture_output=True, text=True, check=True,
|
|
1320
|
+
)
|
|
1321
|
+
except (subprocess.CalledProcessError, OSError):
|
|
1322
|
+
return None
|
|
1323
|
+
branch = result.stdout.strip()
|
|
1324
|
+
return branch if branch and branch != "HEAD" else None
|
|
1325
|
+
|
|
1326
|
+
|
|
1255
1327
|
def substitute_template_variables(
|
|
1256
1328
|
template: Any,
|
|
1257
1329
|
context: Dict[str, Any],
|