pdd-cli 0.0.243__tar.gz → 0.0.244__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.243 → pdd_cli-0.0.244}/.gitignore +1 -0
- pdd_cli-0.0.244/.pdd/meta/agentic_e2e_fix_orchestrator_python.json +16 -0
- pdd_cli-0.0.244/.pdd/meta/agentic_e2e_fix_orchestrator_python_run.json +11 -0
- pdd_cli-0.0.244/.pdd/meta/agentic_update_python.json +20 -0
- pdd_cli-0.0.244/.pdd/meta/update_main_python.json +28 -0
- {pdd_cli-0.0.243/pdd_cli.egg-info → pdd_cli-0.0.244}/PKG-INFO +1 -1
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/README.md +2 -1
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/architecture.json +35 -17
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/operation_log_example.py +36 -18
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/architecture_include_validation.md +17 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/_version.py +3 -3
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_e2e_fix_orchestrator.py +480 -16
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_sync.py +323 -119
- pdd_cli-0.0.244/pdd/agentic_update.py +575 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/architecture_include_validation.py +8 -24
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/architecture_registry.py +42 -3
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/architecture_sync.py +241 -19
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/checkup_review_loop.py +257 -4
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/commands/generate.py +9 -9
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/operation_log.py +51 -6
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_e2e_fix_orchestrator_python.prompt +9 -2
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_sync_python.prompt +5 -5
- pdd_cli-0.0.244/pdd/prompts/agentic_update_python.prompt +82 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/architecture_include_validation_python.prompt +8 -8
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/architecture_registry_python.prompt +37 -4
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/architecture_sync_python.prompt +12 -7
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/checkup_review_loop_python.prompt +9 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/commands/generate_python.prompt +1 -1
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/operation_log_python.prompt +2 -2
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/sync_order_python.prompt +2 -2
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/update_main_python.prompt +2 -2
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/sync_order.py +22 -5
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/update_main.py +67 -13
- {pdd_cli-0.0.243 → pdd_cli-0.0.244/pdd_cli.egg-info}/PKG-INFO +1 -1
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd_cli.egg-info/SOURCES.txt +2 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/commands/test_generate.py +254 -14
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/conftest.py +57 -1
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_e2e_fix_orchestrator.py +1645 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_sync.py +341 -3
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_update.py +576 -4
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_architecture_sync.py +304 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_checkup_review_loop.py +1044 -0
- pdd_cli-0.0.244/tests/test_home_isolation.py +161 -0
- pdd_cli-0.0.244/tests/test_issue_1060_pollution.py +364 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_operation_log.py +134 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_sync_order.py +28 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_update_main.py +169 -0
- pdd_cli-0.0.243/.pdd/meta/agentic_e2e_fix_orchestrator_python.json +0 -16
- pdd_cli-0.0.243/.pdd/meta/agentic_e2e_fix_orchestrator_python_run.json +0 -11
- pdd_cli-0.0.243/.pdd/meta/agentic_update_python.json +0 -17
- pdd_cli-0.0.243/.pdd/meta/update_main_python.json +0 -22
- pdd_cli-0.0.243/pdd/agentic_update.py +0 -394
- pdd_cli-0.0.243/pdd/prompts/agentic_update_python.prompt +0 -65
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.env.example +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.gitattributes +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.github/workflows/auto-heal.yml +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.github/workflows/pdd-secrets-dispatch.yml +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.github/workflows/release.yml +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.github/workflows/unit-tests.yml +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/agentic_architecture_orchestrator_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/agentic_bug_orchestrator_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/agentic_bug_orchestrator_python_run.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/agentic_bug_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/agentic_change_orchestrator_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/agentic_change_orchestrator_python_run.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/agentic_checkup_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/agentic_checkup_python_run.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/agentic_common_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/agentic_common_python_run.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/agentic_crash_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/agentic_fix_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/agentic_split_orchestrator_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/agentic_split_orchestrator_python_run.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/agentic_sync_runner_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/agentic_verify_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/architecture_sync_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/architecture_sync_python_run.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/checkup_review_loop_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/checkup_review_loop_python_run.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/ci_drift_heal_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/ci_drift_heal_python_run.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/code_generator_main_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/commands_checkup_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/commands_checkup_python_run.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/commands_modify_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/commands_modify_python_run.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/core_cloud_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/fix_code_loop_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/get_comment_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/get_test_command_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/git_update_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/llm_invoke_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/metadata_sync_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/metadata_sync_python_run.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/pin_example_hack_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/pin_example_hack_python_run.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/server_jobs_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/summarize_directory_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/sync_orchestration_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pdd/meta/sync_orchestration_python_run.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pddignore +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.pddrc +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/.sync-config.yml +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/AGENTS.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/CHANGELOG.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/CLAUDE.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/CONTRIBUTING.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/GEMINI.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/LICENSE +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/Makefile +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/SETUP_WITH_GEMINI.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/SETUP_WITH_WINDOWS.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/ci/cloud-batch/Dockerfile +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/ci/cloud-batch/balance-chunks.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/ci/cloud-batch/cloudbuild.yaml +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/ci/cloud-batch/collect-results.sh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/ci/cloud-batch/entrypoint.sh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/ci/cloud-batch/job-template-standard.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/ci/cloud-batch/job-template.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/ci/cloud-batch/setup-gcp.sh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/ci/cloud-batch/submit.sh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/ci/cloud-batch/test-durations.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/DSPy_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/__init__example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/_keyring_timeout_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_architecture_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_architecture_orchestrator_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_bug_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_bug_orchestrator_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_change_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_change_orchestrator_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_checkup_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_checkup_orchestrator_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_common_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_crash_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_e2e_fix_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_e2e_fix_orchestrator_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_fix_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_langtest_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_split_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_split_orchestrator_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_sync_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_sync_runner_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_test_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_test_orchestrator_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_update_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/agentic_verify_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/anthropic_counter_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/anthropic_tool_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/api_key_scanner_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/architecture_registry_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/architecture_sync_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/auth_service_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/auto_deps_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/auto_include_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/auto_update_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/autotokenizer_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/bug_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/bug_to_unit_test_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/bug_to_unit_test_failure_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/1/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/1/final_code_generator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/1/initial_code_generator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/1/initial_code_generator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/10/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/10/final_fix_errors_from_unit_tests_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/10/initial_fix_errors_from_unit_tests.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/10/initial_fix_errors_from_unit_tests_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/11/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/11/initial_code_generator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/11/initial_code_generator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/11/initial_split_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/12/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/12/final_unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/12/initial_postprocess.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/12/initial_postprocess_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/13/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/13/initial_split.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/13/initial_split_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/13/modified_initial_split.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/14/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/14/initial_change.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/14/initial_change_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/14/modified_initial_change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/15/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/15/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/15/initial_cli.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/15/initial_cli_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/15/modified_initial_cli.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/16/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/16/fix_code_module_errors_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/16/fix_code_module_errors_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/16/fix_error_loop.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/16/fix_error_loop_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/16/fix_errors_from_unit_tests_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/16/modified_fix_error_loop_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/17/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/17/continue_generation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/17/continue_generation_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/17/unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/17/updated_continue_generation_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/17/updated_unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/18/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/18/code_generator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/18/code_generator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/18/unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/18/updated_code_generator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/18/updated_unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/19/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/19/context_generator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/19/context_generator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/19/unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/19/updated_context_generator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/19/updated_unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/2/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/2/final_context_generator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/2/initial_context_generator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/2/initial_context_generator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/20/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/20/generate_test.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/20/generate_test_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/20/updated_generate_test_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/21/auto_deps_main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/21/auto_include.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/21/auto_include_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/21/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/22/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/22/preprocess.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/22/preprocess_main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/22/preprocess_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/3/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/3/final_test_generator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/3/initial_test_generator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/3/intial_test_generator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/4/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/4/final_postprocess_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/4/initial_postprocess.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/4/initial_postprocess_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/5/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/5/final_split_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/5/initial_split.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/5/initial_split_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/6/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/6/final_xml_tagger_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/6/initial_xml_tagger.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/6/initial_xml_tagger_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/7/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/7/final_fix_errors_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/7/initial_fix_errors.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/7/initial_fix_errors_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/8/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/8/final_fix_errors_from_unit_tests_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/8/initial_fix_errors_from_unit_tests.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/8/initial_fix_errors_from_unit_tests_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/9/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/9/final_fix_error_loop_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/9/initial_fix_error_loop.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/9/initial_fix_error_loop_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change/simple_math/change.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/change_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/checkup_review_loop_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/ci_detect_changed_modules_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/ci_drift_heal_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/ci_validation_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/cli_detector_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/cli_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/click_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/click_executor_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/cloud_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/cloud_function_call.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/cmd_test_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/code_generator_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/code_generator_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/commands/__init___example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/commands/analysis_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/commands/auth_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/commands/checkup_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/commands/connect_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/commands/fix_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/commands/generate_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/commands/maintenance_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/commands/misc_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/commands/modify_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/commands/sessions_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/commands/templates_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/commands/utility_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/comment_line_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/config_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/conflicts_in_prompts_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/conflicts_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/construct_paths_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/content_selector_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/context_generator_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/context_generator_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/continue_generation_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/core/cli_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/core/cloud_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/core/dump_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/core/duplicate_cli_guard_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/core/errors_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/core/utils_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/crash_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/ctx_obj_params.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/detect_change_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/detect_change_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/dict_utils_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/edit_file_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/embed_retrieve_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/example.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/extracts_prune_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/fastapi_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/find_section_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/firecrawl_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/fix_code_loop_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/fix_code_module_errors_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/fix_error_loop_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/fix_errors_from_unit_tests_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/fix_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/fix_verification_errors_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/fix_verification_errors_loop_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/fix_verification_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/gemini_may_pro_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/generate_model_catalog_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/generate_output_paths_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/generate_test_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/generation_completion_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/get_comment_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/get_extension_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/get_jwt_token_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/get_language_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/get_run_command_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/get_test_command_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/git_update_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/include_query_extractor_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/increase_tests_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/incremental_code_generator_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/insert_includes_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/install_completion_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/job_manager_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/langchain_lcel_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/list_stats_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/llm_invoke_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/llm_model_ranges_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/llm_selector_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/load_prompt_template_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/logo_animation_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/metadata_sync_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/model_tester_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/one_session_sync_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/path_resolution_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/pdd_completion_example.fish +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/pdd_completion_example.sh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/pdd_completion_example.zsh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/pddrc_initializer_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/pin_example_hack_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/postprocess_0_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/postprocess_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/preprocess_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/preprocess_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/process_csv_change_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/provider_manager_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/pytest_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/pytest_isolation_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/pytest_output_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/python_env_detector_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/python_preamble.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/range_validator_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/remote_session_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/render_mermaid_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/resolve_effective_config_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/__init___example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/app_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/click_executor_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/executor_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/jobs_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/models_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/routes/__init___example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/routes/architecture_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/routes/auth_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/routes/commands_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/routes/config_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/routes/extracts_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/routes/files_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/routes/prompts_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/routes/session_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/routes/websocket_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/security_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/terminal_spawner_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/server/token_counter_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/setup_tool_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/split/simple_math/split_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/split_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/split_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/split_validation_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/summarize_directory_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/sync_animation_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/sync_code_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/sync_determine_operation_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/sync_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/sync_orchestration_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/sync_order_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/test.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/tiktoken_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/trace_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/trace_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/track_cost_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/unfinished_prompt_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/update_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/update_model_costs_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/update_prompt_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/websocket_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/context/xml_tagger_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/ONBOARDING.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/Software Development Costs and Maintenance_ 2022/342/200/2232025 Trends and AI Impact.md" +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/TUTORIALS.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/ci.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/comparison.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/examples/prompt_with_metadata.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/faq.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/goldilocks_prompt.jpeg +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/issues/issue_813_verification_plan.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/new_whitepaper.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/o3_whitepaper.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/orig_whitepaper.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/path_resolution_resolver.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/pdd_vs_agentic_cli_definitive_proof_plan.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/prompt-driven-development-doctrine.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/prompting_guide.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/standup_notes.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/sync_architecture_analysis.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/sync_determination_analysis.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/sync_solution_o3pro.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/sync_solution_opus.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/videos/handpaint_demo.gif +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_before_4.5.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/evidence/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/evidence/SHA256SUMS.txt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/evidence/_session_classification.tsv +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/evidence/prompts_pdd.jsonl +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/evidence/prompts_pdd.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/evidence/prompts_vibe.jsonl +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/evidence/prompts_vibe.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/evidence/quote_map.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/images/loop.mmd +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/images/loop.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/images/oscillation.mmd +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/images/oscillation.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/images/pdd_cycle.mmd +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/images/pdd_cycle.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/images/pipeline.mmd +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/images/pipeline.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/images/threshold.mmd +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/images/threshold.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_specification_drift/whitepaper.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/analysis_report/avg_api_cost_by_edit_type.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/analysis_report/avg_api_cost_by_file_size.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/analysis_report/avg_api_cost_by_language.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/analysis_report/avg_execution_time_by_edit_type.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/analysis_report/avg_execution_time_by_file_size.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/analysis_report/avg_execution_time_by_language.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/analysis_report/cost_per_successful_task.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/analysis_report/overall_avg_api_cost.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/analysis_report/overall_avg_execution_time.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/analysis_report/overall_success_rate.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/analysis_report/success_rate_by_edit_type.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/analysis_report/success_rate_by_file_size.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/analysis_report/success_rate_by_language.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/analysis_report/time_vs_cost_scatter.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/analysis_report/total_api_cost_comparison.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/creation_report/claude_cost_per_run_dist.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/creation_report/claude_lines_added_removed_dist.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/creation_report/claude_wall_duration_dist.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/creation_report/pdd_avg_cost_per_module_dist.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/creation_report/pdd_top_modules_by_cost.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/creation_report/pdd_top_modules_by_time.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/creation_report/pdd_total_time_per_module_dist.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/creation_report/total_cost_comparison.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/creation_report/total_time_comparison.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/docs/whitepaper_with_benchmarks/whitepaper_w_benchmarks.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/environment.yml +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_bug_orchestrator_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_change_orchestrator_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_checkup_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_common_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_common_worktree_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_e2e_fix_orchestrator_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example/main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example/src/main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example/src/utils.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example/tests/test_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example/utils_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_gradle/.gitignore +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_gradle/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_gradle/build.gradle +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_gradle/gradle/wrapper/gradle-wrapper.jar +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_gradle/gradle/wrapper/gradle-wrapper.properties +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_gradle/gradlew +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_gradle/gradlew.bat +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_gradle/main_java.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_gradle/settings.gradle +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_gradle/src/main/java/Main.java +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_gradle/src/main/java/Util.java +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_gradle/src/test/java/TestMain.java +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_gradle/util_java.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_maven/.gitignore +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_maven/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_maven/main_java.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_maven/pom.xml +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_maven/src/main/java/Main.java +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_maven/src/main/java/Util.java +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_maven/src/test/java/TestMain.java +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_java_maven/util_java.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_javascript/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_javascript/main_javascript.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_javascript/package.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_javascript/src/main.js +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_javascript/src/utils.js +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_javascript/tests/test_main.js +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_javascript/utils_javascript.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_typescript/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_typescript/main_typescript.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_typescript/package.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_typescript/src/main.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_typescript/src/utils.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_typescript/tests/test_main.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_typescript/tsconfig.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_fallback_example_typescript/utils_typescript.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_split_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/agentic_split_orchestrator_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/arch/ORDER_MANAGEMENT_PRD.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/arch/architecture.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/arch/architecture_diagram.html +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/arch/tech_stack.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/checkup_review_loop_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/get_lint_commands_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/handpaint/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/handpaint/cursor/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/handpaint/cursor/handpaint.html +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/handpaint/pdd/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/handpaint/pdd/handpaint_html.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/handpaint/pdd/handpaint_pdd.html +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/hello/.pdd/meta/hello_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/hello/.pddrc +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/hello/examples/hello_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/hello/hello_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/hello/src/hello.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/hello/tests/test_hello.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/hello_you/hello_you_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/image_prompt_example/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/image_prompt_example/describe.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/image_prompt_example/describe_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/image_prompt_example/image.heic +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/image_prompt_example/image.jpeg +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/pi_calc/.pdd/meta/pi_calc_python.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/pi_calc/.pdd/meta/pi_calc_python_run.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/pi_calc/examples/pi_calc_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/pi_calc/examples/pi_calc_example_iteration_1.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/pi_calc/examples/pi_calc_example_iteration_2.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/pi_calc/pdd/pi_calc.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/pi_calc/pdd/pi_calc_1_2_2_0_20250715_122550.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/pi_calc/pdd/pi_calc_iteration_1.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/pi_calc/pdd/pi_calc_iteration_2.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/pi_calc/pi_calc_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/pi_calc/tests/test_pi_calc.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/.pddrc +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/Makefile +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/architecture.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/architecture_diagram.html +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/docs/specs.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/docs/tech_stack.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/examples/backend_api_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/examples/cli_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/examples/fix_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/examples/frontend_streamlit_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/examples/helpers_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/examples/llm_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/examples/models_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/examples/pipeline_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/examples/report_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/examples/report_output.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/examples/report_output.txt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/examples/rules_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/project_dependencies.csv +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/prompts/backend_api_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/prompts/cli_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/prompts/fix_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/prompts/frontend_streamlit_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/prompts/helpers_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/prompts/llm_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/prompts/models_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/prompts/pipeline_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/prompts/report_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/prompts/rules_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/requirements.txt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/src/backend/backend_api.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/src/cli/cli.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/src/frontend/frontend_streamlit.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/src/utils/fix.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/src/utils/helpers.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/src/utils/llm.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/src/utils/models.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/src/utils/pipeline.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/src/utils/report.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/src/utils/rules.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/tests/test_backend_api.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/tests/test_cli.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/tests/test_fix.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/tests/test_frontend_streamlit.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/tests/test_helpers.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/tests/test_llm.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/tests/test_models.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/tests/test_pipeline.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/tests/test_report.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/prompts_linter/tests/test_rules.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/qrcode_sandwich/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/qrcode_sandwich/qrcode_sandwich.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/qrcode_sandwich/qrcode_sandwich.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/qrcode_sandwich/qrcode_sandwich_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/split_main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/split_validation_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/.gitignore +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/.pddrc +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/API_FAILURE_ANALYSIS.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/API_KEY_SETUP.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/EDIT_FILE_TOOL_README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/Makefile +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/architecture.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/architecture_diagram.html +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/data/llm_model.csv +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/example2.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/project_dependencies.csv +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/prompts/__init___Python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/prompts/architecture/architecture_json.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/prompts/cache_manager_utility_Python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/prompts/cli_Python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/prompts/core_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/prompts/cost_tracker_utility_Python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/prompts/pyproject_TOML.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/prompts/think_tool_capability_Python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/pyproject.toml +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/edit_file_tool/__init__.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/edit_file_tool/cache_manager_utility.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/edit_file_tool/cli.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/edit_file_tool/core.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/edit_file_tool/cost_tracker_utility.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/edit_file_tool/think_tool_capability.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/examples/__init___example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/examples/cache_manager_utility_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/examples/cli_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/examples/core_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/examples/cost_tracker_utility_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/examples/generated_xml/example_mod.xml +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/examples/think_tool_capability_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/tests/test___init__.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/tests/test_cache_manager_utility.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/tests/test_cli.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/tests/test_core.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/tests/test_cost_tracker_utility.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/template_example/src/tests/test_think_tool_capability.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/test_generation_benchmark/ANALYSIS.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/test_generation_benchmark/DISCORD_SUMMARY.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/test_generation_benchmark/Makefile +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/test_generation_benchmark/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/test_generation_benchmark/benchmark_results/code_based/test_email_validator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/test_generation_benchmark/benchmark_results/example_based/test_email_validator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/test_generation_benchmark/email_validator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/test_generation_benchmark/examples/email_validator_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/test_generation_benchmark/src/email_validator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/tictactoe/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/tictactoe/tictactoe_architecture.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/tictactoe/tictactoe_architecture_diagram.html +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/examples/tictactoe/tictactoe_prd.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/__init__.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/__main__.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/_keyring_timeout.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_architecture.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_architecture_orchestrator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_bug.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_bug_orchestrator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_change.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_change_orchestrator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_checkup.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_checkup_orchestrator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_common.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_common_worktree.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_crash.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_e2e_fix.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_fix.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_langtest.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_split.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_split_orchestrator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_sync_runner.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_test.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_test_generate.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_test_orchestrator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/agentic_verify.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/api_key_scanner.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/architecture_sync_helper.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/auth_service.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/auto_deps_architecture.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/auto_deps_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/auto_include.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/auto_update.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/bug_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/bug_to_unit_test.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/change.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/change_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/ci_detect_changed_modules.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/ci_drift_heal.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/ci_validation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/cli.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/cli_detector.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/cmd_test_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/code_generator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/code_generator_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/commands/__init__.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/commands/analysis.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/commands/auth.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/commands/checkup.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/commands/connect.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/commands/extracts.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/commands/firecrawl.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/commands/fix.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/commands/maintenance.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/commands/misc.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/commands/modify.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/commands/report.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/commands/sessions.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/commands/templates.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/commands/utility.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/commands/which.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/comment_line.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/config_resolution.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/conflicts_in_prompts.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/conflicts_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/construct_paths.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/content_selector.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/context_generator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/context_generator_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/continue_generation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/core/__init__.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/core/cli.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/core/cloud.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/core/dump.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/core/duplicate_cli_guard.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/core/errors.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/core/llm_trace.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/core/remote_session.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/core/utils.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/crash_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/data/arena_elo_manifest.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/data/language_format.csv +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/data/llm_model.csv +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/detect_change.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/detect_change_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/docs/prompting_guide.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/durable_sync_runner.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/edit_file.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/embed_retrieve.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/extracts_prune.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/failure_classification.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/find_section.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/firecrawl_cache.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/fix_code_loop.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/fix_code_module_errors.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/fix_error_loop.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/fix_errors_from_unit_tests.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/fix_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/fix_verification_errors.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/fix_verification_errors_loop.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/fix_verification_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/.gitignore +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/App.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/api.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/AddModuleModal.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/AddToQueueModal.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/ArchitectureView.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/AuthStatusIndicator.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/BatchFilterDropdown.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/BugModal.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/ChangeModal.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/CommandForm.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/CommandOutput.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/CreatePromptModal.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/DependencyViewer.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/DeviceIndicator.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/ErrorBoundary.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/ExecutionModeToggle.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/ExtractsPanel.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/FileBrowser.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/FilePickerInput.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/GeneratedCommand.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/GenerationProgressModal.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/GraphToolbar.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/GroupEditModal.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/GroupNode.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/GuidanceSidebar.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/Header.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/Icon.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/InputField.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/JobCard.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/JobDashboard.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/JobOutputPanel.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/ModelSelector.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/ModelSliders.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/ModuleEditModal.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/ModuleNode.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/ProjectSettings.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/PromptCodeDiffModal.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/PromptEditor.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/PromptMetricsBar.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/PromptOrderModal.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/PromptSelector.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/PromptSpace.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/ReauthModal.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/RemoteSessionSelector.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/SyncFromPromptModal.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/SyncOptionsModal.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/SyncStatusBadge.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/Tabs.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/TaskQueueControls.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/TaskQueueItem.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/TaskQueuePanel.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/TextAreaField.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/Toast.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/components/Tooltip.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/constants.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/data/mockPrd.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/data/mockPrompts.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/hooks/useArchitectureHistory.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/hooks/useAudioNotification.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/hooks/useJobs.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/hooks/useTaskQueue.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/index.html +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/index.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/lib/batchUtils.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/lib/commandBuilder.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/lib/format.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/lib/includeAnalyzer.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/lib/modelResolver.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/lib/pddAutocomplete.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/lib/pddDirectives.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/metadata.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/package-lock.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/package.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/public/logo.svg +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/tests/compact-font-direct-zoom.test.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/tests/compact-font-size.test.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/tests/group-layout.test.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/tests/group-subflow-nodes.test.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/tests/module-needs-sync.test.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/tests/rearrange-discard.test.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/tests/rearrange-positions.test.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/tests/setup.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/tests/sync-completed-refresh.test.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/tests/vp-zoom-sync.test.tsx +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/tests/waypoint-edge.test.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/tsconfig.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/types.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/frontend/vite.config.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/generate_model_catalog.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/generate_output_paths.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/generate_test.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/generation_completion.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/get_comment.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/get_extension.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/get_jwt_token.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/get_language.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/get_lint_commands.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/get_run_command.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/get_test_command.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/git_update.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/include_query_extractor.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/increase_tests.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/incremental_code_generator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/incremental_prd_architecture.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/insert_includes.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/install_completion.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/json_atomic.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/list_drift_detection.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/llm_invoke.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/load_prompt_template.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/logo_animation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/mcp_config.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/metadata_sync.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/model_tester.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/one_session_sync.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/path_resolution.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/pdd_completion.fish +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/pdd_completion.sh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/pdd_completion.zsh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/pddrc_initializer.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/pin_example_hack.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/postprocess.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/postprocess_0.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/preprocess.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/preprocess_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/process_csv_change.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/Makefile_makefile.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/_keyring_timeout_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step10_completeness_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step11_sync_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step12_deps_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step13_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step1_analyze_prd_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step1b_complexity_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step2_analyze_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step2b_codebase_scan_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step3_research_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step4_data_model_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step5_design_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step5b_completeness_gate_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step5b_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step6_research_deps_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step7_generate_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step7b_review_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step8_5_context_docs_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step8_pddrc_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step9_prompts_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_arch_step9b_cross_audit_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_architecture_orchestrator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_architecture_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_bug_orchestrator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_bug_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_bug_step10_verify_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_bug_step11_e2e_test_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_bug_step12_pr_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_bug_step1_duplicate_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_bug_step2_docs_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_bug_step3_triage_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_bug_step4_api_research_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_bug_step5_reproduce_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_bug_step6_root_cause_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_bug_step7_prompt_classification_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_bug_step8_test_plan_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_bug_step9_generate_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_change_orchestrator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_change_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_change_step10_architecture_update_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_change_step11_identify_issues_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_change_step12_fix_issues_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_change_step13_create_pr_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_change_step1_duplicate_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_change_step2_docs_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_change_step3_research_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_change_step4_clarify_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_change_step5_docs_change_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_change_step6_devunits_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_change_step7_architecture_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_change_step8_analyze_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_change_step9_implement_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_checkup_orchestrator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_checkup_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_checkup_step1_discover_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_checkup_step2_deps_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_checkup_step3_build_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_checkup_step4_interfaces_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_checkup_step5_test_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_checkup_step6_1_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_checkup_step6_2_regression_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_checkup_step6_3_e2e_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_checkup_step7_verify_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_checkup_step8_create_pr_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_common_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_common_worktree_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_crash_explore_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_crash_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_e2e_fix_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_e2e_fix_step10_ci_validation_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_e2e_fix_step11_code_cleanup_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_e2e_fix_step1_unit_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_e2e_fix_step2_e2e_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_e2e_fix_step3_root_cause_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_e2e_fix_step4_fix_e2e_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_e2e_fix_step5_identify_devunits_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_e2e_fix_step6_create_unit_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_e2e_fix_step7_verify_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_e2e_fix_step8_run_pdd_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_e2e_fix_step9_verify_all_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_fix_explore_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_fix_nonpython_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_fix_primary_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_fix_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_langtest_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_split_orchestrator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_split_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_split_step0_intent_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_split_step1_survey_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_split_step2_diagnose_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_split_step3_investigate_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_split_step4_propose_options_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_split_step6_extract_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_split_step6a_phase_extract_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_split_step7_assess_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_split_step8_repair_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_split_step9_refine_check_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_sync_fix_dry_run_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_sync_identify_modules_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_sync_runner_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_generate_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_generate_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_orchestrator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step10_validate_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step11_loop_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step15_plan_validation_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step16_run_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step1_duplicate_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step2_docs_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step3_clarify_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step4_detect_frontend_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step5_test_plan_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step5b_enhance_plan_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step6_coverage_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step6_generate_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step7_checklist_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step7_run_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step8_fix_iterate_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step8_manual_test_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step9_regression_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_test_step9_submit_pr_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_update_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_verify_explore_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/agentic_verify_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/api_key_scanner_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/arrange_graph_layout_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/auth_service_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/auto_deps_architecture_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/auto_deps_main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/auto_include_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/auto_include_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/auto_update_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/bug_main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/bug_to_unit_test_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/bug_to_unit_test_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/change_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/change_main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/change_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/ci_detect_changed_modules_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/ci_drift_heal_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/ci_validation_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/cli_detector_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/cli_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/cmd_test_main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/code_generator_main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/code_generator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/code_patcher_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/combine.sh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/combined_output.txt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/commands/__init___python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/commands/analysis_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/commands/auth_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/commands/checkup_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/commands/connect_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/commands/firecrawl_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/commands/fix_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/commands/maintenance_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/commands/misc_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/commands/modify_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/commands/report_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/commands/sessions_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/commands/templates_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/commands/utility_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/commands/which_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/comment_line_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/config_resolution_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/conflict_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/conflicts_in_prompts_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/conflicts_main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/construct_paths_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/content_selector_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/context_generator_main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/context_generator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/continue_generation_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/continue_generation_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/core/cli_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/core/cloud_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/core/dump_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/core/duplicate_cli_guard_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/core/errors_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/core/remote_session_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/core/utils_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/core_dump_requirements_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/core_dump_smoke_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/crash_main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/cross_issue_reconcile_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/detect_change_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/detect_change_main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/detect_change_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/diff_analyzer_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/durable_sync_runner_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/edit_file_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/embed_retrieve_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/example_generator_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/extract_code_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/extract_conflict_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/extract_detect_change_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/extract_program_code_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/extract_prompt_change_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/extract_prompt_split_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/extract_prompt_update_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/extract_promptline_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/extract_unit_code_fix_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/extract_xml_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/extracts_prune_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/failure_classification_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/find_section_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/find_verification_errors_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/firecrawl_cache_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/fix_code_loop_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/fix_code_module_errors_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/fix_code_module_errors_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/fix_error_loop_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/fix_errors_from_unit_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/fix_errors_from_unit_tests_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/fix_main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/fix_verification_errors_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/fix_verification_errors_loop_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/fix_verification_errors_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/fix_verification_main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/App_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/api_typescript.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/AddModuleModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/AddToQueueModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/ArchitectureView_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/AuthStatusIndicator_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/BatchFilterDropdown_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/BugModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/ChangeModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/CommandForm_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/CommandOutput_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/CreatePromptModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/DependencyViewer_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/DeviceIndicator_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/ErrorBoundary_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/ExecutionModeToggle_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/FileBrowser_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/FilePickerInput_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/GeneratedCommand_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/GenerationProgressModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/GraphToolbar_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/GuidanceSidebar_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/Header_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/Icon_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/InputField_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/JobCard_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/JobDashboard_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/JobOutputPanel_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/ModelSelector_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/ModelSliders_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/ModuleEditModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/ModuleNode_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/ProjectSettings_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/PromptCodeDiffModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/PromptEditor_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/PromptMetricsBar_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/PromptOrderModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/PromptSelector_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/PromptSpace_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/ReauthModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/RemoteSessionSelector_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/SyncFromPromptModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/SyncOptionsModal_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/SyncStatusBadge_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/Tabs_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/TaskQueueControls_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/TaskQueueItem_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/TaskQueuePanel_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/TextAreaField_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/Toast_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/components/Tooltip_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/constants_typescript.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/hooks/useArchitectureHistory_typescript.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/hooks/useAudioNotification_typescript.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/hooks/useJobs_typescript.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/hooks/useTaskQueue_typescript.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/index_typescriptreact.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/frontend/types_typescript.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/generate_model_catalog_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/generate_output_paths_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/generate_test_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/generate_test_from_example_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/generate_test_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/generation_completion_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/get_comment_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/get_extension_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/get_jwt_token_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/get_language_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/get_lint_commands_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/get_run_command_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/get_test_command_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/git_update_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/include_query_extractor_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/include_query_extractor_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/increase_tests_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/increase_tests_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/incremental_code_generator_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/incremental_prd_architecture_patch_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/incremental_prd_architecture_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/insert_includes_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/insert_includes_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/install_completion_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/language_format_csv.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/llm_invoke_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/llm_model_csv.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/load_prompt_template_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/logo_animation_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/main_gen_prompt.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/metadata_sync_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/model_tester_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/one_session_agent_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/one_session_sync_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/path_resolution_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/pdd_completion_bash.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/pdd_completion_fish.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/pdd_completion_zsh.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/pdd_theme_json.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/pddrc_initializer_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/pin_example_hack_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/post_gen_verify_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/postprocess_0_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/postprocess_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/preprocess_main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/preprocess_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/process_csv_change_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/prompt_code_diff_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/prompt_diff_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/prompt_tester_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/provider_manager_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/pypi_description_restructuredtext.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/pyproject_toml.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/pytest_output_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/python_env_detector_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/reasoning_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/regression_analysis_log.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/regression_bash.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/remote_session_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/render_mermaid_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/resurface_check_Python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/run_generated_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/__init___python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/app_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/click_executor_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/executor_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/jobs_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/models_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/routes/__init___python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/routes/architecture_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/routes/auth_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/routes/commands_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/routes/config_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/routes/extracts_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/routes/files_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/routes/prompts_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/routes/session_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/routes/websocket_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/security_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/terminal_spawner_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/server/token_counter_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/setup_tool_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/split_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/split_main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/split_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/split_validation_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/summarize_directory_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/summarize_file_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/sync_analysis_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/sync_animation_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/sync_determine_operation_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/sync_main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/sync_orchestration_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/sync_tui_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/template_expander_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/template_registry_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/trace_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/trace_main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/trace_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/track_cost_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/trim_results_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/trim_results_start_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/unfinished_prompt_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/unfinished_prompt_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/update_model_costs_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/update_prompt_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/update_prompt_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/user_story_tests_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/validate_prompt_includes_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/xml/change_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/xml/change_example_full.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/xml/change_example_partial.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/xml/change_example_partial_processed.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/xml/split_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/xml_convertor_LLM.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/prompts/xml_tagger_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/provider_manager.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/pytest_output.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/python_env_detector.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/reasoning.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/remote_session.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/render_mermaid.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/__init__.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/app.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/click_executor.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/executor.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/jobs.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/models.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/routes/__init__.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/routes/architecture.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/routes/auth.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/routes/commands.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/routes/config.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/routes/extracts.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/routes/files.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/routes/prompts.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/routes/websocket.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/security.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/terminal_spawner.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/server/token_counter.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/setup_tool.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/split.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/split_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/split_validation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/summarize_directory.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/sync_animation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/sync_determine_operation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/sync_graph_order_consistency.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/sync_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/sync_orchestration.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/sync_tui.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/template_expander.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/template_registry.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/templates/architecture/architecture_json.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/templates/architecture/example_nextjs_task_notes.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/templates/architecture/example_python_backend.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/templates/architecture/pdd_path_construction_guide.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/templates/generic/generate_pddrc_YAML.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/templates/generic/generate_prompt.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/test_result.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/trace.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/trace_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/track_cost.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/unfinished_prompt.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/update_model_costs.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/update_prompt.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/user_story_tests.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/validate_prompt_includes.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd/xml_tagger.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd-local.sh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd_cli.egg-info/dependency_links.txt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd_cli.egg-info/entry_points.txt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd_cli.egg-info/requires.txt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pdd_cli.egg-info/top_level.txt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pr_summary.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/project_dependencies.csv +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pypi_description.rst +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pyproject.toml +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pyrightconfig.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/pytest.ini +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/requirements.txt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/scripts/check_deps.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/scripts/ci_detect_changed_modules.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/scripts/copy_package_data_to_public.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/scripts/extract_wheel.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/scripts/preprocess_wheel.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/setup.cfg +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/__init__.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/cloud_regression.sh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/commands/__init__.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/commands/test_analysis.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/commands/test_auth.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/commands/test_checkup.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/commands/test_connect.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/commands/test_fix.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/commands/test_maintenance.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/commands/test_modify.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/commands/test_sessions.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/commands/test_utility.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/core/__init__.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/core/test_cli.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/core/test_cloud.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/core/test_remote_session.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/arch_include_validate_ok/architecture.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/arch_include_validate_ok/prompts/child_Python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/arch_include_validate_ok/prompts/parent_Python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/autoheal_1187_post.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/autoheal_1187_pre.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/conftest.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/encode_message_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/issue591_behavioral_signal_test.py.fixture +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/issue591_dockerfile_test.py.fixture +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/issue591_structural_getsource_test.py.fixture +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/one_session_eval/one_session_agent_LLM_original.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/one_session_eval/s7_large_code_bug/examples/llm_client_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/one_session_eval/s7_large_code_bug/prompts/llm_client_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/one_session_eval/s7_large_code_bug/scenario.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/one_session_eval/s7_large_code_bug/src/llm_client.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/one_session_eval/s7_large_code_bug/tests/test_llm_client.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/one_session_eval/s8_large_minimal_tests/examples/workflow_engine_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/one_session_eval/s8_large_minimal_tests/prompts/workflow_engine_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/one_session_eval/s8_large_minimal_tests/scenario.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/one_session_eval/s8_large_minimal_tests/src/workflow_engine.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/one_session_eval/s8_large_minimal_tests/tests/test_workflow_engine.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/one_session_eval/s9_large_wrong_tests/examples/config_manager_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/one_session_eval/s9_large_wrong_tests/prompts/config_manager_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/one_session_eval/s9_large_wrong_tests/scenario.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/one_session_eval/s9_large_wrong_tests/src/config_manager.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/one_session_eval/s9_large_wrong_tests/tests/test_config_manager.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/simple_math.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/simple_math_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/simple_math_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/sub_simple_math.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/test_other_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/test_simple_math.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/fixtures/updated_simple_math_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/isolated_verify.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/prompt_tester.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/regression.sh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/regression_public.sh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/__init__.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/conftest.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/routes/__init__.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/routes/conftest.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/routes/test_architecture.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/routes/test_auth.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/routes/test_commands.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/routes/test_config.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/routes/test_extracts.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/routes/test_files.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/routes/test_prompts.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/routes/test_routes_init.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/routes/test_websocket.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/test___init__.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/test_app.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/test_click_executor.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/test_executor.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/test_jobs.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/test_models.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/test_security.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/test_terminal_spawner.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/server/test_token_counter.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/sync_regression.sh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/sync_regression_parallel.sh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_739_complete.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_739_e2e_synthetic.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_739_fixtures.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_arch_complexity_prompt.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_architecture.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_architecture_orchestrator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_bug.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_bug_orchestrator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_bug_orchestrator_1.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_bug_orchestrator_step_comments.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_bug_step10_prompt.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_bug_step11_prompt.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_bug_step7_prompt.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_change.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_change_orchestrator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_checkup.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_checkup_orchestrator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_common.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_common_issue_813_anthropic_api_key_oauth_shadow.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_common_worktree.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_crash.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_e2e_fix.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_e2e_fix_orchestrator_resume_prompt.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_e2e_fix_step10_prompt.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_fix.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_langtest.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_split.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_split_orchestrator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_split_real.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_split_v2.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_sync_nearest_config.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_sync_runner.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_test.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_test_generate.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_test_orchestrator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_agentic_verify.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_api_key_scanner.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_architecture_include_validation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_architecture_registry.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_auth_service.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_auto_deps_architecture.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_auto_deps_entry_wipe.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_auto_deps_lock.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_auto_deps_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_auto_heal_workflow.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_auto_include.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_auto_update.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_bug_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_bug_to_unit_test.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_change.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_change_call_site_and_retry.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_change_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_checkup_pr_mode.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_ci_detect_changed_modules.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_ci_drift_heal.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_ci_validation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_circular_includes.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_cli.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_cli_binary_isolation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_cli_detector.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_cloud_noninteractive_auth.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_cmd_test_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_code_generator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_code_generator_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_code_patcher_prompt_json_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_commands_auth.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_commands_firecrawl.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_commands_fix.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_commands_generate.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_commands_maintenance.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_commands_modify.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_commands_templates.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_commands_utility.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_comment_line.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_conflicts_in_prompts.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_conflicts_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_construct_paths.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_content_selector.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_context_example_isolation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_context_generator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_context_generator_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_continue_generation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_copy_package_data_to_public.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_core_dump.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_core_errors.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_core_utils.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_crash_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_cross_step_consistency_prompts.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_detect_change.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_detect_change_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_discover_associated_documents.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_duplicate_cli_guard.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_durable_sync_runner.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_auto_deps_pipeline.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_bug_step9_verification.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_219_duplicate_includes.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_295_openai_schema.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_296_custom_csv.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_305_false_success.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_309_oauth_rate_limit.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_319_json_braces.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_340_report_core_no_default.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_342_syspath_isolation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_349_sys_modules_pollution.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_357_step9_keyerror.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_358_jwt_cache_null.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_364_cumulative_cost.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_373_step5_keyerror.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_375_malformed_json.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_379_auth_null_expires.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_383_commit_intermediate_files.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_399_ssh_url_message.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_419_cli_unpushed_commits.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_419_unpushed_commits.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_426_include_path_validation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_429_prompt_files_in_pr.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_445_worktree_resume.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_448_change_orchestrator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_448_step5_keyerror.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_449_auth_logout_message.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_467_false_cached_steps.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_468_not_a_bug_early_exit.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_469_cleanup_messages.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_469_duplicate_unresolved.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_470_sessions_cleanup_auth_message.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_481_pagination.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_485_warning_false_negative.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_493_update_output_subdir.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_508_budget_test_cost.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_508_sync_budget_tracking.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_509_retry_cost.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_521_circular_includes.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_522_include_fingerprint.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_545_no_changes_to_commit.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_549_format_double_escaping.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_549_other_orchestrators.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_553_circular_includes_non_recursive.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_557_codex_ndjson.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_566_code_fence_tags.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_579_bug_worktree_rerun.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_579_orchestrator_rerun.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_594_preamble_imports.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_604_handler_wiring.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_620_hallucinated_imports.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_626_nextjs_rendering_model.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_686_anthropic_cost_double_count.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_687_postprocess_model_name.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_737_step_completion_markers.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_745_initial_cost_tracking.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_773_hard_stop.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_791_e2e_timeout_retry.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_796_typescript_python_validation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_797_typescript_verification.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_817_step5_degenerate_cli.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_824_artifact_filtering.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_825_param_drop.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_830_workflow_stall.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_894.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_902_provider_fallback.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_issue_903_convergence.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_openai_required_array.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_pattern_verification.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_selective_includes.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_selective_includes_integration.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_step11_cleanup_revert.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_subprocess_issue_399_ssh_url_message.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_subprocess_issue_541_quiet_flag.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_e2e_subprocess_issue_593_bug_exit_code.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_embed_retrieve.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_example_error_detection.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_explicit_output_paths.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_extracts_prune.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_failure_classification.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_find_prompt_file.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_find_section.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_firecrawl_cache.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_fix_code_loop.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_fix_code_module_errors.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_fix_error_loop.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_fix_error_loop_failure_aware.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_fix_errors_from_unit_tests.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_fix_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_fix_main_issue_232.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_fix_verification_errors.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_fix_verification_errors_loop.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_fix_verification_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_generate_model_catalog.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_generate_output_paths.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_generate_output_paths_regression.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_generate_test.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_generation_completion.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_get_comment.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_get_extension.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_get_jwt_token.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_get_language.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_get_lint_commands.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_get_run_command.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_get_test_command.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_git_update.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_include_query_extractor.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_increase_tests.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_incremental_code_generator.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_incremental_prd_architecture.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_incremental_prd_architecture_real.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_insert_includes.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_install_completion.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_1021_reproduction.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_1049_reproduction.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_1240_generate_prompt_meta_framing.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_1272_cloud_timeout.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_225_paths_and_includes.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_237.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_467_all_orchestrators.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_469_duplicate_unresolved.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_592_failing_case.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_600_agentic_weaknesses.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_633_reproduction.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_686_post_process_args_braces.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_737_step_completion_markers.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_791_reproduction.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_794_anti_tdd_and_test_discovery.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_794_repro.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_830_remaining_fixes.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_865_reproduction.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_894_pytest_output_deadlock.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_902.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_902_prompt_sync.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_926_preserve_comments_directive.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_issue_953_directory_scan_regression.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_jobs_sync_failure_detection.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_list_drift_detection.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_llm_invoke.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_llm_invoke_csv_model_registration.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_llm_invoke_integration.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_llm_invoke_nested_schema.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_llm_invoke_retry_cost.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_llm_invoke_vertex_retry.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_load_prompt_template.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_logo_animation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_metadata_sync.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_mock_vs_production_fix.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_model_tester.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_nextjs_rendering_model.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_one_session_eval.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_one_session_sync.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_opencode_provider.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_operation_logging_e2e.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_path_resolution.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_pattern_completeness_verification.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_pddrc_initializer.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_pddrc_true_e2e.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_pin_example_hack.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_postprocess.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_postprocess_0.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_preprocess.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_preprocess_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_preprocess_main_pdd_tags.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_process_csv_change.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_prompt_contract_validation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_provider_env_isolation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_provider_manager.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_pytest_output.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_quiet_flag.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_reasoning.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_remote_command_completion.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_remote_session.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_render_mermaid.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_report.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_research_prompt_web_tools.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_server_routes_prompts.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_server_spawn.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_setup_tool.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_space_path_support.sh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_split.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_split_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_split_seam_resolution.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_split_validation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_step11_api_mocking_guidance.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_structural_test_guard.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_structural_test_guard_integration.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_summarize_directory.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_sync_animation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_sync_animation_0.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_sync_backward_compat.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_sync_code_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_sync_contract_matrix.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_sync_determine_operation.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_sync_graph_order_consistency.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_sync_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_sync_orchestration.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_sync_target_coverage_infinite_loop.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_sync_template_prompt_discovery.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_sync_tui.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_template_expander.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_template_registry.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_thread_safe_redirector.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_time_reasoning_effort_env.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_trace.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_trace_main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_track_cost.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_unfinished_prompt.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_update_command.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_update_model_costs.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_update_prompt.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_user_story_tests.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_version.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_which.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_xml_tagger.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/test_z3_prompt_test_correspondence.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/tests/validate_behavioral_test.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/user_stories/story__template.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/__init__.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/context/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/context/definitions_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/context/handlers_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/context/main_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/context/regenerate_test_files.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/context/runner_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/context/server_example.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/generate_prompt.sh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/generate_python.sh +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/pdd_mcp_server/__init__.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/pdd_mcp_server/main.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/pdd_mcp_server/server.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/pdd_mcp_server/tools/__init__.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/pdd_mcp_server/tools/api_key_check.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/pdd_mcp_server/tools/definitions.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/pdd_mcp_server/tools/handlers.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/pdd_mcp_server/tools/runner.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/prompts/README_md.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/prompts/definitions_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/prompts/generate_prompt.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/prompts/handlers_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/prompts/io_dependencies.csv +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/prompts/io_dependencies_csv.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/prompts/main_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/prompts/mcp_architecture.csv +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/prompts/mcp_architecture_csv.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/prompts/requirements_txt.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/prompts/runner_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/prompts/server_python.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/requirements.txt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/mcp/tests/test_mcp_client.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/run_generated.py +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/.gitignore +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/.vscode/launch.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/.vscodeignore +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/AGENTS.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/CHANGELOG.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/LICENSE.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/Makefile +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/README.md +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/examples/pddInstaller_example.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/images/icon.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/images/icon.svg +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/images/video-thumb.png +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/language-configuration.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/out/extension.js +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/out/extension.js.map +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/out/pddInstaller.js +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/out/pddInstaller.js.map +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/package-lock.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/package.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/prompts/extension_typescript.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/prompts/pddInstaller_typescript.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/prompts/prompt.tmLanguage_json.prompt +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/scripts/generate-video-thumb.mjs +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/scripts/render-icon.mjs +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/src/extension.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/src/pddInstaller.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/syntaxes/prompt.tmLanguage.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/tests/test_extension.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/tests/test_pddInstaller.ts +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/tsconfig.json +0 -0
- {pdd_cli-0.0.243 → pdd_cli-0.0.244}/utils/vscode_prompt/vsc-extension-quickstart.md +0 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pdd_version": "0.0.239",
|
|
3
|
+
"timestamp": "2026-05-18T17:51:01.000000+00:00",
|
|
4
|
+
"command": "test",
|
|
5
|
+
"prompt_hash": "adf10da24b68c65331eb614832ff3425e972dd2ae5e60eda4244f4b2483eb822",
|
|
6
|
+
"code_hash": "761a06fb3f05a5fc0666ba27e0a5eda1f8fd59b5040ee37d9892c607d97d70d1",
|
|
7
|
+
"example_hash": "3de20bfd0d4f8b22aabf1738f905d6bfa8873a7537be20eece44353b02c23c0a",
|
|
8
|
+
"test_hash": "4032f1210063a34c392d0fcb1f66438f39a9eda722f609fcf6e4b8f6b8605aa9",
|
|
9
|
+
"test_files": {
|
|
10
|
+
"test_agentic_e2e_fix_orchestrator.py": "4032f1210063a34c392d0fcb1f66438f39a9eda722f609fcf6e4b8f6b8605aa9"
|
|
11
|
+
},
|
|
12
|
+
"include_deps": {
|
|
13
|
+
"context/ci_validation_example.py": "06b910b216f68af58862e76712ccf82bae1bdf87f3fa95b043408fb079f45ce0",
|
|
14
|
+
"context/python_preamble.prompt": "0388ed131bf986f8752e1bc4c81e4da0460cfe2908ec8c60b1314edbab768254"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"timestamp": "2026-05-18T17:51:01+00:00",
|
|
3
|
+
"exit_code": 0,
|
|
4
|
+
"tests_passed": 354,
|
|
5
|
+
"tests_failed": 0,
|
|
6
|
+
"coverage": 90.0,
|
|
7
|
+
"test_hash": "4032f1210063a34c392d0fcb1f66438f39a9eda722f609fcf6e4b8f6b8605aa9",
|
|
8
|
+
"test_files": {
|
|
9
|
+
"test_agentic_e2e_fix_orchestrator.py": "4032f1210063a34c392d0fcb1f66438f39a9eda722f609fcf6e4b8f6b8605aa9"
|
|
10
|
+
}
|
|
11
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pdd_version": "0.0.233",
|
|
3
|
+
"timestamp": "2026-05-18T18:31:38.435880+00:00",
|
|
4
|
+
"command": "fix",
|
|
5
|
+
"prompt_hash": "13f0da74b87e3762232a46cced41431c1e272b74377bf8f5a707599ce7e555c5",
|
|
6
|
+
"code_hash": "781941ac33605196b6f559db9d6964115f29b9a821b040eb2e3e185527c3cb00",
|
|
7
|
+
"example_hash": "dafed5c5980cce43f16f6828ef45f76e3fdd4ee8a41d21e53cea846b2b6dca33",
|
|
8
|
+
"test_hash": "45d00c80b59d0037dbb148b706fe758a789fa9a5fce1129a675cee1b4dfc99bd",
|
|
9
|
+
"test_files": {
|
|
10
|
+
"test_agentic_update.py": "45d00c80b59d0037dbb148b706fe758a789fa9a5fce1129a675cee1b4dfc99bd"
|
|
11
|
+
},
|
|
12
|
+
"include_deps": {
|
|
13
|
+
"context/agentic_common_example.py": "113b5829cae3a9e38c362b74d5115ba09cab06c7be5831527d9829f97f7b3b7d",
|
|
14
|
+
"context/load_prompt_template_example.py": "a1cd6619182c6c951f5856dda4070e202875a5884bbfab9cc191d24de2f4951f",
|
|
15
|
+
"context/python_preamble.prompt": "0388ed131bf986f8752e1bc4c81e4da0460cfe2908ec8c60b1314edbab768254",
|
|
16
|
+
"pdd/agentic_common.py": "501dbc79b1ceef0e69ca4e7266a366660e134c20b47d671c8a9460e23c13dd8b",
|
|
17
|
+
"pdd/sync_order.py": "48f8afb825b97d406c850e0d2feb02092ee8f2a345d7767ef0e09bb68b0c71bb",
|
|
18
|
+
"prompts/agentic_update_LLM.prompt": "0fe3ff3c55d39cd68d3f4d1105e156a608c8668a27c3d81efea5289b2430ba17"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pdd_version": "0.0.233",
|
|
3
|
+
"timestamp": "2026-05-18T20:41:18.604230+00:00",
|
|
4
|
+
"command": "fix",
|
|
5
|
+
"prompt_hash": "41b905a730ae827bacf21ff1e7b90c6c0e8ca7434b00e2ad20cdeaf55b521ef7",
|
|
6
|
+
"code_hash": "fd07ab8da4af31865b8739ab5e3430db2ef98e00db1b986daa40807f824a8a1b",
|
|
7
|
+
"example_hash": "b318834c648f25e6141d81f3ecac1d9da592a6bb4740500983f2b07b8a10d902",
|
|
8
|
+
"test_hash": "41a5171b2dc10ff3de4655db5c39834bea7f176c1dbc0b82713633b5a52b00bc",
|
|
9
|
+
"test_files": {
|
|
10
|
+
"test_update_main.py": "41a5171b2dc10ff3de4655db5c39834bea7f176c1dbc0b82713633b5a52b00bc"
|
|
11
|
+
},
|
|
12
|
+
"include_deps": {
|
|
13
|
+
"context/agentic_common_example.py": "113b5829cae3a9e38c362b74d5115ba09cab06c7be5831527d9829f97f7b3b7d",
|
|
14
|
+
"context/agentic_update_example.py": "dafed5c5980cce43f16f6828ef45f76e3fdd4ee8a41d21e53cea846b2b6dca33",
|
|
15
|
+
"context/api_key_scanner_example.py": "4b9f880a30445f25edffc394857ae0c218097726c41ab996a03fcbc4350b5482",
|
|
16
|
+
"context/architecture_sync_example.py": "3dbf29b2f53c4ad341c5722e2778ce1c3ffde318e1b2c0161c343e28505c32fa",
|
|
17
|
+
"context/auto_include_example.py": "0c278ed716298149777bc7082827eb8aa6d80dac264c66b6cded6871232f2df7",
|
|
18
|
+
"context/construct_paths_example.py": "9fb88745a2a0e2834f9da30c2128a122fef4d5a74212ceacc5f9c3d9ddb9a8ca",
|
|
19
|
+
"context/ctx_obj_params.prompt": "829e2ab327e37b75afcd0dcf3893dcaec9012a89a1f6e5198ec7cfc0395d2782",
|
|
20
|
+
"context/git_update_example.py": "811304cee2cb890879ee68a816aed49dff2e7b50cfdca3125e16e0ae99819574",
|
|
21
|
+
"context/metadata_sync_example.py": "704453b3386724eef225b61c48f2fe922e1a973ac211c494e1d955dd44bcca11",
|
|
22
|
+
"context/operation_log_example.py": "2660def7012d9b79bad3db33cf399ac603cc1c35dff0b064cbdd2638a013de1d",
|
|
23
|
+
"context/python_preamble.prompt": "0388ed131bf986f8752e1bc4c81e4da0460cfe2908ec8c60b1314edbab768254",
|
|
24
|
+
"context/sync_determine_operation_example.py": "94a333b37d9875bcc9b39e22d4d00de1b196ad2f7e0fa997e6f638e153dbdfad",
|
|
25
|
+
"context/update_prompt_example.py": "56b9d8c7aa823c2996a3dc5741a47844e223bfd088366d74e48b6a099b5a11c4",
|
|
26
|
+
"pdd/validate_prompt_includes.py": "fa97b72a58534e255768634f928f4cfdd2130a7a4d8b296da3eefdf77d47855b"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -1704,6 +1704,7 @@ Where used:
|
|
|
1704
1704
|
- Dependency references: Examples serve as lightweight (token efficient) interface references for other prompts and can be included as dependencies of a generate target.
|
|
1705
1705
|
- Sanity checks: The example program is typically used as the runnable program for `crash` and `verify`, providing a quick end-to-end sanity check that the generated code runs and behaves as intended.
|
|
1706
1706
|
- Auto-deps integration: The `auto-deps` command can scan example files (e.g., `examples/**/*.py`) and insert relevant references into prompts. Based on each example’s content (imports, API usage, filenames), it identifies useful development units to include as dependencies.
|
|
1707
|
+
- Metadata finalization: A successful `pdd example` updates the affected module's fingerprint and clears its stale `.pdd/meta/<basename>_<language>_run.json` runtime-verification report, so a regenerated example never leaves runtime state describing the pre-mutation output.
|
|
1707
1708
|
|
|
1708
1709
|
**When to use**: Choose this command when creating reusable references that other prompts can efficiently import. This produces token-efficient examples that are easier to reuse across multiple prompts compared to including full implementations.
|
|
1709
1710
|
|
|
@@ -2410,7 +2411,7 @@ Options:
|
|
|
2410
2411
|
- `--git`: Use git history to find the original code file, eliminating the need for the `INPUT_CODE_FILE` argument.
|
|
2411
2412
|
- `--extensions EXTENSIONS`: In repository-wide mode, filter the update to only include files with the specified comma-separated extensions (e.g., `py,js,ts`).
|
|
2412
2413
|
- `--simple`: Use the legacy 2-stage LLM update process instead of the default agentic mode. Useful when agentic CLIs are not available or for faster updates.
|
|
2413
|
-
- `--sync-metadata`: After the prompt update, run the shared metadata-sync orchestrator so prompt PDD tags, `architecture.json` entries, run reports, and fingerprint state are reconciled in one step. Works in single-file, regeneration, and repo modes. **Fingerprint note:** default single-file/regeneration `pdd update <code>` already finalizes the per-target fingerprint (`.pdd/meta/<basename>_<language>.json`) on success, and logs a skip reason when finalization is intentionally bypassed; `--sync-metadata` does not gate that behavior. Without this flag, the broader prompt-tag/architecture/run-report orchestrator is not run and those layers must be reconciled with separate commands. **Scope note:** the `tags` stage currently *preserves* existing PDD tags and only *seeds* tags from the matching `architecture.json` entry when a prompt has none — LLM-first **refresh** of stale-but-present tags is tracked at issue [#870](https://github.com/promptdriven/pdd/issues/870) and is not invoked by this orchestrator. When a prompt has zero PDD tags AND no architecture entry, the `tags` stage reports `skipped` (never `ok`) so operators see honest status. On any stage `failed`, `pdd update --sync-metadata` exits non-zero so CI auto-heal does not treat a half-finalized update as healed.
|
|
2414
|
+
- `--sync-metadata`: After the prompt update, run the shared metadata-sync orchestrator so prompt PDD tags, `architecture.json` entries, run reports, and fingerprint state are reconciled in one step. Works in single-file, regeneration, and repo modes. **Fingerprint note:** default single-file/regeneration `pdd update <code>` already finalizes the per-target fingerprint (`.pdd/meta/<basename>_<language>.json`) on success, and logs a skip reason when finalization is intentionally bypassed; `--sync-metadata` does not gate that behavior. Default repo-mode `pdd update --repo` likewise finalizes per-pair fingerprints and, before writing each fingerprint, clears the affected module's stale `.pdd/meta/<basename>_<language>_run.json` runtime-verification report so metadata and runtime state stay in lock-step (clear failures are surfaced as non-fatal warnings, and if the stale `_run.json` still exists after the clear attempt the fingerprint write is skipped so a fresh fingerprint cannot coexist with stale runtime state — closing issue [#1057](https://github.com/promptdriven/pdd/issues/1057)). Without this flag, the broader prompt-tag/architecture/run-report orchestrator is not run and those layers must be reconciled with separate commands. **Scope note:** the `tags` stage currently *preserves* existing PDD tags and only *seeds* tags from the matching `architecture.json` entry when a prompt has none — LLM-first **refresh** of stale-but-present tags is tracked at issue [#870](https://github.com/promptdriven/pdd/issues/870) and is not invoked by this orchestrator. When a prompt has zero PDD tags AND no architecture entry, the `tags` stage reports `skipped` (never `ok`) so operators see honest status. On any stage `failed`, `pdd update --sync-metadata` exits non-zero so CI auto-heal does not treat a half-finalized update as healed.
|
|
2414
2415
|
|
|
2415
2416
|
Example (Metadata Sync):
|
|
2416
2417
|
```bash
|
|
@@ -449,7 +449,7 @@
|
|
|
449
449
|
}
|
|
450
450
|
},
|
|
451
451
|
{
|
|
452
|
-
"reason": "Daily Rising Stars resurface check
|
|
452
|
+
"reason": "Daily Rising Stars resurface check — Cloud Scheduler function scanning contribution thresholds to identify high-potential nurtured candidates and detect churned candidates",
|
|
453
453
|
"description": "Cloud Function entry point recruiting_resurface_check triggered by Cloud Scheduler (daily). Scans all recruiting/candidates with crmFunnelStage in ('nurture', 'contributing'). For each candidate, evaluates four resurface criteria from config thresholds: (1) merged_prs >= threshold (e.g., 3 merged PRs), (2) hackathon_score >= threshold (e.g., top 25%), (3) platform_usage_days >= threshold (power user), (4) marketplace_examples >= threshold (marketplace contributor). Candidates meeting any criterion are marked resurfaced=true with appropriate ResurfaceReason, CrmFunnelStage updated to 'resurfaced', and CRM GitHub Issue label updated from recruiting-nurture to recruiting-resurfaced. Also detects churned candidates: if last_activity_at > 60 days ago and no contributions, sets crmFunnelStage='churned' and updates CRM label to recruiting-churned. Verifies merged PR counts via GitHub API to prevent gaming. Logs all resurface and churn transitions. Returns summary counts.",
|
|
454
454
|
"dependencies": [],
|
|
455
455
|
"priority": 18,
|
|
@@ -1514,7 +1514,8 @@
|
|
|
1514
1514
|
"reason": "Coordinates agentic prompt updates through Claude, Gemini, Codex, or OpenCode CLIs.",
|
|
1515
1515
|
"description": "Coordinates repository-aware prompt update runs through external agentic CLIs and reports prompt/test changes.",
|
|
1516
1516
|
"dependencies": [
|
|
1517
|
-
"agentic_update_LLM.prompt"
|
|
1517
|
+
"agentic_update_LLM.prompt",
|
|
1518
|
+
"sync_order_python.prompt"
|
|
1518
1519
|
],
|
|
1519
1520
|
"priority": 43,
|
|
1520
1521
|
"filename": "agentic_update_python.prompt",
|
|
@@ -1944,7 +1945,7 @@
|
|
|
1944
1945
|
},
|
|
1945
1946
|
{
|
|
1946
1947
|
"reason": "CLI entry point for the code generator command.",
|
|
1947
|
-
"description": "Command-line interface for code generator. Parses arguments, orchestrates the workflow, and formats output. Raises structured ArchitectureConformanceError failures with output/expected/found/missing fields plus failed-attempt total_cost/model_name (constructor accepts an optional repair_directive override for the <pdd-interface> signature check whose source of truth is the prompt, not architecture.json), and injects a non-empty PDD_REPAIR_DIRECTIVE into the generation prompt inside an <architecture_repair_directive> block so sync retry attempts receive concrete missing-export instructions. Architecture conformance now also enforces the prompt's <pdd-interface> signature across module/cli/command interface types in three categories: (1) missing function/method
|
|
1948
|
+
"description": "Command-line interface for code generator. Parses arguments, orchestrates the workflow, and formats output. Raises structured ArchitectureConformanceError failures with output/expected/found/missing fields plus failed-attempt total_cost/model_name (constructor accepts an optional repair_directive override for the <pdd-interface> signature check whose source of truth is the prompt, not architecture.json), and injects a non-empty PDD_REPAIR_DIRECTIVE into the generation prompt inside an <architecture_repair_directive> block so sync retry attempts receive concrete missing-export instructions. Architecture conformance now also enforces the prompt's <pdd-interface> signature across module/cli/command interface types in three categories: (1) missing function/method — declared callables (including dotted methods like ContentSelector.select) absent from the generated code surface as bare names in missing_symbols; (2) missing parameter — declared parameter names absent from a matching function/method signature surface as dotted funcname.paramname entries; (3) signature drift — annotation drift is conservative (raises only when both sides specify and differ) while default drift is strict (raises when the prompt declares a default and the generated code drops or changes it, since callers omitting an optional kwarg would otherwise break with TypeError). Each category emits a distinct error sentence so the agentic_sync_runner repair loop can build a targeted directive (add missing function/method, add missing parameter, or update parameter to match the prompt's annotation/default).",
|
|
1948
1949
|
"dependencies": [
|
|
1949
1950
|
"auto_include_python.prompt",
|
|
1950
1951
|
"agentic_langtest_python.prompt",
|
|
@@ -5421,6 +5422,12 @@
|
|
|
5421
5422
|
"interface": {
|
|
5422
5423
|
"type": "module",
|
|
5423
5424
|
"module": {
|
|
5425
|
+
"constants": [
|
|
5426
|
+
{
|
|
5427
|
+
"name": "BUNDLED_SAMPLE_TOPLEVEL_DIRS",
|
|
5428
|
+
"type": "FrozenSet[str]"
|
|
5429
|
+
}
|
|
5430
|
+
],
|
|
5424
5431
|
"functions": [
|
|
5425
5432
|
{
|
|
5426
5433
|
"name": "extract_modules",
|
|
@@ -5454,7 +5461,7 @@
|
|
|
5454
5461
|
},
|
|
5455
5462
|
{
|
|
5456
5463
|
"name": "find_architecture_for_project",
|
|
5457
|
-
"signature": "(project_root: Path)",
|
|
5464
|
+
"signature": "(project_root: Path, *, skip_bundled_sample_arch: bool = True)",
|
|
5458
5465
|
"returns": "List[Path]"
|
|
5459
5466
|
},
|
|
5460
5467
|
{
|
|
@@ -5469,7 +5476,7 @@
|
|
|
5469
5476
|
},
|
|
5470
5477
|
{
|
|
5471
5478
|
"name": "load_combined_architecture_data",
|
|
5472
|
-
"signature": "(project_root: Path)",
|
|
5479
|
+
"signature": "(project_root: Path, *, skip_bundled_sample_arch: bool = True)",
|
|
5473
5480
|
"returns": "Tuple[Optional[List[Dict[str, Any]]], Path]"
|
|
5474
5481
|
},
|
|
5475
5482
|
{
|
|
@@ -5785,7 +5792,7 @@
|
|
|
5785
5792
|
},
|
|
5786
5793
|
{
|
|
5787
5794
|
"reason": "Orchestrates the 13-step agentic change workflow for implementing GitHub issues.",
|
|
5788
|
-
"description": "Orchestrates the 13-step agentic change workflow. Includes Step 8.5 (pre-flight drift heal)
|
|
5795
|
+
"description": "Orchestrates the 13-step agentic change workflow. Includes Step 8.5 (pre-flight drift heal) — detects prompts whose code has drifted and runs `pdd update` per module inside the worktree before Step 9 rewrites the prompts. Includes Step 10.5 (doc-sync contract verifier) — before Step 10, calls pdd.sync_order.discover_associated_documents to populate the LLM's associated_documents context, using the authoritative changed-file set so Step 9's worktree fallback path cannot bypass discovery when FILES_* markers are missing; after Step 10, enforces that every discovered doc appears in exactly one of ASSOCIATED_DOCS_MODIFIED / ASSOCIATED_DOCS_CONFLICTS / ASSOCIATED_DOCS_UNCHANGED. Silent drops and bucket overlaps are appended as ORCHESTRATOR_POSTCHECK_WARNINGS and routed to Step 11 via step10_output; PDD_STRICT_DOC_SYNC=1 turns violations into hard workflow aborts (issue #739).",
|
|
5789
5796
|
"dependencies": [
|
|
5790
5797
|
"architecture_sync_python.prompt",
|
|
5791
5798
|
"agentic_common_python.prompt"
|
|
@@ -6183,7 +6190,7 @@
|
|
|
6183
6190
|
"functions": [
|
|
6184
6191
|
{
|
|
6185
6192
|
"name": "run_agentic_e2e_fix_orchestrator",
|
|
6186
|
-
"signature": "(issue_url, issue_content, repo_owner, repo_name, issue_number, issue_author, issue_title, *, cwd, timeout_adder, max_cycles, resume, verbose, quiet, use_github_state, protect_tests, ci_retries=3, skip_ci=False, skip_cleanup=False, reasoning_time=None)",
|
|
6193
|
+
"signature": "(issue_url, issue_content, repo_owner, repo_name, issue_number, issue_author, issue_title, *, cwd, timeout_adder=0.0, max_cycles=5, resume=True, verbose=False, quiet=False, use_github_state=True, protect_tests=False, ci_retries=3, skip_ci=False, skip_cleanup=False, reasoning_time=None)",
|
|
6187
6194
|
"returns": "Tuple[bool, str, float, str, List[str]]"
|
|
6188
6195
|
},
|
|
6189
6196
|
{
|
|
@@ -6890,12 +6897,12 @@
|
|
|
6890
6897
|
},
|
|
6891
6898
|
{
|
|
6892
6899
|
"name": "sync_all_prompts_to_architecture",
|
|
6893
|
-
"signature": "(prompts_dir: Path, architecture_path: Path, dry_run: bool) -> Dict[str, Any]",
|
|
6894
|
-
"returns": "Dict with keys: success, updated_count, skipped_count, results, errors"
|
|
6900
|
+
"signature": "(prompts_dir: Path = PROMPTS_DIR, architecture_path: Path = ARCHITECTURE_JSON_PATH, dry_run: bool = False, only_files: Optional[set] = None) -> Dict[str, Any]",
|
|
6901
|
+
"returns": "Dict with keys: success, updated_count, skipped_count, results, errors, registered"
|
|
6895
6902
|
},
|
|
6896
6903
|
{
|
|
6897
6904
|
"name": "validate_dependencies",
|
|
6898
|
-
"signature": "(dependencies: List[str], prompts_dir: Path) -> Dict[str, Any]",
|
|
6905
|
+
"signature": "(dependencies: List[str], prompts_dir: Path = PROMPTS_DIR) -> Dict[str, Any]",
|
|
6899
6906
|
"returns": "Dict with keys: valid, missing, duplicates"
|
|
6900
6907
|
},
|
|
6901
6908
|
{
|
|
@@ -6905,7 +6912,7 @@
|
|
|
6905
6912
|
},
|
|
6906
6913
|
{
|
|
6907
6914
|
"name": "get_architecture_entry_for_prompt",
|
|
6908
|
-
"signature": "(prompt_filename: str, architecture_path: Path) -> Optional[Dict[str, Any]]",
|
|
6915
|
+
"signature": "(prompt_filename: str, architecture_path: Path = ARCHITECTURE_JSON_PATH) -> Optional[Dict[str, Any]]",
|
|
6909
6916
|
"returns": "Architecture entry dict or None"
|
|
6910
6917
|
},
|
|
6911
6918
|
{
|
|
@@ -6917,6 +6924,16 @@
|
|
|
6917
6924
|
"name": "generate_tags_from_architecture",
|
|
6918
6925
|
"signature": "(arch_entry: Dict[str, Any]) -> str",
|
|
6919
6926
|
"returns": "XML tags string ready to prepend to prompt"
|
|
6927
|
+
},
|
|
6928
|
+
{
|
|
6929
|
+
"name": "normalize_architecture_filenames",
|
|
6930
|
+
"signature": "(arch_data: List[Dict[str, Any]]) -> None",
|
|
6931
|
+
"returns": "None (mutates arch_data in place)"
|
|
6932
|
+
},
|
|
6933
|
+
{
|
|
6934
|
+
"name": "register_untracked_prompts",
|
|
6935
|
+
"signature": "(prompts_dir: Path = PROMPTS_DIR, architecture_path: Path = ARCHITECTURE_JSON_PATH, dry_run: bool = False, only_files: Optional[set] = None) -> Dict[str, Any]",
|
|
6936
|
+
"returns": "Dict with keys: registered, skipped, errors"
|
|
6920
6937
|
}
|
|
6921
6938
|
]
|
|
6922
6939
|
}
|
|
@@ -7249,7 +7266,7 @@
|
|
|
7249
7266
|
},
|
|
7250
7267
|
{
|
|
7251
7268
|
"reason": "Global and GitHub issue-driven module identification plus parallel sync orchestration.",
|
|
7252
|
-
"description": "Entry point for no-argument global sync and agentic issue sync. Global sync scans architecture.json for stale/missing modules and dispatches AsyncSyncRunner in dependency order; issue sync parses a GitHub issue URL, identifies modules, validates dependencies, and dispatches AsyncSyncRunner
|
|
7269
|
+
"description": "Entry point for no-argument global sync and agentic issue sync. Global sync scans architecture.json for stale/missing modules and dispatches AsyncSyncRunner in dependency order; issue sync parses a GitHub issue URL, identifies modules, validates dependencies, and dispatches AsyncSyncRunner — or DurableSyncRunner when invoked with durable=True. Issue sync uses build_dep_graph_from_architecture_data against in-memory combined architecture so nested-architecture edges are preserved (Phase 0 of #1328).",
|
|
7253
7270
|
"dependencies": [
|
|
7254
7271
|
"architecture_sync_python.prompt",
|
|
7255
7272
|
"auto_deps_main_python.prompt",
|
|
@@ -7411,7 +7428,7 @@
|
|
|
7411
7428
|
}
|
|
7412
7429
|
},
|
|
7413
7430
|
{
|
|
7414
|
-
"reason": "Entry point for the agentic checkup workflow
|
|
7431
|
+
"reason": "Entry point for the agentic checkup workflow — fetches GitHub issue, loads project context, and dispatches to the checkup orchestrator or PR review-loop.",
|
|
7415
7432
|
"description": "Accepts a GitHub issue URL, fetches issue content and comments, loads architecture.json and .pddrc, then invokes either the multi-step checkup orchestrator or the PR-mode primary-reviewer/fixer review loop. PR review-loop context is bounded and includes PR body, changed files, comments, and submitted reviews.",
|
|
7416
7433
|
"dependencies": [
|
|
7417
7434
|
"agentic_common_python.prompt",
|
|
@@ -7484,7 +7501,8 @@
|
|
|
7484
7501
|
"agentic_common_python.prompt",
|
|
7485
7502
|
"agentic_change_python.prompt",
|
|
7486
7503
|
"agentic_checkup_orchestrator_python.prompt",
|
|
7487
|
-
"agentic_e2e_fix_orchestrator_python.prompt"
|
|
7504
|
+
"agentic_e2e_fix_orchestrator_python.prompt",
|
|
7505
|
+
"architecture_registry_python.prompt"
|
|
7488
7506
|
],
|
|
7489
7507
|
"priority": 217.5,
|
|
7490
7508
|
"filename": "checkup_review_loop_python.prompt",
|
|
@@ -7577,7 +7595,7 @@
|
|
|
7577
7595
|
}
|
|
7578
7596
|
},
|
|
7579
7597
|
{
|
|
7580
|
-
"reason": "Multi-step orchestrator for pdd checkup
|
|
7598
|
+
"reason": "Multi-step orchestrator for pdd checkup — 8 steps with iterative fix-verify loop and worktree isolation.",
|
|
7581
7599
|
"description": "Orchestrates the 8-step agentic checkup workflow: discover, deps, build, interfaces, test, fix (6.1/6.2/6.3), verify, create PR. Steps 3-7 run in an iterative while loop (max 3 iterations) with exit on 'All Issues Fixed'. Supports resume via workflow state persistence, git worktree isolation, and --no-fix mode.",
|
|
7582
7600
|
"dependencies": [],
|
|
7583
7601
|
"priority": 218,
|
|
@@ -7634,7 +7652,7 @@
|
|
|
7634
7652
|
},
|
|
7635
7653
|
{
|
|
7636
7654
|
"reason": "Agentic instruction for assigning logical graph positions to modules in an\narchitecture file. The agent reads the file and an optional PRD/README, reasons about the\nlogical structure of the system, groups modules into functional swimlanes, and writes the\nupdated file in-place so pdd connect shows a graph that makes the architecture easy to\nunderstand at a glance.",
|
|
7637
|
-
"description": "Takes {project_root} and {architecture_path} as inputs. Agent reads the architecture file and any PRD/README. Reasons about functional groupings, pipeline stages, and dependency relationships. Places modules in swimlane columns (one per major functional area, shared/hub modules in center). Dependency depth drives y-axis (depth
|
|
7655
|
+
"description": "Takes {project_root} and {architecture_path} as inputs. Agent reads the architecture file and any PRD/README. Reasons about functional groupings, pipeline stages, and dependency relationships. Places modules in swimlane columns (one per major functional area, shared/hub modules in center). Dependency depth drives y-axis (depth × 500px). Writes updated file in-place with position: {x, y} on every module. Outputs a one-line summary.",
|
|
7638
7656
|
"dependencies": [],
|
|
7639
7657
|
"priority": 219,
|
|
7640
7658
|
"filename": "arrange_graph_layout_LLM.prompt",
|
|
@@ -8791,4 +8809,4 @@
|
|
|
8791
8809
|
"y": 800
|
|
8792
8810
|
}
|
|
8793
8811
|
}
|
|
8794
|
-
]
|
|
8812
|
+
]
|
|
@@ -97,17 +97,6 @@ def demonstrate_state_management():
|
|
|
97
97
|
"test": Path("tests/test_calculator.py"),
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
-
# Save fingerprint after successful operation
|
|
101
|
-
save_fingerprint(
|
|
102
|
-
basename=basename,
|
|
103
|
-
language=language,
|
|
104
|
-
operation="generate",
|
|
105
|
-
paths=paths,
|
|
106
|
-
cost=0.192,
|
|
107
|
-
model="gemini/gemini-3-pro-preview",
|
|
108
|
-
)
|
|
109
|
-
print("Saved fingerprint")
|
|
110
|
-
|
|
111
100
|
# Save run report after test execution
|
|
112
101
|
run_report = {
|
|
113
102
|
"tests_passed": 10,
|
|
@@ -117,9 +106,35 @@ def demonstrate_state_management():
|
|
|
117
106
|
save_run_report(basename, language, run_report)
|
|
118
107
|
print("Saved run report")
|
|
119
108
|
|
|
120
|
-
#
|
|
121
|
-
|
|
122
|
-
|
|
109
|
+
# After a successful regeneration that mutates code/tests/etc., invalidate
|
|
110
|
+
# the stale runtime-verification report BEFORE writing the fresh
|
|
111
|
+
# fingerprint. Required ordering (issue #1057): clear_run_report() then
|
|
112
|
+
# save_fingerprint(). If clear_run_report fails or the stale _run.json
|
|
113
|
+
# still exists afterward, skip save_fingerprint() so a fresh fingerprint
|
|
114
|
+
# never coexists with stale runtime state.
|
|
115
|
+
from pdd.operation_log import get_run_report_path
|
|
116
|
+
|
|
117
|
+
try:
|
|
118
|
+
clear_run_report(basename, language)
|
|
119
|
+
print("Cleared run report")
|
|
120
|
+
except Exception as exc: # noqa: BLE001 - non-fatal cleanup warning
|
|
121
|
+
print(f"WARN: clear_run_report failed: {exc}")
|
|
122
|
+
|
|
123
|
+
if get_run_report_path(basename, language).exists():
|
|
124
|
+
print(
|
|
125
|
+
"WARN: stale run report still present; skipping save_fingerprint "
|
|
126
|
+
"to avoid partial-sync state (issue #1057)"
|
|
127
|
+
)
|
|
128
|
+
else:
|
|
129
|
+
save_fingerprint(
|
|
130
|
+
basename=basename,
|
|
131
|
+
language=language,
|
|
132
|
+
operation="generate",
|
|
133
|
+
paths=paths,
|
|
134
|
+
cost=0.192,
|
|
135
|
+
model="gemini/gemini-3-pro-preview",
|
|
136
|
+
)
|
|
137
|
+
print("Saved fingerprint")
|
|
123
138
|
|
|
124
139
|
|
|
125
140
|
# Example CLI command using the @log_operation decorator
|
|
@@ -133,10 +148,13 @@ def generate(prompt_file: str, output: Optional[str]) -> Tuple[str, float, str]:
|
|
|
133
148
|
|
|
134
149
|
The decorator automatically:
|
|
135
150
|
1. Infers module identity from prompt_file
|
|
136
|
-
2.
|
|
137
|
-
3.
|
|
138
|
-
4.
|
|
139
|
-
5.
|
|
151
|
+
2. Creates initial log entry
|
|
152
|
+
3. Executes the wrapped function
|
|
153
|
+
4. Updates log entry with results
|
|
154
|
+
5. On success only: clears stale run report (clears_run_report=True)
|
|
155
|
+
and verifies deletion before saving fingerprint, so a failed command
|
|
156
|
+
never erases existing runtime verification state and a fresh fingerprint
|
|
157
|
+
cannot coexist with a stale run report (issue #1057)
|
|
140
158
|
6. Saves fingerprint on success (updates_fingerprint=True)
|
|
141
159
|
"""
|
|
142
160
|
# Simulate generation
|
|
@@ -36,3 +36,20 @@ Warning: examples/prompts_linter/architecture.json: architecture.json / <include
|
|
|
36
36
|
CI runs `pdd checkup --validate-arch-includes` against the repo plus a small aligned
|
|
37
37
|
fixture under `tests/fixtures/arch_include_validate_ok/` so the step fails if the
|
|
38
38
|
command or validation logic regresses.
|
|
39
|
+
|
|
40
|
+
## Discovery-layer skip (used by sync and related tooling)
|
|
41
|
+
|
|
42
|
+
`pdd.architecture_registry.find_architecture_for_project` applies the same
|
|
43
|
+
bundled-sample skip by default: top-level `examples/`, `example_project/`,
|
|
44
|
+
`example_workspace/`, and `staging/` trees are excluded so a root-level
|
|
45
|
+
`pdd sync` (and other discovery-driven tooling such as `metadata_sync` and
|
|
46
|
+
`auto_deps_architecture`) does not flatten sample modules into the project's
|
|
47
|
+
own `architecture.json` (issue #1060). Real nested architecture files under
|
|
48
|
+
other top-level names (`services/`, `apps/`, `packages/`, `libs/`, `frontend/`,
|
|
49
|
+
`backend/`, etc.) are still discovered.
|
|
50
|
+
|
|
51
|
+
If your monorepo intentionally uses one of the four sample names for production
|
|
52
|
+
modules, opt back in by passing `skip_bundled_sample_arch=False` to the
|
|
53
|
+
discovery helper, or run the validator with `pdd checkup --validate-arch-includes
|
|
54
|
+
--strict`. The skip is a no-op when the project root is itself a bundled-example
|
|
55
|
+
directory, so scans started inside one of those trees continue to work.
|
|
@@ -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.244'
|
|
22
|
+
__version_tuple__ = version_tuple = (0, 0, 244)
|
|
23
23
|
|
|
24
|
-
__commit_id__ = commit_id = '
|
|
24
|
+
__commit_id__ = commit_id = 'gf449cc0d0'
|