pdd-cli 0.0.253__tar.gz → 0.0.255__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.
Files changed (2043) hide show
  1. pdd_cli-0.0.255/.gitignore +309 -0
  2. pdd_cli-0.0.255/.pdd/meta/llm_invoke_python.json +11 -0
  3. pdd_cli-0.0.255/.pdd/meta/sync_determine_operation_python.json +11 -0
  4. pdd_cli-0.0.255/PKG-INFO +342 -0
  5. pdd_cli-0.0.255/README.md +3787 -0
  6. pdd_cli-0.0.255/architecture.json +9654 -0
  7. pdd_cli-0.0.255/ci/cloud-batch/balance-chunks.py +562 -0
  8. pdd_cli-0.0.255/ci/cloud-batch/entrypoint.sh +458 -0
  9. pdd_cli-0.0.255/context/fix_error_loop_example.py +145 -0
  10. pdd_cli-0.0.255/context/llm_invoke_example.py +96 -0
  11. pdd_cli-0.0.255/context/sync_determine_operation_example.py +75 -0
  12. pdd_cli-0.0.255/context/test.prompt +351 -0
  13. pdd_cli-0.0.255/docs/checkup_simplify.md +123 -0
  14. pdd_cli-0.0.255/docs/checkup_simplify_providers.md +54 -0
  15. pdd_cli-0.0.255/docs/drift.md +50 -0
  16. pdd_cli-0.0.255/docs/issue_820_user_story_template.md +27 -0
  17. pdd_cli-0.0.255/docs/prompting_guide.md +1821 -0
  18. pdd_cli-0.0.255/docs/skills/checkup-simplify/SKILL.md +42 -0
  19. pdd_cli-0.0.255/examples/checkup_simplify_example.py +90 -0
  20. pdd_cli-0.0.255/examples/prompts_linter/.pddrc +42 -0
  21. pdd_cli-0.0.255/examples/prompts_linter/README.md +446 -0
  22. pdd_cli-0.0.255/examples/template_example/data/llm_model.csv +18 -0
  23. pdd_cli-0.0.255/pdd/_version.py +24 -0
  24. pdd_cli-0.0.255/pdd/agentic_checkup_orchestrator.py +4424 -0
  25. pdd_cli-0.0.255/pdd/agentic_common.py +4909 -0
  26. pdd_cli-0.0.255/pdd/checkup_file_selection.py +259 -0
  27. pdd_cli-0.0.255/pdd/checkup_gates.py +3227 -0
  28. pdd_cli-0.0.255/pdd/checkup_review_loop.py +7413 -0
  29. pdd_cli-0.0.255/pdd/checkup_simplify.py +960 -0
  30. pdd_cli-0.0.255/pdd/checkup_simplify_claude.py +149 -0
  31. pdd_cli-0.0.255/pdd/checkup_simplify_engines.py +201 -0
  32. pdd_cli-0.0.255/pdd/commands/checkup.py +654 -0
  33. pdd_cli-0.0.255/pdd/commands/checkup_simplify.py +122 -0
  34. pdd_cli-0.0.255/pdd/commands/drift.py +109 -0
  35. pdd_cli-0.0.255/pdd/construct_paths.py +1645 -0
  36. pdd_cli-0.0.255/pdd/data/llm_model.csv +137 -0
  37. pdd_cli-0.0.255/pdd/drift_main.py +766 -0
  38. pdd_cli-0.0.255/pdd/evidence_store.py +160 -0
  39. pdd_cli-0.0.255/pdd/fix_error_loop.py +1086 -0
  40. pdd_cli-0.0.255/pdd/frontend/api.ts +1443 -0
  41. pdd_cli-0.0.255/pdd/frontend/components/PromptMetricsBar.tsx +388 -0
  42. pdd_cli-0.0.255/pdd/frontend/components/PromptSpace.tsx +2113 -0
  43. pdd_cli-0.0.255/pdd/frontend/lib/modelResolver.ts +51 -0
  44. pdd_cli-0.0.255/pdd/generate_model_catalog.py +1655 -0
  45. pdd_cli-0.0.255/pdd/llm_invoke.py +5189 -0
  46. pdd_cli-0.0.255/pdd/pdd_completion.fish +197 -0
  47. pdd_cli-0.0.255/pdd/pdd_completion.sh +197 -0
  48. pdd_cli-0.0.255/pdd/pdd_completion.zsh +626 -0
  49. pdd_cli-0.0.255/pdd/prompts/agentic_checkup_orchestrator_python.prompt +98 -0
  50. pdd_cli-0.0.255/pdd/prompts/agentic_checkup_step5_test_LLM.prompt +149 -0
  51. pdd_cli-0.0.255/pdd/prompts/agentic_checkup_step6_1_fix_LLM.prompt +158 -0
  52. pdd_cli-0.0.255/pdd/prompts/agentic_common_python.prompt +226 -0
  53. pdd_cli-0.0.255/pdd/prompts/agentic_test_generate_LLM.prompt +102 -0
  54. pdd_cli-0.0.255/pdd/prompts/checkup_file_selection_python.prompt +19 -0
  55. pdd_cli-0.0.255/pdd/prompts/checkup_gates_python.prompt +103 -0
  56. pdd_cli-0.0.255/pdd/prompts/checkup_review_loop_python.prompt +272 -0
  57. pdd_cli-0.0.255/pdd/prompts/checkup_simplify_claude_python.prompt +13 -0
  58. pdd_cli-0.0.255/pdd/prompts/checkup_simplify_engines_python.prompt +15 -0
  59. pdd_cli-0.0.255/pdd/prompts/checkup_simplify_invoke_claude_code_LLM.prompt +14 -0
  60. pdd_cli-0.0.255/pdd/prompts/checkup_simplify_invoke_codex_LLM.prompt +31 -0
  61. pdd_cli-0.0.255/pdd/prompts/checkup_simplify_invoke_gemini_LLM.prompt +34 -0
  62. pdd_cli-0.0.255/pdd/prompts/checkup_simplify_invoke_opencode_LLM.prompt +28 -0
  63. pdd_cli-0.0.255/pdd/prompts/checkup_simplify_python.prompt +45 -0
  64. pdd_cli-0.0.255/pdd/prompts/checkup_simplify_workflow_LLM.prompt +38 -0
  65. pdd_cli-0.0.255/pdd/prompts/commands/checkup_python.prompt +91 -0
  66. pdd_cli-0.0.255/pdd/prompts/commands/checkup_simplify_python.prompt +15 -0
  67. pdd_cli-0.0.255/pdd/prompts/construct_paths_python.prompt +183 -0
  68. pdd_cli-0.0.255/pdd/prompts/fix_error_loop_python.prompt +161 -0
  69. pdd_cli-0.0.255/pdd/prompts/generate_model_catalog_python.prompt +74 -0
  70. pdd_cli-0.0.255/pdd/prompts/generate_test_LLM.prompt +144 -0
  71. pdd_cli-0.0.255/pdd/prompts/generate_test_from_example_LLM.prompt +71 -0
  72. pdd_cli-0.0.255/pdd/prompts/llm_invoke_python.prompt +327 -0
  73. pdd_cli-0.0.255/pdd/prompts/setup_tool_python.prompt +164 -0
  74. pdd_cli-0.0.255/pdd/prompts/user_story_tests_python.prompt +115 -0
  75. pdd_cli-0.0.255/pdd/server/routes/prompts.py +1334 -0
  76. pdd_cli-0.0.255/pdd/setup_tool.py +1456 -0
  77. pdd_cli-0.0.255/pdd/sync_determine_operation.py +3116 -0
  78. pdd_cli-0.0.255/pdd/templates/generic/generate_pddrc_YAML.prompt +206 -0
  79. pdd_cli-0.0.255/pdd/user_story_tests.py +1057 -0
  80. pdd_cli-0.0.255/pdd_cli.egg-info/PKG-INFO +342 -0
  81. pdd_cli-0.0.255/pdd_cli.egg-info/SOURCES.txt +1966 -0
  82. pdd_cli-0.0.255/pyproject.toml +179 -0
  83. pdd_cli-0.0.255/requirements.txt +56 -0
  84. pdd_cli-0.0.255/tests/commands/test_checkup_simplify.py +874 -0
  85. pdd_cli-0.0.255/tests/commands/test_contract_rule_test_smoke.py +108 -0
  86. pdd_cli-0.0.255/tests/commands/test_drift_cli.py +135 -0
  87. pdd_cli-0.0.255/tests/conftest.py +530 -0
  88. pdd_cli-0.0.255/tests/fixtures/contract_rules_python.prompt +23 -0
  89. pdd_cli-0.0.255/tests/fixtures/test_generation/README.md +19 -0
  90. pdd_cli-0.0.255/tests/fixtures/test_generation/refund_policy.py +7 -0
  91. pdd_cli-0.0.255/tests/fixtures/test_generation/refund_policy_python.prompt +19 -0
  92. pdd_cli-0.0.255/tests/test_agentic_checkup_orchestrator.py +6353 -0
  93. pdd_cli-0.0.255/tests/test_agentic_common.py +8184 -0
  94. pdd_cli-0.0.255/tests/test_checkup_gates.py +4562 -0
  95. pdd_cli-0.0.255/tests/test_checkup_pr_mode.py +5374 -0
  96. pdd_cli-0.0.255/tests/test_checkup_review_loop.py +12838 -0
  97. pdd_cli-0.0.255/tests/test_checkup_simplify_engines.py +131 -0
  98. pdd_cli-0.0.255/tests/test_cmd_test_main.py +2388 -0
  99. pdd_cli-0.0.255/tests/test_construct_paths.py +4005 -0
  100. pdd_cli-0.0.255/tests/test_drift_main.py +461 -0
  101. pdd_cli-0.0.255/tests/test_e2e_issue_1201_output_paths.py +188 -0
  102. pdd_cli-0.0.255/tests/test_find_prompt_file.py +438 -0
  103. pdd_cli-0.0.255/tests/test_fix_error_loop.py +2005 -0
  104. pdd_cli-0.0.255/tests/test_fix_error_loop_failure_aware.py +331 -0
  105. pdd_cli-0.0.255/tests/test_fix_main.py +2836 -0
  106. pdd_cli-0.0.255/tests/test_generate_model_catalog.py +546 -0
  107. pdd_cli-0.0.255/tests/test_generate_test_llm_preprocess.py +59 -0
  108. pdd_cli-0.0.255/tests/test_issue_1212_reproduction.py +592 -0
  109. pdd_cli-0.0.255/tests/test_llm_invoke.py +7769 -0
  110. pdd_cli-0.0.255/tests/test_setup_tool.py +1844 -0
  111. pdd_cli-0.0.255/tests/test_sync_determine_operation.py +5011 -0
  112. pdd_cli-0.0.255/tests/test_user_story_tests.py +739 -0
  113. pdd_cli-0.0.255/user_stories/story__template.md +52 -0
  114. pdd_cli-0.0.253/.gitignore +0 -303
  115. pdd_cli-0.0.253/.pdd/meta/llm_invoke_python.json +0 -24
  116. pdd_cli-0.0.253/.pdd/meta/llm_invoke_python_run.json +0 -16
  117. pdd_cli-0.0.253/PKG-INFO +0 -342
  118. pdd_cli-0.0.253/README.md +0 -3721
  119. pdd_cli-0.0.253/architecture.json +0 -9534
  120. pdd_cli-0.0.253/ci/cloud-batch/balance-chunks.py +0 -557
  121. pdd_cli-0.0.253/ci/cloud-batch/entrypoint.sh +0 -458
  122. pdd_cli-0.0.253/context/fix_error_loop_example.py +0 -123
  123. pdd_cli-0.0.253/context/llm_invoke_example.py +0 -86
  124. pdd_cli-0.0.253/context/sync_determine_operation_example.py +0 -136
  125. pdd_cli-0.0.253/context/test.prompt +0 -319
  126. pdd_cli-0.0.253/docs/prompting_guide.md +0 -1817
  127. pdd_cli-0.0.253/examples/prompts_linter/.pddrc +0 -47
  128. pdd_cli-0.0.253/examples/prompts_linter/README.md +0 -451
  129. pdd_cli-0.0.253/examples/template_example/data/llm_model.csv +0 -16
  130. pdd_cli-0.0.253/pdd/_version.py +0 -24
  131. pdd_cli-0.0.253/pdd/agentic_checkup_orchestrator.py +0 -2993
  132. pdd_cli-0.0.253/pdd/agentic_common.py +0 -4282
  133. pdd_cli-0.0.253/pdd/checkup_gates.py +0 -2636
  134. pdd_cli-0.0.253/pdd/checkup_review_loop.py +0 -6561
  135. pdd_cli-0.0.253/pdd/commands/checkup.py +0 -589
  136. pdd_cli-0.0.253/pdd/construct_paths.py +0 -1580
  137. pdd_cli-0.0.253/pdd/data/llm_model.csv +0 -132
  138. pdd_cli-0.0.253/pdd/fix_error_loop.py +0 -1065
  139. pdd_cli-0.0.253/pdd/frontend/api.ts +0 -1440
  140. pdd_cli-0.0.253/pdd/frontend/components/PromptMetricsBar.tsx +0 -388
  141. pdd_cli-0.0.253/pdd/frontend/components/PromptSpace.tsx +0 -2113
  142. pdd_cli-0.0.253/pdd/frontend/lib/modelResolver.ts +0 -50
  143. pdd_cli-0.0.253/pdd/generate_model_catalog.py +0 -1575
  144. pdd_cli-0.0.253/pdd/llm_invoke.py +0 -5123
  145. pdd_cli-0.0.253/pdd/pdd_completion.fish +0 -187
  146. pdd_cli-0.0.253/pdd/pdd_completion.sh +0 -190
  147. pdd_cli-0.0.253/pdd/pdd_completion.zsh +0 -604
  148. pdd_cli-0.0.253/pdd/prompts/agentic_checkup_orchestrator_python.prompt +0 -88
  149. pdd_cli-0.0.253/pdd/prompts/agentic_checkup_step5_test_LLM.prompt +0 -116
  150. pdd_cli-0.0.253/pdd/prompts/agentic_checkup_step6_1_fix_LLM.prompt +0 -122
  151. pdd_cli-0.0.253/pdd/prompts/agentic_common_python.prompt +0 -220
  152. pdd_cli-0.0.253/pdd/prompts/agentic_test_generate_LLM.prompt +0 -90
  153. pdd_cli-0.0.253/pdd/prompts/checkup_gates_python.prompt +0 -73
  154. pdd_cli-0.0.253/pdd/prompts/checkup_review_loop_python.prompt +0 -248
  155. pdd_cli-0.0.253/pdd/prompts/commands/checkup_python.prompt +0 -90
  156. pdd_cli-0.0.253/pdd/prompts/construct_paths_python.prompt +0 -178
  157. pdd_cli-0.0.253/pdd/prompts/fix_error_loop_python.prompt +0 -161
  158. pdd_cli-0.0.253/pdd/prompts/generate_model_catalog_python.prompt +0 -74
  159. pdd_cli-0.0.253/pdd/prompts/generate_test_LLM.prompt +0 -141
  160. pdd_cli-0.0.253/pdd/prompts/generate_test_from_example_LLM.prompt +0 -56
  161. pdd_cli-0.0.253/pdd/prompts/llm_invoke_python.prompt +0 -325
  162. pdd_cli-0.0.253/pdd/prompts/setup_tool_python.prompt +0 -159
  163. pdd_cli-0.0.253/pdd/prompts/user_story_tests_python.prompt +0 -58
  164. pdd_cli-0.0.253/pdd/server/routes/prompts.py +0 -1334
  165. pdd_cli-0.0.253/pdd/setup_tool.py +0 -876
  166. pdd_cli-0.0.253/pdd/sync_determine_operation.py +0 -3094
  167. pdd_cli-0.0.253/pdd/templates/generic/generate_pddrc_YAML.prompt +0 -213
  168. pdd_cli-0.0.253/pdd/user_story_tests.py +0 -853
  169. pdd_cli-0.0.253/pdd_cli.egg-info/PKG-INFO +0 -342
  170. pdd_cli-0.0.253/pdd_cli.egg-info/SOURCES.txt +0 -1930
  171. pdd_cli-0.0.253/pyproject.toml +0 -166
  172. pdd_cli-0.0.253/requirements.txt +0 -56
  173. pdd_cli-0.0.253/tests/conftest.py +0 -510
  174. pdd_cli-0.0.253/tests/test_agentic_checkup_orchestrator.py +0 -2612
  175. pdd_cli-0.0.253/tests/test_agentic_common.py +0 -7770
  176. pdd_cli-0.0.253/tests/test_checkup_gates.py +0 -3391
  177. pdd_cli-0.0.253/tests/test_checkup_pr_mode.py +0 -5193
  178. pdd_cli-0.0.253/tests/test_checkup_review_loop.py +0 -11586
  179. pdd_cli-0.0.253/tests/test_cmd_test_main.py +0 -2282
  180. pdd_cli-0.0.253/tests/test_construct_paths.py +0 -3865
  181. pdd_cli-0.0.253/tests/test_find_prompt_file.py +0 -439
  182. pdd_cli-0.0.253/tests/test_fix_error_loop.py +0 -1854
  183. pdd_cli-0.0.253/tests/test_fix_error_loop_failure_aware.py +0 -285
  184. pdd_cli-0.0.253/tests/test_fix_main.py +0 -2808
  185. pdd_cli-0.0.253/tests/test_generate_model_catalog.py +0 -394
  186. pdd_cli-0.0.253/tests/test_llm_invoke.py +0 -7608
  187. pdd_cli-0.0.253/tests/test_setup_tool.py +0 -1170
  188. pdd_cli-0.0.253/tests/test_sync_determine_operation.py +0 -4862
  189. pdd_cli-0.0.253/tests/test_user_story_tests.py +0 -599
  190. pdd_cli-0.0.253/user_stories/story__template.md +0 -19
  191. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.env.example +0 -0
  192. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.gitattributes +0 -0
  193. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.github/dependabot.yml +0 -0
  194. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.github/workflows/auto-heal.yml +0 -0
  195. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.github/workflows/backfill-release-notes.yml +0 -0
  196. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.github/workflows/pdd-secrets-dispatch.yml +0 -0
  197. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.github/workflows/release.yml +0 -0
  198. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.github/workflows/unit-tests.yml +0 -0
  199. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_architecture_orchestrator_python.json +0 -0
  200. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_bug_orchestrator_python.json +0 -0
  201. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_bug_orchestrator_python_run.json +0 -0
  202. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_bug_python.json +0 -0
  203. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_change_orchestrator_python.json +0 -0
  204. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_change_orchestrator_python_run.json +0 -0
  205. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_checkup_python.json +0 -0
  206. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_checkup_python_run.json +0 -0
  207. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_common_python.json +0 -0
  208. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_common_python_run.json +0 -0
  209. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_crash_python.json +0 -0
  210. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_e2e_fix_orchestrator_python.json +0 -0
  211. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_e2e_fix_orchestrator_python_run.json +0 -0
  212. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_fix_python.json +0 -0
  213. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_split_orchestrator_python.json +0 -0
  214. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_split_orchestrator_python_run.json +0 -0
  215. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_sync_runner_python.json +0 -0
  216. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_update_python.json +0 -0
  217. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/agentic_verify_python.json +0 -0
  218. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/architecture_sync_python.json +0 -0
  219. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/architecture_sync_python_run.json +0 -0
  220. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/checkup_review_loop_python.json +0 -0
  221. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/checkup_review_loop_python_run.json +0 -0
  222. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/ci_drift_heal_python.json +0 -0
  223. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/code_generator_main_python.json +0 -0
  224. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/commands_checkup_python.json +0 -0
  225. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/commands_checkup_python_run.json +0 -0
  226. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/commands_modify_python.json +0 -0
  227. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/commands_modify_python_run.json +0 -0
  228. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/commands_prompt_python.json +0 -0
  229. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/core_cloud_python.json +0 -0
  230. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/fix_code_loop_python.json +0 -0
  231. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/get_comment_python.json +0 -0
  232. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/get_test_command_python.json +0 -0
  233. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/git_update_python.json +0 -0
  234. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/metadata_sync_python.json +0 -0
  235. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/metadata_sync_python_run.json +0 -0
  236. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/pin_example_hack_python.json +0 -0
  237. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/pin_example_hack_python_run.json +0 -0
  238. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/preprocess_python.json +0 -0
  239. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/prompt_lint_python.json +0 -0
  240. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/server_jobs_python.json +0 -0
  241. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/summarize_directory_python.json +0 -0
  242. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/summarize_directory_python_run.json +0 -0
  243. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/sync_orchestration_python.json +0 -0
  244. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/sync_orchestration_python_run.json +0 -0
  245. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/track_cost_python.json +0 -0
  246. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/track_cost_python_run.json +0 -0
  247. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pdd/meta/update_main_python.json +0 -0
  248. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pddignore +0 -0
  249. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.pddrc +0 -0
  250. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/.sync-config.yml +0 -0
  251. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/AGENTS.md +0 -0
  252. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/CHANGELOG.md +0 -0
  253. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/CLAUDE.md +0 -0
  254. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/CONTRIBUTING.md +0 -0
  255. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/GEMINI.md +0 -0
  256. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/LICENSE +0 -0
  257. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/Makefile +0 -0
  258. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/SETUP_WITH_GEMINI.md +0 -0
  259. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/SETUP_WITH_WINDOWS.md +0 -0
  260. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/ci/cloud-batch/Dockerfile +0 -0
  261. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/ci/cloud-batch/cloudbuild.yaml +0 -0
  262. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/ci/cloud-batch/collect-results.sh +0 -0
  263. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/ci/cloud-batch/job-template-standard.json +0 -0
  264. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/ci/cloud-batch/job-template.json +0 -0
  265. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/ci/cloud-batch/setup-gcp.sh +0 -0
  266. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/ci/cloud-batch/submit.sh +0 -0
  267. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/ci/cloud-batch/test-durations.json +0 -0
  268. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/DSPy_example.py +0 -0
  269. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/__init__example.py +0 -0
  270. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/_keyring_timeout_example.py +0 -0
  271. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_architecture_example.py +0 -0
  272. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_architecture_orchestrator_example.py +0 -0
  273. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_bug_example.py +0 -0
  274. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_bug_orchestrator_example.py +0 -0
  275. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_change_example.py +0 -0
  276. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_change_orchestrator_example.py +0 -0
  277. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_checkup_example.py +0 -0
  278. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_checkup_orchestrator_example.py +0 -0
  279. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_common_example.py +0 -0
  280. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_crash_example.py +0 -0
  281. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_e2e_fix_example.py +0 -0
  282. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_e2e_fix_orchestrator_example.py +0 -0
  283. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_fix_example.py +0 -0
  284. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_langtest_example.py +0 -0
  285. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_split_example.py +0 -0
  286. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_split_orchestrator_example.py +0 -0
  287. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_sync_example.py +0 -0
  288. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_sync_runner_example.py +0 -0
  289. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_test_example.py +0 -0
  290. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_test_orchestrator_example.py +0 -0
  291. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_update_example.py +0 -0
  292. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/agentic_verify_example.py +0 -0
  293. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/anthropic_counter_example.py +0 -0
  294. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/anthropic_tool_example.py +0 -0
  295. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/api_key_scanner_example.py +0 -0
  296. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/architecture_registry_example.py +0 -0
  297. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/architecture_sync_example.py +0 -0
  298. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/auth_service_example.py +0 -0
  299. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/auto_deps_main_example.py +0 -0
  300. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/auto_include_example.py +0 -0
  301. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/auto_update_example.py +0 -0
  302. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/autotokenizer_example.py +0 -0
  303. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/bug_main_example.py +0 -0
  304. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/bug_to_unit_test_example.py +0 -0
  305. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/bug_to_unit_test_failure_example.py +0 -0
  306. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/1/change.prompt +0 -0
  307. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/1/final_code_generator_python.prompt +0 -0
  308. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/1/initial_code_generator.py +0 -0
  309. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/1/initial_code_generator_python.prompt +0 -0
  310. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/10/change.prompt +0 -0
  311. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/10/final_fix_errors_from_unit_tests_python.prompt +0 -0
  312. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/10/initial_fix_errors_from_unit_tests.py +0 -0
  313. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/10/initial_fix_errors_from_unit_tests_python.prompt +0 -0
  314. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/11/change.prompt +0 -0
  315. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/11/initial_code_generator.py +0 -0
  316. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/11/initial_code_generator_python.prompt +0 -0
  317. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/11/initial_split_python.prompt +0 -0
  318. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/12/change.prompt +0 -0
  319. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/12/final_unfinished_prompt_python.prompt +0 -0
  320. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/12/initial_postprocess.py +0 -0
  321. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/12/initial_postprocess_python.prompt +0 -0
  322. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/13/change.prompt +0 -0
  323. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/13/initial_split.py +0 -0
  324. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/13/initial_split_python.prompt +0 -0
  325. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/13/modified_initial_split.prompt +0 -0
  326. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/14/change.prompt +0 -0
  327. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/14/initial_change.py +0 -0
  328. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/14/initial_change_python.prompt +0 -0
  329. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/14/modified_initial_change.prompt +0 -0
  330. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/15/README.md +0 -0
  331. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/15/change.prompt +0 -0
  332. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/15/initial_cli.py +0 -0
  333. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/15/initial_cli_python.prompt +0 -0
  334. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/15/modified_initial_cli.prompt +0 -0
  335. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/16/change.prompt +0 -0
  336. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/16/fix_code_module_errors_example.py +0 -0
  337. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/16/fix_code_module_errors_python.prompt +0 -0
  338. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/16/fix_error_loop.py +0 -0
  339. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/16/fix_error_loop_python.prompt +0 -0
  340. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/16/fix_errors_from_unit_tests_example.py +0 -0
  341. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/16/modified_fix_error_loop_python.prompt +0 -0
  342. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/17/change.prompt +0 -0
  343. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/17/continue_generation.py +0 -0
  344. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/17/continue_generation_python.prompt +0 -0
  345. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/17/unfinished_prompt_python.prompt +0 -0
  346. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/17/updated_continue_generation_python.prompt +0 -0
  347. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/17/updated_unfinished_prompt_python.prompt +0 -0
  348. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/18/change.prompt +0 -0
  349. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/18/code_generator.py +0 -0
  350. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/18/code_generator_python.prompt +0 -0
  351. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/18/unfinished_prompt_python.prompt +0 -0
  352. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/18/updated_code_generator_python.prompt +0 -0
  353. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/18/updated_unfinished_prompt_python.prompt +0 -0
  354. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/19/change.prompt +0 -0
  355. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/19/context_generator.py +0 -0
  356. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/19/context_generator_python.prompt +0 -0
  357. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/19/unfinished_prompt_python.prompt +0 -0
  358. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/19/updated_context_generator_python.prompt +0 -0
  359. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/19/updated_unfinished_prompt_python.prompt +0 -0
  360. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/2/change.prompt +0 -0
  361. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/2/final_context_generator_python.prompt +0 -0
  362. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/2/initial_context_generator.py +0 -0
  363. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/2/initial_context_generator_python.prompt +0 -0
  364. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/20/change.prompt +0 -0
  365. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/20/generate_test.py +0 -0
  366. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/20/generate_test_python.prompt +0 -0
  367. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/20/updated_generate_test_python.prompt +0 -0
  368. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/21/auto_deps_main_python.prompt +0 -0
  369. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/21/auto_include.py +0 -0
  370. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/21/auto_include_python.prompt +0 -0
  371. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/21/change.prompt +0 -0
  372. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/22/change.prompt +0 -0
  373. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/22/preprocess.py +0 -0
  374. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/22/preprocess_main_python.prompt +0 -0
  375. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/22/preprocess_python.prompt +0 -0
  376. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/3/change.prompt +0 -0
  377. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/3/final_test_generator_python.prompt +0 -0
  378. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/3/initial_test_generator_python.prompt +0 -0
  379. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/3/intial_test_generator.py +0 -0
  380. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/4/change.prompt +0 -0
  381. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/4/final_postprocess_python.prompt +0 -0
  382. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/4/initial_postprocess.py +0 -0
  383. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/4/initial_postprocess_python.prompt +0 -0
  384. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/5/change.prompt +0 -0
  385. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/5/final_split_python.prompt +0 -0
  386. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/5/initial_split.py +0 -0
  387. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/5/initial_split_python.prompt +0 -0
  388. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/6/change.prompt +0 -0
  389. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/6/final_xml_tagger_python.prompt +0 -0
  390. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/6/initial_xml_tagger.py +0 -0
  391. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/6/initial_xml_tagger_python.prompt +0 -0
  392. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/7/change.prompt +0 -0
  393. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/7/final_fix_errors_python.prompt +0 -0
  394. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/7/initial_fix_errors.py +0 -0
  395. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/7/initial_fix_errors_python.prompt +0 -0
  396. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/8/change.prompt +0 -0
  397. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/8/final_fix_errors_from_unit_tests_python.prompt +0 -0
  398. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/8/initial_fix_errors_from_unit_tests.py +0 -0
  399. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/8/initial_fix_errors_from_unit_tests_python.prompt +0 -0
  400. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/9/change.prompt +0 -0
  401. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/9/final_fix_error_loop_python.prompt +0 -0
  402. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/9/initial_fix_error_loop.py +0 -0
  403. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/9/initial_fix_error_loop_python.prompt +0 -0
  404. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change/simple_math/change.prompt +0 -0
  405. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change_example.py +0 -0
  406. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/change_main_example.py +0 -0
  407. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/checkup_review_loop_example.py +0 -0
  408. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/ci_detect_changed_modules_example.py +0 -0
  409. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/ci_drift_heal_example.py +0 -0
  410. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/ci_validation_example.py +0 -0
  411. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/cli_detector_example.py +0 -0
  412. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/cli_example.py +0 -0
  413. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/click_example.py +0 -0
  414. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/click_executor_example.py +0 -0
  415. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/cloud_example.py +0 -0
  416. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/cloud_function_call.py +0 -0
  417. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/cmd_test_main_example.py +0 -0
  418. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/code_generator_example.py +0 -0
  419. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/code_generator_main_example.py +0 -0
  420. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/commands/__init___example.py +0 -0
  421. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/commands/analysis_example.py +0 -0
  422. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/commands/auth_example.py +0 -0
  423. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/commands/checkup_example.py +0 -0
  424. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/commands/connect_example.py +0 -0
  425. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/commands/fix_example.py +0 -0
  426. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/commands/generate_example.py +0 -0
  427. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/commands/maintenance_example.py +0 -0
  428. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/commands/misc_example.py +0 -0
  429. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/commands/modify_example.py +0 -0
  430. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/commands/sessions_example.py +0 -0
  431. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/commands/templates_example.py +0 -0
  432. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/commands/utility_example.py +0 -0
  433. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/comment_line_example.py +0 -0
  434. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/config_example.py +0 -0
  435. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/conflicts_in_prompts_example.py +0 -0
  436. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/conflicts_main_example.py +0 -0
  437. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/construct_paths_example.py +0 -0
  438. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/content_selector_example.py +0 -0
  439. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/context_generator_example.py +0 -0
  440. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/context_generator_main_example.py +0 -0
  441. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/continue_generation_example.py +0 -0
  442. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/core/cli_example.py +0 -0
  443. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/core/cloud_example.py +0 -0
  444. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/core/dump_example.py +0 -0
  445. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/core/duplicate_cli_guard_example.py +0 -0
  446. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/core/errors_example.py +0 -0
  447. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/core/utils_example.py +0 -0
  448. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/crash_main_example.py +0 -0
  449. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/ctx_obj_params.prompt +0 -0
  450. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/detect_change_example.py +0 -0
  451. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/detect_change_main_example.py +0 -0
  452. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/dict_utils_example.py +0 -0
  453. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/edit_file_example.py +0 -0
  454. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/embed_retrieve_example.py +0 -0
  455. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/example.prompt +0 -0
  456. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/extracts_prune_example.py +0 -0
  457. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/fastapi_example.py +0 -0
  458. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/find_section_example.py +0 -0
  459. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/firecrawl_example.py +0 -0
  460. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/fix_code_loop_example.py +0 -0
  461. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/fix_code_module_errors_example.py +0 -0
  462. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/fix_errors_from_unit_tests_example.py +0 -0
  463. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/fix_main_example.py +0 -0
  464. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/fix_verification_errors_example.py +0 -0
  465. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/fix_verification_errors_loop_example.py +0 -0
  466. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/fix_verification_main_example.py +0 -0
  467. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/gemini_may_pro_example.py +0 -0
  468. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/generate_model_catalog_example.py +0 -0
  469. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/generate_output_paths_example.py +0 -0
  470. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/generate_test_example.py +0 -0
  471. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/generation_completion_example.py +0 -0
  472. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/get_comment_example.py +0 -0
  473. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/get_extension_example.py +0 -0
  474. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/get_jwt_token_example.py +0 -0
  475. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/get_language_example.py +0 -0
  476. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/get_run_command_example.py +0 -0
  477. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/get_test_command_example.py +0 -0
  478. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/git_update_example.py +0 -0
  479. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/include_query_extractor_example.py +0 -0
  480. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/increase_tests_example.py +0 -0
  481. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/incremental_code_generator_example.py +0 -0
  482. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/insert_includes_example.py +0 -0
  483. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/install_completion_example.py +0 -0
  484. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/job_manager_example.py +0 -0
  485. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/langchain_lcel_example.py +0 -0
  486. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/list_stats_example.py +0 -0
  487. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/llm_model_ranges_example.py +0 -0
  488. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/llm_selector_example.py +0 -0
  489. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/load_prompt_template_example.py +0 -0
  490. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/logo_animation_example.py +0 -0
  491. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/metadata_sync_example.py +0 -0
  492. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/model_tester_example.py +0 -0
  493. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/one_session_sync_example.py +0 -0
  494. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/operation_log_example.py +0 -0
  495. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/path_resolution_example.py +0 -0
  496. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/pdd_completion_example.fish +0 -0
  497. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/pdd_completion_example.sh +0 -0
  498. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/pdd_completion_example.zsh +0 -0
  499. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/pddrc_initializer_example.py +0 -0
  500. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/pin_example_hack_example.py +0 -0
  501. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/postprocess_0_example.py +0 -0
  502. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/postprocess_example.py +0 -0
  503. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/preprocess_example.py +0 -0
  504. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/preprocess_main_example.py +0 -0
  505. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/process_csv_change_example.py +0 -0
  506. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/provider_manager_example.py +0 -0
  507. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/pytest_example.py +0 -0
  508. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/pytest_isolation_example.py +0 -0
  509. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/pytest_output_example.py +0 -0
  510. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/python_env_detector_example.py +0 -0
  511. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/python_preamble.prompt +0 -0
  512. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/range_validator_example.py +0 -0
  513. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/remote_session_example.py +0 -0
  514. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/render_mermaid_example.py +0 -0
  515. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/resolve_effective_config_example.py +0 -0
  516. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/__init___example.py +0 -0
  517. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/app_example.py +0 -0
  518. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/click_executor_example.py +0 -0
  519. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/executor_example.py +0 -0
  520. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/jobs_example.py +0 -0
  521. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/models_example.py +0 -0
  522. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/routes/__init___example.py +0 -0
  523. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/routes/architecture_example.py +0 -0
  524. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/routes/auth_example.py +0 -0
  525. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/routes/commands_example.py +0 -0
  526. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/routes/config_example.py +0 -0
  527. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/routes/extracts_example.py +0 -0
  528. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/routes/files_example.py +0 -0
  529. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/routes/prompts_example.py +0 -0
  530. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/routes/session_example.py +0 -0
  531. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/routes/websocket_example.py +0 -0
  532. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/security_example.py +0 -0
  533. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/terminal_spawner_example.py +0 -0
  534. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/server/token_counter_example.py +0 -0
  535. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/setup_tool_example.py +0 -0
  536. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/split/simple_math/split_example.py +0 -0
  537. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/split_example.py +0 -0
  538. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/split_main_example.py +0 -0
  539. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/split_validation_example.py +0 -0
  540. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/summarize_directory_example.py +0 -0
  541. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/sync_animation_example.py +0 -0
  542. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/sync_code_main_example.py +0 -0
  543. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/sync_main_example.py +0 -0
  544. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/sync_orchestration_example.py +0 -0
  545. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/sync_order_example.py +0 -0
  546. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/tiktoken_example.py +0 -0
  547. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/trace_example.py +0 -0
  548. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/trace_main_example.py +0 -0
  549. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/track_cost_example.py +0 -0
  550. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/unfinished_prompt_example.py +0 -0
  551. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/update_main_example.py +0 -0
  552. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/update_model_costs_example.py +0 -0
  553. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/update_prompt_example.py +0 -0
  554. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/validate_prompt_includes_example.py +0 -0
  555. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/websocket_example.py +0 -0
  556. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/context/xml_tagger_example.py +0 -0
  557. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/ONBOARDING.md +0 -0
  558. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/Software Development Costs and Maintenance_ 2022/342/200/2232025 Trends and AI Impact.md" +0 -0
  559. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/TUTORIALS.md +0 -0
  560. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/architecture_include_validation.md +0 -0
  561. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/ci.md +0 -0
  562. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/comparison.md +0 -0
  563. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/contract_check.md +0 -0
  564. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/coverage_contracts.md +0 -0
  565. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/evidence_manifest.md +0 -0
  566. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/examples/prompt_with_metadata.prompt +0 -0
  567. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/faq.md +0 -0
  568. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/goldilocks_prompt.jpeg +0 -0
  569. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/issues/issue_813_verification_plan.md +0 -0
  570. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/new_whitepaper.md +0 -0
  571. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/o3_whitepaper.md +0 -0
  572. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/orig_whitepaper.md +0 -0
  573. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/path_resolution_resolver.md +0 -0
  574. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/pdd_vs_agentic_cli_definitive_proof_plan.md +0 -0
  575. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/prompt-driven-development-doctrine.md +0 -0
  576. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/prompt_lint.md +0 -0
  577. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/runbooks/pr-loop-process.md +0 -0
  578. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/standup_notes.md +0 -0
  579. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/sync_architecture_analysis.md +0 -0
  580. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/sync_determination_analysis.md +0 -0
  581. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/sync_solution_o3pro.md +0 -0
  582. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/sync_solution_opus.md +0 -0
  583. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/the-last-programming-language.md +0 -0
  584. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/videos/handpaint_demo.gif +0 -0
  585. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper.md +0 -0
  586. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_before_4.5.md +0 -0
  587. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/evidence/README.md +0 -0
  588. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/evidence/SHA256SUMS.txt +0 -0
  589. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/evidence/_session_classification.tsv +0 -0
  590. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/evidence/prompts_pdd.jsonl +0 -0
  591. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/evidence/prompts_pdd.md +0 -0
  592. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/evidence/prompts_vibe.jsonl +0 -0
  593. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/evidence/prompts_vibe.md +0 -0
  594. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/evidence/quote_map.md +0 -0
  595. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/images/loop.mmd +0 -0
  596. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/images/loop.png +0 -0
  597. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/images/oscillation.mmd +0 -0
  598. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/images/oscillation.png +0 -0
  599. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/images/pdd_cycle.mmd +0 -0
  600. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/images/pdd_cycle.png +0 -0
  601. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/images/pipeline.mmd +0 -0
  602. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/images/pipeline.png +0 -0
  603. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/images/threshold.mmd +0 -0
  604. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/images/threshold.png +0 -0
  605. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_specification_drift/whitepaper.md +0 -0
  606. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/analysis_report/avg_api_cost_by_edit_type.png +0 -0
  607. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/analysis_report/avg_api_cost_by_file_size.png +0 -0
  608. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/analysis_report/avg_api_cost_by_language.png +0 -0
  609. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/analysis_report/avg_execution_time_by_edit_type.png +0 -0
  610. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/analysis_report/avg_execution_time_by_file_size.png +0 -0
  611. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/analysis_report/avg_execution_time_by_language.png +0 -0
  612. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/analysis_report/cost_per_successful_task.png +0 -0
  613. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/analysis_report/overall_avg_api_cost.png +0 -0
  614. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/analysis_report/overall_avg_execution_time.png +0 -0
  615. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/analysis_report/overall_success_rate.png +0 -0
  616. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/analysis_report/success_rate_by_edit_type.png +0 -0
  617. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/analysis_report/success_rate_by_file_size.png +0 -0
  618. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/analysis_report/success_rate_by_language.png +0 -0
  619. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/analysis_report/time_vs_cost_scatter.png +0 -0
  620. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/analysis_report/total_api_cost_comparison.png +0 -0
  621. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/creation_report/claude_cost_per_run_dist.png +0 -0
  622. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/creation_report/claude_lines_added_removed_dist.png +0 -0
  623. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/creation_report/claude_wall_duration_dist.png +0 -0
  624. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/creation_report/pdd_avg_cost_per_module_dist.png +0 -0
  625. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/creation_report/pdd_top_modules_by_cost.png +0 -0
  626. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/creation_report/pdd_top_modules_by_time.png +0 -0
  627. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/creation_report/pdd_total_time_per_module_dist.png +0 -0
  628. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/creation_report/total_cost_comparison.png +0 -0
  629. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/creation_report/total_time_comparison.png +0 -0
  630. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/docs/whitepaper_with_benchmarks/whitepaper_w_benchmarks.md +0 -0
  631. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/environment.yml +0 -0
  632. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/README.md +0 -0
  633. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_bug_orchestrator_example.py +0 -0
  634. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_change_orchestrator_example.py +0 -0
  635. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_checkup_example.py +0 -0
  636. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_common_example.py +0 -0
  637. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_common_worktree_example.py +0 -0
  638. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_e2e_fix_orchestrator_example.py +0 -0
  639. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example/README.md +0 -0
  640. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example/main_python.prompt +0 -0
  641. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example/src/main.py +0 -0
  642. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example/src/utils.py +0 -0
  643. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example/tests/test_main.py +0 -0
  644. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example/utils_python.prompt +0 -0
  645. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_gradle/.gitignore +0 -0
  646. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_gradle/README.md +0 -0
  647. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_gradle/build.gradle +0 -0
  648. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_gradle/gradle/wrapper/gradle-wrapper.jar +0 -0
  649. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_gradle/gradle/wrapper/gradle-wrapper.properties +0 -0
  650. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_gradle/gradlew +0 -0
  651. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_gradle/gradlew.bat +0 -0
  652. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_gradle/main_java.prompt +0 -0
  653. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_gradle/settings.gradle +0 -0
  654. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_gradle/src/main/java/Main.java +0 -0
  655. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_gradle/src/main/java/Util.java +0 -0
  656. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_gradle/src/test/java/TestMain.java +0 -0
  657. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_gradle/util_java.prompt +0 -0
  658. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_maven/.gitignore +0 -0
  659. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_maven/README.md +0 -0
  660. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_maven/main_java.prompt +0 -0
  661. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_maven/pom.xml +0 -0
  662. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_maven/src/main/java/Main.java +0 -0
  663. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_maven/src/main/java/Util.java +0 -0
  664. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_maven/src/test/java/TestMain.java +0 -0
  665. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_java_maven/util_java.prompt +0 -0
  666. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_javascript/README.md +0 -0
  667. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_javascript/main_javascript.prompt +0 -0
  668. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_javascript/package.json +0 -0
  669. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_javascript/src/main.js +0 -0
  670. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_javascript/src/utils.js +0 -0
  671. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_javascript/tests/test_main.js +0 -0
  672. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_javascript/utils_javascript.prompt +0 -0
  673. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_typescript/README.md +0 -0
  674. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_typescript/main_typescript.prompt +0 -0
  675. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_typescript/package.json +0 -0
  676. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_typescript/src/main.ts +0 -0
  677. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_typescript/src/utils.ts +0 -0
  678. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_typescript/tests/test_main.ts +0 -0
  679. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_typescript/tsconfig.json +0 -0
  680. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_fallback_example_typescript/utils_typescript.prompt +0 -0
  681. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_split_example.py +0 -0
  682. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/agentic_split_orchestrator_example.py +0 -0
  683. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/arch/ORDER_MANAGEMENT_PRD.md +0 -0
  684. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/arch/architecture.json +0 -0
  685. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/arch/architecture_diagram.html +0 -0
  686. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/arch/tech_stack.md +0 -0
  687. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/checkup_review_loop_example.py +0 -0
  688. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/get_lint_commands_example.py +0 -0
  689. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/git_porcelain_example.py +0 -0
  690. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/handpaint/README.md +0 -0
  691. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/handpaint/cursor/README.md +0 -0
  692. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/handpaint/cursor/handpaint.html +0 -0
  693. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/handpaint/pdd/README.md +0 -0
  694. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/handpaint/pdd/handpaint_html.prompt +0 -0
  695. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/handpaint/pdd/handpaint_pdd.html +0 -0
  696. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/hello/.pdd/meta/hello_python.json +0 -0
  697. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/hello/.pddrc +0 -0
  698. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/hello/examples/hello_example.py +0 -0
  699. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/hello/hello_python.prompt +0 -0
  700. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/hello/src/hello.py +0 -0
  701. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/hello/tests/test_hello.py +0 -0
  702. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/hello_you/hello_you_python.prompt +0 -0
  703. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/image_prompt_example/README.md +0 -0
  704. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/image_prompt_example/describe.py +0 -0
  705. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/image_prompt_example/describe_python.prompt +0 -0
  706. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/image_prompt_example/image.heic +0 -0
  707. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/image_prompt_example/image.jpeg +0 -0
  708. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/pi_calc/.pdd/meta/pi_calc_python.json +0 -0
  709. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/pi_calc/.pdd/meta/pi_calc_python_run.json +0 -0
  710. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/pi_calc/examples/pi_calc_example.py +0 -0
  711. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/pi_calc/examples/pi_calc_example_iteration_1.py +0 -0
  712. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/pi_calc/examples/pi_calc_example_iteration_2.py +0 -0
  713. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/pi_calc/pdd/pi_calc.py +0 -0
  714. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/pi_calc/pdd/pi_calc_1_2_2_0_20250715_122550.py +0 -0
  715. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/pi_calc/pdd/pi_calc_iteration_1.py +0 -0
  716. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/pi_calc/pdd/pi_calc_iteration_2.py +0 -0
  717. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/pi_calc/pi_calc_python.prompt +0 -0
  718. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/pi_calc/tests/test_pi_calc.py +0 -0
  719. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/Makefile +0 -0
  720. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/architecture.json +0 -0
  721. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/architecture_diagram.html +0 -0
  722. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/docs/specs.md +0 -0
  723. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/docs/tech_stack.md +0 -0
  724. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/examples/backend_api_example.py +0 -0
  725. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/examples/cli_example.py +0 -0
  726. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/examples/fix_example.py +0 -0
  727. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/examples/frontend_streamlit_example.py +0 -0
  728. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/examples/helpers_example.py +0 -0
  729. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/examples/llm_example.py +0 -0
  730. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/examples/models_example.py +0 -0
  731. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/examples/pipeline_example.py +0 -0
  732. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/examples/report_example.py +0 -0
  733. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/examples/report_output.md +0 -0
  734. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/examples/report_output.txt +0 -0
  735. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/examples/rules_example.py +0 -0
  736. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/project_dependencies.csv +0 -0
  737. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/prompts/backend_api_python.prompt +0 -0
  738. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/prompts/cli_python.prompt +0 -0
  739. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/prompts/fix_python.prompt +0 -0
  740. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/prompts/frontend_streamlit_python.prompt +0 -0
  741. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/prompts/helpers_python.prompt +0 -0
  742. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/prompts/llm_python.prompt +0 -0
  743. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/prompts/models_python.prompt +0 -0
  744. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/prompts/pipeline_python.prompt +0 -0
  745. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/prompts/report_python.prompt +0 -0
  746. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/prompts/rules_python.prompt +0 -0
  747. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/requirements.txt +0 -0
  748. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/src/backend/backend_api.py +0 -0
  749. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/src/cli/cli.py +0 -0
  750. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/src/frontend/frontend_streamlit.py +0 -0
  751. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/src/utils/fix.py +0 -0
  752. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/src/utils/helpers.py +0 -0
  753. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/src/utils/llm.py +0 -0
  754. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/src/utils/models.py +0 -0
  755. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/src/utils/pipeline.py +0 -0
  756. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/src/utils/report.py +0 -0
  757. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/src/utils/rules.py +0 -0
  758. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/tests/test_backend_api.py +0 -0
  759. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/tests/test_cli.py +0 -0
  760. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/tests/test_fix.py +0 -0
  761. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/tests/test_frontend_streamlit.py +0 -0
  762. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/tests/test_helpers.py +0 -0
  763. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/tests/test_llm.py +0 -0
  764. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/tests/test_models.py +0 -0
  765. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/tests/test_pipeline.py +0 -0
  766. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/tests/test_report.py +0 -0
  767. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/prompts_linter/tests/test_rules.py +0 -0
  768. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/qrcode_sandwich/README.md +0 -0
  769. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/qrcode_sandwich/qrcode_sandwich.png +0 -0
  770. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/qrcode_sandwich/qrcode_sandwich.py +0 -0
  771. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/qrcode_sandwich/qrcode_sandwich_python.prompt +0 -0
  772. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/split_main_example.py +0 -0
  773. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/split_validation_example.py +0 -0
  774. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/.gitignore +0 -0
  775. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/.pddrc +0 -0
  776. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/API_FAILURE_ANALYSIS.md +0 -0
  777. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/API_KEY_SETUP.md +0 -0
  778. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/EDIT_FILE_TOOL_README.md +0 -0
  779. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/Makefile +0 -0
  780. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/README.md +0 -0
  781. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/architecture.json +0 -0
  782. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/architecture_diagram.html +0 -0
  783. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/example.py +0 -0
  784. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/example2.md +0 -0
  785. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/project_dependencies.csv +0 -0
  786. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/prompts/__init___Python.prompt +0 -0
  787. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/prompts/architecture/architecture_json.prompt +0 -0
  788. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/prompts/cache_manager_utility_Python.prompt +0 -0
  789. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/prompts/cli_Python.prompt +0 -0
  790. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/prompts/core_python.prompt +0 -0
  791. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/prompts/cost_tracker_utility_Python.prompt +0 -0
  792. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/prompts/pyproject_TOML.prompt +0 -0
  793. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/prompts/think_tool_capability_Python.prompt +0 -0
  794. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/pyproject.toml +0 -0
  795. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/edit_file_tool/__init__.py +0 -0
  796. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/edit_file_tool/cache_manager_utility.py +0 -0
  797. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/edit_file_tool/cli.py +0 -0
  798. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/edit_file_tool/core.py +0 -0
  799. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/edit_file_tool/cost_tracker_utility.py +0 -0
  800. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/edit_file_tool/think_tool_capability.py +0 -0
  801. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/examples/__init___example.py +0 -0
  802. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/examples/cache_manager_utility_example.py +0 -0
  803. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/examples/cli_example.py +0 -0
  804. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/examples/core_example.py +0 -0
  805. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/examples/cost_tracker_utility_example.py +0 -0
  806. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/examples/generated_xml/example_mod.xml +0 -0
  807. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/examples/think_tool_capability_example.py +0 -0
  808. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/tests/test___init__.py +0 -0
  809. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/tests/test_cache_manager_utility.py +0 -0
  810. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/tests/test_cli.py +0 -0
  811. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/tests/test_core.py +0 -0
  812. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/tests/test_cost_tracker_utility.py +0 -0
  813. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/template_example/src/tests/test_think_tool_capability.py +0 -0
  814. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/test_generation_benchmark/ANALYSIS.md +0 -0
  815. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/test_generation_benchmark/DISCORD_SUMMARY.md +0 -0
  816. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/test_generation_benchmark/Makefile +0 -0
  817. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/test_generation_benchmark/README.md +0 -0
  818. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/test_generation_benchmark/benchmark_results/code_based/test_email_validator.py +0 -0
  819. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/test_generation_benchmark/benchmark_results/example_based/test_email_validator.py +0 -0
  820. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/test_generation_benchmark/email_validator_python.prompt +0 -0
  821. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/test_generation_benchmark/examples/email_validator_example.py +0 -0
  822. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/test_generation_benchmark/src/email_validator.py +0 -0
  823. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/tictactoe/README.md +0 -0
  824. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/tictactoe/tictactoe_architecture.json +0 -0
  825. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/tictactoe/tictactoe_architecture_diagram.html +0 -0
  826. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/examples/tictactoe/tictactoe_prd.md +0 -0
  827. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/__init__.py +0 -0
  828. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/__main__.py +0 -0
  829. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/_keyring_timeout.py +0 -0
  830. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_architecture.py +0 -0
  831. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_architecture_orchestrator.py +0 -0
  832. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_bug.py +0 -0
  833. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_bug_orchestrator.py +0 -0
  834. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_change.py +0 -0
  835. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_change_orchestrator.py +0 -0
  836. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_checkup.py +0 -0
  837. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_common_worktree.py +0 -0
  838. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_crash.py +0 -0
  839. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_e2e_fix.py +0 -0
  840. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_e2e_fix_orchestrator.py +0 -0
  841. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_fix.py +0 -0
  842. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_langtest.py +0 -0
  843. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_split.py +0 -0
  844. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_split_orchestrator.py +0 -0
  845. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_sync.py +0 -0
  846. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_sync_runner.py +0 -0
  847. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_test.py +0 -0
  848. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_test_generate.py +0 -0
  849. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_test_orchestrator.py +0 -0
  850. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_update.py +0 -0
  851. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/agentic_verify.py +0 -0
  852. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/api_key_scanner.py +0 -0
  853. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/architecture_include_validation.py +0 -0
  854. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/architecture_registry.py +0 -0
  855. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/architecture_sync.py +0 -0
  856. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/architecture_sync_helper.py +0 -0
  857. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/auth_service.py +0 -0
  858. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/auto_deps_architecture.py +0 -0
  859. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/auto_deps_main.py +0 -0
  860. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/auto_include.py +0 -0
  861. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/auto_update.py +0 -0
  862. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/bug_main.py +0 -0
  863. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/bug_to_unit_test.py +0 -0
  864. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/change.py +0 -0
  865. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/change_main.py +0 -0
  866. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/ci_detect_changed_modules.py +0 -0
  867. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/ci_drift_heal.py +0 -0
  868. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/ci_validation.py +0 -0
  869. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/cli.py +0 -0
  870. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/cli_branding.py +0 -0
  871. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/cli_detector.py +0 -0
  872. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/cmd_test_main.py +0 -0
  873. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/code_generator.py +0 -0
  874. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/code_generator_main.py +0 -0
  875. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/__init__.py +0 -0
  876. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/analysis.py +0 -0
  877. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/auth.py +0 -0
  878. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/connect.py +0 -0
  879. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/contracts.py +0 -0
  880. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/coverage.py +0 -0
  881. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/extracts.py +0 -0
  882. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/firecrawl.py +0 -0
  883. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/fix.py +0 -0
  884. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/generate.py +0 -0
  885. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/maintenance.py +0 -0
  886. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/misc.py +0 -0
  887. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/modify.py +0 -0
  888. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/prompt.py +0 -0
  889. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/report.py +0 -0
  890. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/sessions.py +0 -0
  891. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/templates.py +0 -0
  892. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/utility.py +0 -0
  893. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/commands/which.py +0 -0
  894. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/comment_line.py +0 -0
  895. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/config_resolution.py +0 -0
  896. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/conflicts_in_prompts.py +0 -0
  897. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/conflicts_main.py +0 -0
  898. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/content_selector.py +0 -0
  899. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/context_generator.py +0 -0
  900. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/context_generator_main.py +0 -0
  901. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/continue_generation.py +0 -0
  902. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/contract_check.py +0 -0
  903. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/contract_ir.py +0 -0
  904. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/core/__init__.py +0 -0
  905. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/core/cli.py +0 -0
  906. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/core/cloud.py +0 -0
  907. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/core/dump.py +0 -0
  908. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/core/duplicate_cli_guard.py +0 -0
  909. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/core/errors.py +0 -0
  910. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/core/llm_trace.py +0 -0
  911. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/core/remote_session.py +0 -0
  912. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/core/utils.py +0 -0
  913. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/coverage_contracts.py +0 -0
  914. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/crash_main.py +0 -0
  915. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/data/arena_elo_manifest.json +0 -0
  916. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/data/language_format.csv +0 -0
  917. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/detect_change.py +0 -0
  918. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/detect_change_main.py +0 -0
  919. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/docs/prompting_guide.md +0 -0
  920. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/durable_sync_runner.py +0 -0
  921. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/edit_file.py +0 -0
  922. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/embed_retrieve.py +0 -0
  923. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/evidence_manifest.py +0 -0
  924. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/extracts_prune.py +0 -0
  925. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/failure_classification.py +0 -0
  926. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/find_section.py +0 -0
  927. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/firecrawl_cache.py +0 -0
  928. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/fix_code_loop.py +0 -0
  929. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/fix_code_module_errors.py +0 -0
  930. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/fix_errors_from_unit_tests.py +0 -0
  931. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/fix_main.py +0 -0
  932. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/fix_verification_errors.py +0 -0
  933. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/fix_verification_errors_loop.py +0 -0
  934. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/fix_verification_main.py +0 -0
  935. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/.gitignore +0 -0
  936. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/App.tsx +0 -0
  937. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/README.md +0 -0
  938. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/AddModuleModal.tsx +0 -0
  939. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/AddToQueueModal.tsx +0 -0
  940. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/ArchitectureView.tsx +0 -0
  941. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/AuthStatusIndicator.tsx +0 -0
  942. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/BatchFilterDropdown.tsx +0 -0
  943. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/BugModal.tsx +0 -0
  944. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/ChangeModal.tsx +0 -0
  945. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/CommandForm.tsx +0 -0
  946. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/CommandOutput.tsx +0 -0
  947. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/CreatePromptModal.tsx +0 -0
  948. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/DependencyViewer.tsx +0 -0
  949. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/DeviceIndicator.tsx +0 -0
  950. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/ErrorBoundary.tsx +0 -0
  951. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/ExecutionModeToggle.tsx +0 -0
  952. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/ExtractsPanel.tsx +0 -0
  953. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/FileBrowser.tsx +0 -0
  954. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/FilePickerInput.tsx +0 -0
  955. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/GeneratedCommand.tsx +0 -0
  956. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/GenerationProgressModal.tsx +0 -0
  957. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/GraphToolbar.tsx +0 -0
  958. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/GroupEditModal.tsx +0 -0
  959. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/GroupNode.tsx +0 -0
  960. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/GuidanceSidebar.tsx +0 -0
  961. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/Header.tsx +0 -0
  962. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/Icon.tsx +0 -0
  963. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/InputField.tsx +0 -0
  964. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/JobCard.tsx +0 -0
  965. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/JobDashboard.tsx +0 -0
  966. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/JobOutputPanel.tsx +0 -0
  967. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/ModelSelector.tsx +0 -0
  968. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/ModelSliders.tsx +0 -0
  969. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/ModuleEditModal.tsx +0 -0
  970. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/ModuleNode.tsx +0 -0
  971. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/ProjectSettings.tsx +0 -0
  972. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/PromptCodeDiffModal.tsx +0 -0
  973. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/PromptEditor.tsx +0 -0
  974. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/PromptOrderModal.tsx +0 -0
  975. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/PromptSelector.tsx +0 -0
  976. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/ReauthModal.tsx +0 -0
  977. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/RemoteSessionSelector.tsx +0 -0
  978. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/SyncFromPromptModal.tsx +0 -0
  979. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/SyncOptionsModal.tsx +0 -0
  980. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/SyncStatusBadge.tsx +0 -0
  981. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/Tabs.tsx +0 -0
  982. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/TaskQueueControls.tsx +0 -0
  983. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/TaskQueueItem.tsx +0 -0
  984. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/TaskQueuePanel.tsx +0 -0
  985. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/TextAreaField.tsx +0 -0
  986. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/Toast.tsx +0 -0
  987. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/components/Tooltip.tsx +0 -0
  988. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/constants.ts +0 -0
  989. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/data/mockPrd.ts +0 -0
  990. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/data/mockPrompts.ts +0 -0
  991. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/hooks/useArchitectureHistory.ts +0 -0
  992. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/hooks/useAudioNotification.ts +0 -0
  993. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/hooks/useJobs.ts +0 -0
  994. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/hooks/useTaskQueue.ts +0 -0
  995. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/index.html +0 -0
  996. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/index.tsx +0 -0
  997. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/lib/batchUtils.ts +0 -0
  998. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/lib/commandBuilder.ts +0 -0
  999. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/lib/format.ts +0 -0
  1000. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/lib/includeAnalyzer.ts +0 -0
  1001. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/lib/pddAutocomplete.ts +0 -0
  1002. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/lib/pddDirectives.ts +0 -0
  1003. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/metadata.json +0 -0
  1004. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/package-lock.json +0 -0
  1005. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/package.json +0 -0
  1006. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/public/logo.svg +0 -0
  1007. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/tests/compact-font-direct-zoom.test.tsx +0 -0
  1008. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/tests/compact-font-size.test.ts +0 -0
  1009. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/tests/group-layout.test.ts +0 -0
  1010. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/tests/group-subflow-nodes.test.tsx +0 -0
  1011. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/tests/module-needs-sync.test.tsx +0 -0
  1012. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/tests/rearrange-discard.test.tsx +0 -0
  1013. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/tests/rearrange-positions.test.tsx +0 -0
  1014. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/tests/setup.ts +0 -0
  1015. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/tests/sync-completed-refresh.test.tsx +0 -0
  1016. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/tests/vp-zoom-sync.test.tsx +0 -0
  1017. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/tests/waypoint-edge.test.ts +0 -0
  1018. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/tsconfig.json +0 -0
  1019. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/types.ts +0 -0
  1020. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/frontend/vite.config.ts +0 -0
  1021. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/generate_output_paths.py +0 -0
  1022. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/generate_test.py +0 -0
  1023. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/generation_completion.py +0 -0
  1024. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/get_comment.py +0 -0
  1025. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/get_extension.py +0 -0
  1026. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/get_jwt_token.py +0 -0
  1027. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/get_language.py +0 -0
  1028. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/get_lint_commands.py +0 -0
  1029. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/get_run_command.py +0 -0
  1030. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/get_test_command.py +0 -0
  1031. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/git_porcelain.py +0 -0
  1032. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/git_update.py +0 -0
  1033. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/include_query_extractor.py +0 -0
  1034. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/increase_tests.py +0 -0
  1035. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/incremental_code_generator.py +0 -0
  1036. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/incremental_prd_architecture.py +0 -0
  1037. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/insert_includes.py +0 -0
  1038. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/install_completion.py +0 -0
  1039. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/json_atomic.py +0 -0
  1040. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/list_drift_detection.py +0 -0
  1041. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/load_prompt_template.py +0 -0
  1042. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/logo_animation.py +0 -0
  1043. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/mcp_config.json +0 -0
  1044. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/metadata_sync.py +0 -0
  1045. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/model_tester.py +0 -0
  1046. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/one_session_sync.py +0 -0
  1047. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/operation_log.py +0 -0
  1048. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/path_resolution.py +0 -0
  1049. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/pddrc_initializer.py +0 -0
  1050. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/pin_example_hack.py +0 -0
  1051. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/postprocess.py +0 -0
  1052. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/postprocess_0.py +0 -0
  1053. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/preprocess.py +0 -0
  1054. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/preprocess_main.py +0 -0
  1055. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/process_csv_change.py +0 -0
  1056. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompt_lint.py +0 -0
  1057. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/Makefile_makefile.prompt +0 -0
  1058. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/_keyring_timeout_python.prompt +0 -0
  1059. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step10_completeness_LLM.prompt +0 -0
  1060. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step11_sync_LLM.prompt +0 -0
  1061. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step12_deps_LLM.prompt +0 -0
  1062. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step13_fix_LLM.prompt +0 -0
  1063. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step1_analyze_prd_LLM.prompt +0 -0
  1064. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step1b_complexity_LLM.prompt +0 -0
  1065. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step2_analyze_LLM.prompt +0 -0
  1066. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step2b_codebase_scan_LLM.prompt +0 -0
  1067. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step3_research_LLM.prompt +0 -0
  1068. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step4_data_model_LLM.prompt +0 -0
  1069. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step5_design_LLM.prompt +0 -0
  1070. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step5b_completeness_gate_LLM.prompt +0 -0
  1071. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step5b_fix_LLM.prompt +0 -0
  1072. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step6_research_deps_LLM.prompt +0 -0
  1073. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step7_generate_LLM.prompt +0 -0
  1074. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step7b_review_LLM.prompt +0 -0
  1075. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step8_5_context_docs_LLM.prompt +0 -0
  1076. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step8_pddrc_LLM.prompt +0 -0
  1077. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step9_prompts_LLM.prompt +0 -0
  1078. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_arch_step9b_cross_audit_LLM.prompt +0 -0
  1079. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_architecture_orchestrator_python.prompt +0 -0
  1080. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_architecture_python.prompt +0 -0
  1081. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_bug_orchestrator_python.prompt +0 -0
  1082. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_bug_python.prompt +0 -0
  1083. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_bug_step10_verify_LLM.prompt +0 -0
  1084. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_bug_step11_e2e_test_LLM.prompt +0 -0
  1085. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_bug_step12_pr_LLM.prompt +0 -0
  1086. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_bug_step1_duplicate_LLM.prompt +0 -0
  1087. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_bug_step2_docs_LLM.prompt +0 -0
  1088. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_bug_step3_triage_LLM.prompt +0 -0
  1089. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_bug_step4_api_research_LLM.prompt +0 -0
  1090. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_bug_step5_reproduce_LLM.prompt +0 -0
  1091. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_bug_step6_root_cause_LLM.prompt +0 -0
  1092. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_bug_step7_prompt_classification_LLM.prompt +0 -0
  1093. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_bug_step8_test_plan_LLM.prompt +0 -0
  1094. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_bug_step9_generate_LLM.prompt +0 -0
  1095. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_change_orchestrator_python.prompt +0 -0
  1096. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_change_python.prompt +0 -0
  1097. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_change_step10_architecture_update_LLM.prompt +0 -0
  1098. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_change_step11_identify_issues_LLM.prompt +0 -0
  1099. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_change_step12_fix_issues_LLM.prompt +0 -0
  1100. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_change_step13_create_pr_LLM.prompt +0 -0
  1101. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_change_step1_duplicate_LLM.prompt +0 -0
  1102. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_change_step2_docs_LLM.prompt +0 -0
  1103. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_change_step3_research_LLM.prompt +0 -0
  1104. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_change_step4_clarify_LLM.prompt +0 -0
  1105. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_change_step5_docs_change_LLM.prompt +0 -0
  1106. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_change_step6_devunits_LLM.prompt +0 -0
  1107. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_change_step7_architecture_LLM.prompt +0 -0
  1108. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_change_step8_analyze_LLM.prompt +0 -0
  1109. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_change_step9_implement_LLM.prompt +0 -0
  1110. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_checkup_python.prompt +0 -0
  1111. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_checkup_step1_discover_LLM.prompt +0 -0
  1112. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_checkup_step2_deps_LLM.prompt +0 -0
  1113. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_checkup_step3_build_LLM.prompt +0 -0
  1114. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_checkup_step4_interfaces_LLM.prompt +0 -0
  1115. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_checkup_step6_2_regression_tests_LLM.prompt +0 -0
  1116. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_checkup_step6_3_e2e_tests_LLM.prompt +0 -0
  1117. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_checkup_step7_verify_LLM.prompt +0 -0
  1118. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_checkup_step8_create_pr_LLM.prompt +0 -0
  1119. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_common_worktree_python.prompt +0 -0
  1120. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_crash_explore_LLM.prompt +0 -0
  1121. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_crash_python.prompt +0 -0
  1122. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_e2e_fix_orchestrator_python.prompt +0 -0
  1123. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_e2e_fix_python.prompt +0 -0
  1124. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_e2e_fix_step10_ci_validation_LLM.prompt +0 -0
  1125. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_e2e_fix_step11_code_cleanup_LLM.prompt +0 -0
  1126. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_e2e_fix_step1_unit_tests_LLM.prompt +0 -0
  1127. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_e2e_fix_step2_e2e_tests_LLM.prompt +0 -0
  1128. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_e2e_fix_step3_root_cause_LLM.prompt +0 -0
  1129. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_e2e_fix_step4_fix_e2e_tests_LLM.prompt +0 -0
  1130. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_e2e_fix_step5_identify_devunits_LLM.prompt +0 -0
  1131. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_e2e_fix_step6_create_unit_tests_LLM.prompt +0 -0
  1132. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_e2e_fix_step7_verify_tests_LLM.prompt +0 -0
  1133. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_e2e_fix_step8_run_pdd_fix_LLM.prompt +0 -0
  1134. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_e2e_fix_step9_verify_all_LLM.prompt +0 -0
  1135. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_fix_explore_LLM.prompt +0 -0
  1136. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_fix_nonpython_LLM.prompt +0 -0
  1137. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_fix_primary_LLM.prompt +0 -0
  1138. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_fix_python.prompt +0 -0
  1139. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_langtest_python.prompt +0 -0
  1140. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_split_orchestrator_python.prompt +0 -0
  1141. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_split_python.prompt +0 -0
  1142. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_split_step0_intent_LLM.prompt +0 -0
  1143. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_split_step1_survey_LLM.prompt +0 -0
  1144. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_split_step2_diagnose_LLM.prompt +0 -0
  1145. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_split_step3_investigate_LLM.prompt +0 -0
  1146. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_split_step4_propose_options_LLM.prompt +0 -0
  1147. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_split_step6_extract_LLM.prompt +0 -0
  1148. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_split_step6a_phase_extract_LLM.prompt +0 -0
  1149. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_split_step7_assess_LLM.prompt +0 -0
  1150. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_split_step8_repair_LLM.prompt +0 -0
  1151. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_split_step9_refine_check_LLM.prompt +0 -0
  1152. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_sync_fix_dry_run_LLM.prompt +0 -0
  1153. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_sync_identify_modules_LLM.prompt +0 -0
  1154. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_sync_python.prompt +0 -0
  1155. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_sync_runner_python.prompt +0 -0
  1156. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_generate_python.prompt +0 -0
  1157. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_orchestrator_python.prompt +0 -0
  1158. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_python.prompt +0 -0
  1159. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step10_validate_LLM.prompt +0 -0
  1160. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step11_loop_LLM.prompt +0 -0
  1161. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step15_plan_validation_LLM.prompt +0 -0
  1162. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step16_run_tests_LLM.prompt +0 -0
  1163. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step1_duplicate_LLM.prompt +0 -0
  1164. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step2_docs_LLM.prompt +0 -0
  1165. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step3_clarify_LLM.prompt +0 -0
  1166. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step4_detect_frontend_LLM.prompt +0 -0
  1167. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step5_test_plan_LLM.prompt +0 -0
  1168. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step5b_enhance_plan_LLM.prompt +0 -0
  1169. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step6_coverage_LLM.prompt +0 -0
  1170. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step6_generate_tests_LLM.prompt +0 -0
  1171. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step7_checklist_LLM.prompt +0 -0
  1172. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step7_run_tests_LLM.prompt +0 -0
  1173. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step8_fix_iterate_LLM.prompt +0 -0
  1174. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step8_manual_test_LLM.prompt +0 -0
  1175. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step9_regression_LLM.prompt +0 -0
  1176. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_test_step9_submit_pr_LLM.prompt +0 -0
  1177. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_update_LLM.prompt +0 -0
  1178. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_update_python.prompt +0 -0
  1179. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_verify_explore_LLM.prompt +0 -0
  1180. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/agentic_verify_python.prompt +0 -0
  1181. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/api_key_scanner_python.prompt +0 -0
  1182. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/architecture_include_validation_python.prompt +0 -0
  1183. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/architecture_registry_python.prompt +0 -0
  1184. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/architecture_sync_python.prompt +0 -0
  1185. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/arrange_graph_layout_LLM.prompt +0 -0
  1186. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/auth_service_python.prompt +0 -0
  1187. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/auto_deps_architecture_python.prompt +0 -0
  1188. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/auto_deps_main_python.prompt +0 -0
  1189. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/auto_include_LLM.prompt +0 -0
  1190. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/auto_include_python.prompt +0 -0
  1191. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/auto_update_python.prompt +0 -0
  1192. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/bug_main_python.prompt +0 -0
  1193. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/bug_to_unit_test_LLM.prompt +0 -0
  1194. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/bug_to_unit_test_python.prompt +0 -0
  1195. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/change_LLM.prompt +0 -0
  1196. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/change_main_python.prompt +0 -0
  1197. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/change_python.prompt +0 -0
  1198. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/ci_detect_changed_modules_python.prompt +0 -0
  1199. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/ci_drift_heal_python.prompt +0 -0
  1200. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/ci_validation_python.prompt +0 -0
  1201. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/cli_branding_python.prompt +0 -0
  1202. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/cli_detector_python.prompt +0 -0
  1203. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/cli_python.prompt +0 -0
  1204. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/cmd_test_main_python.prompt +0 -0
  1205. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/code_generator_main_python.prompt +0 -0
  1206. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/code_generator_python.prompt +0 -0
  1207. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/code_patcher_LLM.prompt +0 -0
  1208. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/combine.sh +0 -0
  1209. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/combined_output.txt +0 -0
  1210. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/commands/__init___python.prompt +0 -0
  1211. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/commands/analysis_python.prompt +0 -0
  1212. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/commands/auth_python.prompt +0 -0
  1213. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/commands/connect_python.prompt +0 -0
  1214. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/commands/contracts_python.prompt +0 -0
  1215. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/commands/firecrawl_python.prompt +0 -0
  1216. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/commands/fix_python.prompt +0 -0
  1217. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/commands/generate_python.prompt +0 -0
  1218. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/commands/maintenance_python.prompt +0 -0
  1219. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/commands/misc_python.prompt +0 -0
  1220. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/commands/modify_python.prompt +0 -0
  1221. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/commands/prompt_python.prompt +0 -0
  1222. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/commands/report_python.prompt +0 -0
  1223. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/commands/sessions_python.prompt +0 -0
  1224. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/commands/templates_python.prompt +0 -0
  1225. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/commands/utility_python.prompt +0 -0
  1226. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/commands/which_python.prompt +0 -0
  1227. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/comment_line_python.prompt +0 -0
  1228. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/config_resolution_python.prompt +0 -0
  1229. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/conflict_LLM.prompt +0 -0
  1230. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/conflicts_in_prompts_python.prompt +0 -0
  1231. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/conflicts_main_python.prompt +0 -0
  1232. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/content_selector_python.prompt +0 -0
  1233. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/context_generator_main_python.prompt +0 -0
  1234. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/context_generator_python.prompt +0 -0
  1235. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/continue_generation_LLM.prompt +0 -0
  1236. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/continue_generation_python.prompt +0 -0
  1237. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/contract_check_python.prompt +0 -0
  1238. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/contract_ir_python.prompt +0 -0
  1239. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/core/cli_python.prompt +0 -0
  1240. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/core/cloud_python.prompt +0 -0
  1241. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/core/dump_python.prompt +0 -0
  1242. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/core/duplicate_cli_guard_python.prompt +0 -0
  1243. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/core/errors_python.prompt +0 -0
  1244. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/core/remote_session_python.prompt +0 -0
  1245. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/core/utils_python.prompt +0 -0
  1246. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/core_dump_requirements_LLM.prompt +0 -0
  1247. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/core_dump_smoke_python.prompt +0 -0
  1248. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/coverage_contracts_python.prompt +0 -0
  1249. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/crash_main_python.prompt +0 -0
  1250. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/cross_issue_reconcile_LLM.prompt +0 -0
  1251. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/detect_change_LLM.prompt +0 -0
  1252. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/detect_change_main_python.prompt +0 -0
  1253. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/detect_change_python.prompt +0 -0
  1254. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/diff_analyzer_LLM.prompt +0 -0
  1255. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/durable_sync_runner_python.prompt +0 -0
  1256. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/edit_file_python.prompt +0 -0
  1257. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/embed_retrieve_python.prompt +0 -0
  1258. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/evidence_manifest_python.prompt +0 -0
  1259. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/example_generator_LLM.prompt +0 -0
  1260. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/extract_code_LLM.prompt +0 -0
  1261. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/extract_conflict_LLM.prompt +0 -0
  1262. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/extract_detect_change_LLM.prompt +0 -0
  1263. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/extract_program_code_fix_LLM.prompt +0 -0
  1264. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/extract_prompt_change_LLM.prompt +0 -0
  1265. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/extract_prompt_split_LLM.prompt +0 -0
  1266. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/extract_prompt_update_LLM.prompt +0 -0
  1267. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/extract_promptline_LLM.prompt +0 -0
  1268. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/extract_unit_code_fix_LLM.prompt +0 -0
  1269. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/extract_xml_LLM.prompt +0 -0
  1270. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/extracts_prune_python.prompt +0 -0
  1271. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/failure_classification_python.prompt +0 -0
  1272. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/find_section_python.prompt +0 -0
  1273. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/find_verification_errors_LLM.prompt +0 -0
  1274. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/firecrawl_cache_python.prompt +0 -0
  1275. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/fix_code_loop_python.prompt +0 -0
  1276. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/fix_code_module_errors_LLM.prompt +0 -0
  1277. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/fix_code_module_errors_python.prompt +0 -0
  1278. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/fix_errors_from_unit_tests_LLM.prompt +0 -0
  1279. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/fix_errors_from_unit_tests_python.prompt +0 -0
  1280. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/fix_main_python.prompt +0 -0
  1281. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/fix_verification_errors_LLM.prompt +0 -0
  1282. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/fix_verification_errors_loop_python.prompt +0 -0
  1283. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/fix_verification_errors_python.prompt +0 -0
  1284. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/fix_verification_main_python.prompt +0 -0
  1285. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/App_typescriptreact.prompt +0 -0
  1286. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/api_typescript.prompt +0 -0
  1287. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/AddModuleModal_typescriptreact.prompt +0 -0
  1288. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/AddToQueueModal_typescriptreact.prompt +0 -0
  1289. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/ArchitectureView_typescriptreact.prompt +0 -0
  1290. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/AuthStatusIndicator_typescriptreact.prompt +0 -0
  1291. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/BatchFilterDropdown_typescriptreact.prompt +0 -0
  1292. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/BugModal_typescriptreact.prompt +0 -0
  1293. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/ChangeModal_typescriptreact.prompt +0 -0
  1294. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/CommandForm_typescriptreact.prompt +0 -0
  1295. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/CommandOutput_typescriptreact.prompt +0 -0
  1296. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/CreatePromptModal_typescriptreact.prompt +0 -0
  1297. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/DependencyViewer_typescriptreact.prompt +0 -0
  1298. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/DeviceIndicator_typescriptreact.prompt +0 -0
  1299. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/ErrorBoundary_typescriptreact.prompt +0 -0
  1300. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/ExecutionModeToggle_typescriptreact.prompt +0 -0
  1301. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/FileBrowser_typescriptreact.prompt +0 -0
  1302. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/FilePickerInput_typescriptreact.prompt +0 -0
  1303. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/GeneratedCommand_typescriptreact.prompt +0 -0
  1304. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/GenerationProgressModal_typescriptreact.prompt +0 -0
  1305. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/GraphToolbar_typescriptreact.prompt +0 -0
  1306. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/GuidanceSidebar_typescriptreact.prompt +0 -0
  1307. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/Header_typescriptreact.prompt +0 -0
  1308. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/Icon_typescriptreact.prompt +0 -0
  1309. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/InputField_typescriptreact.prompt +0 -0
  1310. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/JobCard_typescriptreact.prompt +0 -0
  1311. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/JobDashboard_typescriptreact.prompt +0 -0
  1312. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/JobOutputPanel_typescriptreact.prompt +0 -0
  1313. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/ModelSelector_typescriptreact.prompt +0 -0
  1314. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/ModelSliders_typescriptreact.prompt +0 -0
  1315. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/ModuleEditModal_typescriptreact.prompt +0 -0
  1316. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/ModuleNode_typescriptreact.prompt +0 -0
  1317. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/ProjectSettings_typescriptreact.prompt +0 -0
  1318. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/PromptCodeDiffModal_typescriptreact.prompt +0 -0
  1319. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/PromptEditor_typescriptreact.prompt +0 -0
  1320. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/PromptMetricsBar_typescriptreact.prompt +0 -0
  1321. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/PromptOrderModal_typescriptreact.prompt +0 -0
  1322. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/PromptSelector_typescriptreact.prompt +0 -0
  1323. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/PromptSpace_typescriptreact.prompt +0 -0
  1324. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/ReauthModal_typescriptreact.prompt +0 -0
  1325. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/RemoteSessionSelector_typescriptreact.prompt +0 -0
  1326. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/SyncFromPromptModal_typescriptreact.prompt +0 -0
  1327. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/SyncOptionsModal_typescriptreact.prompt +0 -0
  1328. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/SyncStatusBadge_typescriptreact.prompt +0 -0
  1329. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/Tabs_typescriptreact.prompt +0 -0
  1330. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/TaskQueueControls_typescriptreact.prompt +0 -0
  1331. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/TaskQueueItem_typescriptreact.prompt +0 -0
  1332. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/TaskQueuePanel_typescriptreact.prompt +0 -0
  1333. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/TextAreaField_typescriptreact.prompt +0 -0
  1334. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/Toast_typescriptreact.prompt +0 -0
  1335. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/components/Tooltip_typescriptreact.prompt +0 -0
  1336. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/constants_typescript.prompt +0 -0
  1337. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/hooks/useArchitectureHistory_typescript.prompt +0 -0
  1338. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/hooks/useAudioNotification_typescript.prompt +0 -0
  1339. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/hooks/useJobs_typescript.prompt +0 -0
  1340. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/hooks/useTaskQueue_typescript.prompt +0 -0
  1341. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/index_typescriptreact.prompt +0 -0
  1342. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/frontend/types_typescript.prompt +0 -0
  1343. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/generate_output_paths_python.prompt +0 -0
  1344. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/generate_test_python.prompt +0 -0
  1345. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/generation_completion_python.prompt +0 -0
  1346. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/get_comment_python.prompt +0 -0
  1347. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/get_extension_python.prompt +0 -0
  1348. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/get_jwt_token_python.prompt +0 -0
  1349. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/get_language_python.prompt +0 -0
  1350. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/get_lint_commands_python.prompt +0 -0
  1351. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/get_run_command_python.prompt +0 -0
  1352. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/get_test_command_python.prompt +0 -0
  1353. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/git_porcelain_python.prompt +0 -0
  1354. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/git_update_python.prompt +0 -0
  1355. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/include_query_extractor_LLM.prompt +0 -0
  1356. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/include_query_extractor_python.prompt +0 -0
  1357. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/increase_tests_LLM.prompt +0 -0
  1358. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/increase_tests_python.prompt +0 -0
  1359. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/incremental_code_generator_python.prompt +0 -0
  1360. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/incremental_prd_architecture_patch_LLM.prompt +0 -0
  1361. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/incremental_prd_architecture_python.prompt +0 -0
  1362. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/insert_includes_LLM.prompt +0 -0
  1363. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/insert_includes_python.prompt +0 -0
  1364. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/install_completion_python.prompt +0 -0
  1365. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/language_format_csv.prompt +0 -0
  1366. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/llm_model_csv.prompt +0 -0
  1367. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/load_prompt_template_python.prompt +0 -0
  1368. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/logo_animation_python.prompt +0 -0
  1369. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/main_gen_prompt.prompt +0 -0
  1370. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/metadata_sync_python.prompt +0 -0
  1371. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/model_tester_python.prompt +0 -0
  1372. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/one_session_agent_LLM.prompt +0 -0
  1373. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/one_session_sync_python.prompt +0 -0
  1374. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/operation_log_python.prompt +0 -0
  1375. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/path_resolution_python.prompt +0 -0
  1376. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/pdd_completion_bash.prompt +0 -0
  1377. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/pdd_completion_fish.prompt +0 -0
  1378. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/pdd_completion_zsh.prompt +0 -0
  1379. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/pdd_theme_json.prompt +0 -0
  1380. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/pddrc_initializer_python.prompt +0 -0
  1381. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/pin_example_hack_python.prompt +0 -0
  1382. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/post_gen_verify_LLM.prompt +0 -0
  1383. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/postprocess_0_python.prompt +0 -0
  1384. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/postprocess_python.prompt +0 -0
  1385. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/preprocess_main_python.prompt +0 -0
  1386. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/preprocess_python.prompt +0 -0
  1387. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/process_csv_change_python.prompt +0 -0
  1388. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/prompt_code_diff_LLM.prompt +0 -0
  1389. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/prompt_diff_LLM.prompt +0 -0
  1390. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/prompt_lint_LLM.prompt +0 -0
  1391. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/prompt_lint_python.prompt +0 -0
  1392. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/prompt_tester_python.prompt +0 -0
  1393. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/provider_manager_python.prompt +0 -0
  1394. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/pypi_description_restructuredtext.prompt +0 -0
  1395. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/pyproject_toml.prompt +0 -0
  1396. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/pytest_output_python.prompt +0 -0
  1397. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/python_env_detector_python.prompt +0 -0
  1398. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/reasoning_python.prompt +0 -0
  1399. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/regression_analysis_log.prompt +0 -0
  1400. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/regression_bash.prompt +0 -0
  1401. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/remote_session_python.prompt +0 -0
  1402. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/render_mermaid_python.prompt +0 -0
  1403. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/resurface_check_Python.prompt +0 -0
  1404. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/run_generated_python.prompt +0 -0
  1405. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/__init___python.prompt +0 -0
  1406. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/app_python.prompt +0 -0
  1407. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/click_executor_python.prompt +0 -0
  1408. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/executor_python.prompt +0 -0
  1409. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/jobs_python.prompt +0 -0
  1410. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/models_python.prompt +0 -0
  1411. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/routes/__init___python.prompt +0 -0
  1412. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/routes/architecture_python.prompt +0 -0
  1413. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/routes/auth_python.prompt +0 -0
  1414. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/routes/commands_python.prompt +0 -0
  1415. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/routes/config_python.prompt +0 -0
  1416. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/routes/extracts_python.prompt +0 -0
  1417. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/routes/files_python.prompt +0 -0
  1418. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/routes/prompts_python.prompt +0 -0
  1419. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/routes/session_python.prompt +0 -0
  1420. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/routes/websocket_python.prompt +0 -0
  1421. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/security_python.prompt +0 -0
  1422. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/terminal_spawner_python.prompt +0 -0
  1423. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/server/token_counter_python.prompt +0 -0
  1424. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/split_LLM.prompt +0 -0
  1425. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/split_main_python.prompt +0 -0
  1426. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/split_python.prompt +0 -0
  1427. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/split_validation_python.prompt +0 -0
  1428. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/summarize_directory_python.prompt +0 -0
  1429. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/summarize_file_LLM.prompt +0 -0
  1430. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/sync_analysis_LLM.prompt +0 -0
  1431. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/sync_animation_python.prompt +0 -0
  1432. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/sync_determine_operation_python.prompt +0 -0
  1433. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/sync_main_python.prompt +0 -0
  1434. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/sync_orchestration_python.prompt +0 -0
  1435. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/sync_order_python.prompt +0 -0
  1436. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/sync_tui_python.prompt +0 -0
  1437. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/template_expander_python.prompt +0 -0
  1438. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/template_registry_python.prompt +0 -0
  1439. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/trace_LLM.prompt +0 -0
  1440. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/trace_main_python.prompt +0 -0
  1441. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/trace_python.prompt +0 -0
  1442. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/track_cost_python.prompt +0 -0
  1443. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/trim_results_LLM.prompt +0 -0
  1444. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/trim_results_start_LLM.prompt +0 -0
  1445. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/unfinished_prompt_LLM.prompt +0 -0
  1446. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/unfinished_prompt_python.prompt +0 -0
  1447. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/update_main_python.prompt +0 -0
  1448. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/update_model_costs_python.prompt +0 -0
  1449. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/update_prompt_LLM.prompt +0 -0
  1450. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/update_prompt_python.prompt +0 -0
  1451. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/validate_prompt_includes_python.prompt +0 -0
  1452. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/xml/change_LLM.prompt +0 -0
  1453. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/xml/change_example_full.prompt +0 -0
  1454. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/xml/change_example_partial.prompt +0 -0
  1455. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/xml/change_example_partial_processed.prompt +0 -0
  1456. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/xml/split_LLM.prompt +0 -0
  1457. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/xml_convertor_LLM.prompt +0 -0
  1458. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/prompts/xml_tagger_python.prompt +0 -0
  1459. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/provider_manager.py +0 -0
  1460. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/pytest_output.py +0 -0
  1461. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/python_env_detector.py +0 -0
  1462. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/reasoning.py +0 -0
  1463. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/remote_session.py +0 -0
  1464. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/render_mermaid.py +0 -0
  1465. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/schemas/evidence_manifest.schema.json +0 -0
  1466. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/server/__init__.py +0 -0
  1467. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/server/app.py +0 -0
  1468. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/server/click_executor.py +0 -0
  1469. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/server/executor.py +0 -0
  1470. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/server/jobs.py +0 -0
  1471. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/server/models.py +0 -0
  1472. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/server/routes/__init__.py +0 -0
  1473. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/server/routes/architecture.py +0 -0
  1474. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/server/routes/auth.py +0 -0
  1475. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/server/routes/commands.py +0 -0
  1476. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/server/routes/config.py +0 -0
  1477. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/server/routes/extracts.py +0 -0
  1478. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/server/routes/files.py +0 -0
  1479. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/server/routes/websocket.py +0 -0
  1480. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/server/security.py +0 -0
  1481. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/server/terminal_spawner.py +0 -0
  1482. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/server/token_counter.py +0 -0
  1483. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/split.py +0 -0
  1484. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/split_main.py +0 -0
  1485. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/split_validation.py +0 -0
  1486. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/summarize_directory.py +0 -0
  1487. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/sync_animation.py +0 -0
  1488. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/sync_graph_order_consistency.py +0 -0
  1489. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/sync_main.py +0 -0
  1490. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/sync_orchestration.py +0 -0
  1491. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/sync_order.py +0 -0
  1492. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/sync_tui.py +0 -0
  1493. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/template_expander.py +0 -0
  1494. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/template_registry.py +0 -0
  1495. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/templates/architecture/architecture_json.prompt +0 -0
  1496. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/templates/architecture/example_nextjs_task_notes.prompt +0 -0
  1497. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/templates/architecture/example_python_backend.prompt +0 -0
  1498. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/templates/architecture/pdd_path_construction_guide.prompt +0 -0
  1499. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/templates/generic/generate_prompt.prompt +0 -0
  1500. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/test_result.py +0 -0
  1501. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/trace.py +0 -0
  1502. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/trace_main.py +0 -0
  1503. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/track_cost.py +0 -0
  1504. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/unfinished_prompt.py +0 -0
  1505. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/update_main.py +0 -0
  1506. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/update_model_costs.py +0 -0
  1507. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/update_prompt.py +0 -0
  1508. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/validate_prompt_includes.py +0 -0
  1509. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd/xml_tagger.py +0 -0
  1510. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd-local.sh +0 -0
  1511. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd_cli.egg-info/dependency_links.txt +0 -0
  1512. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd_cli.egg-info/entry_points.txt +0 -0
  1513. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd_cli.egg-info/requires.txt +0 -0
  1514. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pdd_cli.egg-info/top_level.txt +0 -0
  1515. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pr_summary.md +0 -0
  1516. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/project_dependencies.csv +0 -0
  1517. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pypi_description.rst +0 -0
  1518. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pyrightconfig.json +0 -0
  1519. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/pytest.ini +0 -0
  1520. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/scripts/check_deps.py +0 -0
  1521. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/scripts/ci_detect_changed_modules.py +0 -0
  1522. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/scripts/copy_package_data_to_public.py +0 -0
  1523. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/scripts/extract_wheel.py +0 -0
  1524. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/scripts/preprocess_wheel.py +0 -0
  1525. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/setup.cfg +0 -0
  1526. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/__init__.py +0 -0
  1527. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/cloud_regression.sh +0 -0
  1528. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/commands/__init__.py +0 -0
  1529. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/commands/test_analysis.py +0 -0
  1530. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/commands/test_auth.py +0 -0
  1531. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/commands/test_checkup.py +0 -0
  1532. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/commands/test_checkup_contracts.py +0 -0
  1533. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/commands/test_connect.py +0 -0
  1534. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/commands/test_coverage.py +0 -0
  1535. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/commands/test_evidence.py +0 -0
  1536. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/commands/test_fix.py +0 -0
  1537. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/commands/test_generate.py +0 -0
  1538. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/commands/test_maintenance.py +0 -0
  1539. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/commands/test_modify.py +0 -0
  1540. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/commands/test_sessions.py +0 -0
  1541. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/commands/test_utility.py +0 -0
  1542. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/core/__init__.py +0 -0
  1543. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/core/test_cli.py +0 -0
  1544. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/core/test_cloud.py +0 -0
  1545. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/core/test_remote_session.py +0 -0
  1546. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/arch_include_validate_ok/architecture.json +0 -0
  1547. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/arch_include_validate_ok/prompts/child_Python.prompt +0 -0
  1548. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/arch_include_validate_ok/prompts/parent_Python.prompt +0 -0
  1549. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/autoheal_1187_post.prompt +0 -0
  1550. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/autoheal_1187_pre.prompt +0 -0
  1551. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/conftest.py +0 -0
  1552. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/auth_service_clean_python.prompt +0 -0
  1553. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/capabilities_no_modal_python.prompt +0 -0
  1554. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/coverage_unchecked_python.prompt +0 -0
  1555. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/duplicate_ids_python.prompt +0 -0
  1556. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/legacy_no_sections_python.prompt +0 -0
  1557. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/malformed_ids_python.prompt +0 -0
  1558. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/missing_modal_python.prompt +0 -0
  1559. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/non_sequential_ids_python.prompt +0 -0
  1560. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/payment_api_clean_python.prompt +0 -0
  1561. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/payment_api_issues_python.prompt +0 -0
  1562. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/rate_limiter_issues_python.prompt +0 -0
  1563. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/story__covers_rule_ids.md +0 -0
  1564. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/story__cross_module_covers.md +0 -0
  1565. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/story__payment_bad_refs.md +0 -0
  1566. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/story__payment_flow.md +0 -0
  1567. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/story__unknown_rule_ids.md +0 -0
  1568. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/uncovered_mustnot_python.prompt +0 -0
  1569. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/unknown_coverage_refs_python.prompt +0 -0
  1570. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/vague_no_vocab_python.prompt +0 -0
  1571. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/vague_with_vocab_python.prompt +0 -0
  1572. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/valid_contract_python.prompt +0 -0
  1573. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/waiver_expired_python.prompt +0 -0
  1574. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/waiver_missing_fields_python.prompt +0 -0
  1575. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/waiver_ref_missing_python.prompt +0 -0
  1576. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/waiver_valid_python.prompt +0 -0
  1577. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/contract_check/with_coverage_python.prompt +0 -0
  1578. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/coverage_contracts/failed_receipt_python.prompt +0 -0
  1579. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/coverage_contracts/fake_tests/test_receipt_failed.py +0 -0
  1580. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/coverage_contracts/fake_tests/test_refund.py +0 -0
  1581. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/coverage_contracts/legacy_no_contracts_python.prompt +0 -0
  1582. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/coverage_contracts/refund_payment_python.prompt +0 -0
  1583. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/coverage_contracts/stories/story__receipt_missing_acceptance.md +0 -0
  1584. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/coverage_contracts/stories/story__refund_idempotency.md +0 -0
  1585. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/coverage_contracts/stories/story__refund_invalid.md +0 -0
  1586. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/encode_message_python.prompt +0 -0
  1587. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/issue591_behavioral_signal_test.py.fixture +0 -0
  1588. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/issue591_dockerfile_test.py.fixture +0 -0
  1589. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/issue591_structural_getsource_test.py.fixture +0 -0
  1590. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/one_session_eval/one_session_agent_LLM_original.prompt +0 -0
  1591. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/one_session_eval/s7_large_code_bug/examples/llm_client_example.py +0 -0
  1592. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/one_session_eval/s7_large_code_bug/prompts/llm_client_python.prompt +0 -0
  1593. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/one_session_eval/s7_large_code_bug/scenario.json +0 -0
  1594. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/one_session_eval/s7_large_code_bug/src/llm_client.py +0 -0
  1595. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/one_session_eval/s7_large_code_bug/tests/test_llm_client.py +0 -0
  1596. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/one_session_eval/s8_large_minimal_tests/examples/workflow_engine_example.py +0 -0
  1597. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/one_session_eval/s8_large_minimal_tests/prompts/workflow_engine_python.prompt +0 -0
  1598. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/one_session_eval/s8_large_minimal_tests/scenario.json +0 -0
  1599. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/one_session_eval/s8_large_minimal_tests/src/workflow_engine.py +0 -0
  1600. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/one_session_eval/s8_large_minimal_tests/tests/test_workflow_engine.py +0 -0
  1601. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/one_session_eval/s9_large_wrong_tests/examples/config_manager_example.py +0 -0
  1602. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/one_session_eval/s9_large_wrong_tests/prompts/config_manager_python.prompt +0 -0
  1603. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/one_session_eval/s9_large_wrong_tests/scenario.json +0 -0
  1604. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/one_session_eval/s9_large_wrong_tests/src/config_manager.py +0 -0
  1605. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/one_session_eval/s9_large_wrong_tests/tests/test_config_manager.py +0 -0
  1606. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/prompt_lint/clean.prompt +0 -0
  1607. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/prompt_lint/llm_template_empty_LLM.prompt +0 -0
  1608. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/prompt_lint/payment_api.py +0 -0
  1609. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/prompt_lint/payment_api_clean_python.prompt +0 -0
  1610. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/prompt_lint/payment_api_python.prompt +0 -0
  1611. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/prompt_lint/story__clean.md +0 -0
  1612. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/prompt_lint/story__covers.md +0 -0
  1613. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/prompt_lint/story__payment_api.md +0 -0
  1614. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/prompt_lint/story__payment_vague.md +0 -0
  1615. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/prompt_lint/story__vague_criteria.md +0 -0
  1616. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/prompt_lint/strict_terms_python.prompt +0 -0
  1617. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/prompt_lint/upload_handler_python.prompt +0 -0
  1618. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/prompt_lint/upload_handler_with_vocab_python.prompt +0 -0
  1619. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/prompt_lint/vague_defined.prompt +0 -0
  1620. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/prompt_lint/vague_undefined.prompt +0 -0
  1621. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/simple_math.py +0 -0
  1622. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/simple_math_example.py +0 -0
  1623. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/simple_math_python.prompt +0 -0
  1624. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/sub_simple_math.prompt +0 -0
  1625. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/test_other_python.prompt +0 -0
  1626. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/test_simple_math.py +0 -0
  1627. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/fixtures/updated_simple_math_python.prompt +0 -0
  1628. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/isolated_verify.py +0 -0
  1629. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/prompt_tester.py +0 -0
  1630. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/regression.sh +0 -0
  1631. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/regression_public.sh +0 -0
  1632. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/__init__.py +0 -0
  1633. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/conftest.py +0 -0
  1634. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/routes/__init__.py +0 -0
  1635. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/routes/conftest.py +0 -0
  1636. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/routes/test_architecture.py +0 -0
  1637. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/routes/test_auth.py +0 -0
  1638. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/routes/test_commands.py +0 -0
  1639. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/routes/test_config.py +0 -0
  1640. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/routes/test_extracts.py +0 -0
  1641. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/routes/test_files.py +0 -0
  1642. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/routes/test_prompts.py +0 -0
  1643. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/routes/test_routes_init.py +0 -0
  1644. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/routes/test_websocket.py +0 -0
  1645. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/test___init__.py +0 -0
  1646. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/test_app.py +0 -0
  1647. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/test_click_executor.py +0 -0
  1648. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/test_executor.py +0 -0
  1649. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/test_jobs.py +0 -0
  1650. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/test_models.py +0 -0
  1651. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/test_security.py +0 -0
  1652. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/test_terminal_spawner.py +0 -0
  1653. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/server/test_token_counter.py +0 -0
  1654. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/sync_regression.sh +0 -0
  1655. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/sync_regression_parallel.sh +0 -0
  1656. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_739_complete.py +0 -0
  1657. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_739_e2e_synthetic.py +0 -0
  1658. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_739_fixtures.py +0 -0
  1659. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_arch_complexity_prompt.py +0 -0
  1660. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_architecture.py +0 -0
  1661. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_architecture_orchestrator.py +0 -0
  1662. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_bug.py +0 -0
  1663. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_bug_orchestrator.py +0 -0
  1664. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_bug_orchestrator_1.py +0 -0
  1665. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_bug_orchestrator_step_comments.py +0 -0
  1666. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_bug_step10_prompt.py +0 -0
  1667. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_bug_step11_prompt.py +0 -0
  1668. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_bug_step7_prompt.py +0 -0
  1669. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_change.py +0 -0
  1670. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_change_orchestrator.py +0 -0
  1671. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_checkup.py +0 -0
  1672. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_common_issue_813_anthropic_api_key_oauth_shadow.py +0 -0
  1673. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_common_worktree.py +0 -0
  1674. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_crash.py +0 -0
  1675. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_e2e_fix.py +0 -0
  1676. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_e2e_fix_orchestrator.py +0 -0
  1677. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_e2e_fix_orchestrator_resume_prompt.py +0 -0
  1678. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_e2e_fix_step10_prompt.py +0 -0
  1679. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_fix.py +0 -0
  1680. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_langtest.py +0 -0
  1681. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_split.py +0 -0
  1682. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_split_orchestrator.py +0 -0
  1683. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_split_real.py +0 -0
  1684. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_split_v2.py +0 -0
  1685. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_sync.py +0 -0
  1686. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_sync_nearest_config.py +0 -0
  1687. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_sync_runner.py +0 -0
  1688. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_test.py +0 -0
  1689. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_test_generate.py +0 -0
  1690. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_test_orchestrator.py +0 -0
  1691. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_update.py +0 -0
  1692. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_agentic_verify.py +0 -0
  1693. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_antigravity_provider.py +0 -0
  1694. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_api_key_scanner.py +0 -0
  1695. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_architecture_include_validation.py +0 -0
  1696. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_architecture_registry.py +0 -0
  1697. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_architecture_sync.py +0 -0
  1698. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_auth_service.py +0 -0
  1699. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_auto_deps_architecture.py +0 -0
  1700. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_auto_deps_entry_wipe.py +0 -0
  1701. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_auto_deps_lock.py +0 -0
  1702. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_auto_deps_main.py +0 -0
  1703. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_auto_heal_workflow.py +0 -0
  1704. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_auto_include.py +0 -0
  1705. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_auto_update.py +0 -0
  1706. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_balance_chunks.py +0 -0
  1707. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_bug_main.py +0 -0
  1708. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_bug_to_unit_test.py +0 -0
  1709. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_change.py +0 -0
  1710. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_change_call_site_and_retry.py +0 -0
  1711. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_change_main.py +0 -0
  1712. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_checkup_artifact_hygiene.py +0 -0
  1713. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_checkup_freshness_lease_integration.py +0 -0
  1714. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_ci_detect_changed_modules.py +0 -0
  1715. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_ci_drift_heal.py +0 -0
  1716. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_ci_validation.py +0 -0
  1717. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_circular_includes.py +0 -0
  1718. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_cli.py +0 -0
  1719. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_cli_binary_isolation.py +0 -0
  1720. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_cli_detector.py +0 -0
  1721. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_cloud_noninteractive_auth.py +0 -0
  1722. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_code_generator.py +0 -0
  1723. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_code_generator_main.py +0 -0
  1724. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_code_patcher_prompt_json_example.py +0 -0
  1725. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_commands_auth.py +0 -0
  1726. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_commands_firecrawl.py +0 -0
  1727. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_commands_fix.py +0 -0
  1728. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_commands_generate.py +0 -0
  1729. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_commands_maintenance.py +0 -0
  1730. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_commands_modify.py +0 -0
  1731. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_commands_templates.py +0 -0
  1732. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_commands_utility.py +0 -0
  1733. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_comment_line.py +0 -0
  1734. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_conflicts_in_prompts.py +0 -0
  1735. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_conflicts_main.py +0 -0
  1736. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_content_selector.py +0 -0
  1737. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_context_example_isolation.py +0 -0
  1738. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_context_generator.py +0 -0
  1739. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_context_generator_main.py +0 -0
  1740. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_continue_generation.py +0 -0
  1741. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_contract_check.py +0 -0
  1742. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_copy_package_data_to_public.py +0 -0
  1743. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_core_dump.py +0 -0
  1744. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_core_errors.py +0 -0
  1745. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_core_utils.py +0 -0
  1746. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_coverage_contracts.py +0 -0
  1747. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_crash_main.py +0 -0
  1748. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_cross_step_consistency_prompts.py +0 -0
  1749. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_detect_change.py +0 -0
  1750. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_detect_change_main.py +0 -0
  1751. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_discover_associated_documents.py +0 -0
  1752. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_duplicate_cli_guard.py +0 -0
  1753. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_durable_sync_runner.py +0 -0
  1754. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_auto_deps_pipeline.py +0 -0
  1755. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_bug_step9_verification.py +0 -0
  1756. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_1205_example_output_extension.py +0 -0
  1757. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_1211_parent_dir_path.py +0 -0
  1758. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_219_duplicate_includes.py +0 -0
  1759. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_295_openai_schema.py +0 -0
  1760. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_296_custom_csv.py +0 -0
  1761. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_305_false_success.py +0 -0
  1762. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_309_oauth_rate_limit.py +0 -0
  1763. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_319_json_braces.py +0 -0
  1764. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_340_report_core_no_default.py +0 -0
  1765. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_342_syspath_isolation.py +0 -0
  1766. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_349_sys_modules_pollution.py +0 -0
  1767. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_357_step9_keyerror.py +0 -0
  1768. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_358_jwt_cache_null.py +0 -0
  1769. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_364_cumulative_cost.py +0 -0
  1770. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_373_step5_keyerror.py +0 -0
  1771. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_375_malformed_json.py +0 -0
  1772. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_379_auth_null_expires.py +0 -0
  1773. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_383_commit_intermediate_files.py +0 -0
  1774. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_399_ssh_url_message.py +0 -0
  1775. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_419_cli_unpushed_commits.py +0 -0
  1776. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_419_unpushed_commits.py +0 -0
  1777. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_426_include_path_validation.py +0 -0
  1778. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_429_prompt_files_in_pr.py +0 -0
  1779. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_445_worktree_resume.py +0 -0
  1780. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_448_change_orchestrator.py +0 -0
  1781. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_448_step5_keyerror.py +0 -0
  1782. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_449_auth_logout_message.py +0 -0
  1783. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_467_false_cached_steps.py +0 -0
  1784. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_468_not_a_bug_early_exit.py +0 -0
  1785. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_469_cleanup_messages.py +0 -0
  1786. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_469_duplicate_unresolved.py +0 -0
  1787. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_470_sessions_cleanup_auth_message.py +0 -0
  1788. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_481_pagination.py +0 -0
  1789. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_485_warning_false_negative.py +0 -0
  1790. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_493_update_output_subdir.py +0 -0
  1791. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_508_budget_test_cost.py +0 -0
  1792. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_508_sync_budget_tracking.py +0 -0
  1793. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_509_retry_cost.py +0 -0
  1794. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_521_circular_includes.py +0 -0
  1795. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_522_include_fingerprint.py +0 -0
  1796. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_545_no_changes_to_commit.py +0 -0
  1797. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_549_format_double_escaping.py +0 -0
  1798. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_549_other_orchestrators.py +0 -0
  1799. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_553_circular_includes_non_recursive.py +0 -0
  1800. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_557_codex_ndjson.py +0 -0
  1801. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_566_code_fence_tags.py +0 -0
  1802. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_579_bug_worktree_rerun.py +0 -0
  1803. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_579_orchestrator_rerun.py +0 -0
  1804. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_594_preamble_imports.py +0 -0
  1805. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_604_handler_wiring.py +0 -0
  1806. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_620_hallucinated_imports.py +0 -0
  1807. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_626_nextjs_rendering_model.py +0 -0
  1808. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_686_anthropic_cost_double_count.py +0 -0
  1809. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_687_postprocess_model_name.py +0 -0
  1810. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_737_step_completion_markers.py +0 -0
  1811. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_745_initial_cost_tracking.py +0 -0
  1812. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_773_hard_stop.py +0 -0
  1813. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_791_e2e_timeout_retry.py +0 -0
  1814. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_796_typescript_python_validation.py +0 -0
  1815. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_797_typescript_verification.py +0 -0
  1816. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_817_step5_degenerate_cli.py +0 -0
  1817. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_824_artifact_filtering.py +0 -0
  1818. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_825_param_drop.py +0 -0
  1819. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_830_workflow_stall.py +0 -0
  1820. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_894.py +0 -0
  1821. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_902_provider_fallback.py +0 -0
  1822. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_issue_903_convergence.py +0 -0
  1823. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_openai_required_array.py +0 -0
  1824. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_pattern_verification.py +0 -0
  1825. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_selective_includes.py +0 -0
  1826. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_selective_includes_integration.py +0 -0
  1827. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_step11_cleanup_revert.py +0 -0
  1828. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_subprocess_issue_399_ssh_url_message.py +0 -0
  1829. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_subprocess_issue_541_quiet_flag.py +0 -0
  1830. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_e2e_subprocess_issue_593_bug_exit_code.py +0 -0
  1831. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_embed_retrieve.py +0 -0
  1832. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_evidence_manifest.py +0 -0
  1833. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_example_error_detection.py +0 -0
  1834. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_explicit_output_paths.py +0 -0
  1835. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_extracts_prune.py +0 -0
  1836. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_failure_classification.py +0 -0
  1837. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_find_section.py +0 -0
  1838. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_firecrawl_cache.py +0 -0
  1839. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_fix_code_loop.py +0 -0
  1840. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_fix_code_module_errors.py +0 -0
  1841. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_fix_error_loop_prompt_contract.py +0 -0
  1842. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_fix_error_loop_sync_e2e.py +0 -0
  1843. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_fix_errors_from_unit_tests.py +0 -0
  1844. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_fix_issue_1211_parent_dir_path.py +0 -0
  1845. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_fix_main_issue_232.py +0 -0
  1846. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_fix_verification_errors.py +0 -0
  1847. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_fix_verification_errors_loop.py +0 -0
  1848. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_fix_verification_main.py +0 -0
  1849. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_generate_output_paths.py +0 -0
  1850. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_generate_output_paths_regression.py +0 -0
  1851. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_generate_test.py +0 -0
  1852. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_generation_completion.py +0 -0
  1853. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_get_comment.py +0 -0
  1854. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_get_extension.py +0 -0
  1855. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_get_jwt_token.py +0 -0
  1856. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_get_language.py +0 -0
  1857. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_get_lint_commands.py +0 -0
  1858. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_get_run_command.py +0 -0
  1859. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_get_test_command.py +0 -0
  1860. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_git_porcelain.py +0 -0
  1861. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_git_update.py +0 -0
  1862. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_home_isolation.py +0 -0
  1863. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_include_query_extractor.py +0 -0
  1864. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_increase_tests.py +0 -0
  1865. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_incremental_code_generator.py +0 -0
  1866. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_incremental_prd_architecture.py +0 -0
  1867. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_incremental_prd_architecture_real.py +0 -0
  1868. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_insert_includes.py +0 -0
  1869. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_install_completion.py +0 -0
  1870. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_1021_reproduction.py +0 -0
  1871. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_1049_reproduction.py +0 -0
  1872. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_1060_pollution.py +0 -0
  1873. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_1080_porcelain_scope_guards.py +0 -0
  1874. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_1240_generate_prompt_meta_framing.py +0 -0
  1875. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_1272_cloud_timeout.py +0 -0
  1876. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_225_paths_and_includes.py +0 -0
  1877. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_237.py +0 -0
  1878. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_417_regression_hardening.py +0 -0
  1879. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_467_all_orchestrators.py +0 -0
  1880. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_469_duplicate_unresolved.py +0 -0
  1881. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_592_failing_case.py +0 -0
  1882. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_600_agentic_weaknesses.py +0 -0
  1883. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_633_reproduction.py +0 -0
  1884. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_686_post_process_args_braces.py +0 -0
  1885. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_737_step_completion_markers.py +0 -0
  1886. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_791_reproduction.py +0 -0
  1887. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_794_anti_tdd_and_test_discovery.py +0 -0
  1888. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_794_repro.py +0 -0
  1889. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_830_remaining_fixes.py +0 -0
  1890. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_865_reproduction.py +0 -0
  1891. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_894_pytest_output_deadlock.py +0 -0
  1892. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_902.py +0 -0
  1893. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_902_prompt_sync.py +0 -0
  1894. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_926_preserve_comments_directive.py +0 -0
  1895. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_issue_953_directory_scan_regression.py +0 -0
  1896. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_jobs_sync_failure_detection.py +0 -0
  1897. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_list_drift_detection.py +0 -0
  1898. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_llm_invoke_csv_model_registration.py +0 -0
  1899. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_llm_invoke_integration.py +0 -0
  1900. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_llm_invoke_nested_schema.py +0 -0
  1901. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_llm_invoke_retry_cost.py +0 -0
  1902. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_llm_invoke_vertex_retry.py +0 -0
  1903. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_load_prompt_template.py +0 -0
  1904. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_logo_animation.py +0 -0
  1905. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_metadata_sync.py +0 -0
  1906. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_mock_vs_production_fix.py +0 -0
  1907. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_model_tester.py +0 -0
  1908. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_nextjs_rendering_model.py +0 -0
  1909. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_one_session_eval.py +0 -0
  1910. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_one_session_sync.py +0 -0
  1911. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_opencode_provider.py +0 -0
  1912. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_operation_log.py +0 -0
  1913. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_operation_logging_e2e.py +0 -0
  1914. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_path_resolution.py +0 -0
  1915. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_pattern_completeness_verification.py +0 -0
  1916. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_pddrc_initializer.py +0 -0
  1917. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_pddrc_true_e2e.py +0 -0
  1918. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_pin_example_hack.py +0 -0
  1919. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_post_step_comment_once_real.py +0 -0
  1920. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_postprocess.py +0 -0
  1921. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_postprocess_0.py +0 -0
  1922. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_preprocess.py +0 -0
  1923. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_preprocess_main.py +0 -0
  1924. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_preprocess_main_pdd_tags.py +0 -0
  1925. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_process_csv_change.py +0 -0
  1926. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_prompt_contract_validation.py +0 -0
  1927. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_prompt_lint.py +0 -0
  1928. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_provider_env_isolation.py +0 -0
  1929. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_provider_manager.py +0 -0
  1930. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_pytest_output.py +0 -0
  1931. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_quiet_flag.py +0 -0
  1932. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_reasoning.py +0 -0
  1933. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_remote_command_completion.py +0 -0
  1934. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_remote_session.py +0 -0
  1935. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_render_mermaid.py +0 -0
  1936. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_report.py +0 -0
  1937. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_research_prompt_web_tools.py +0 -0
  1938. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_server_routes_prompts.py +0 -0
  1939. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_server_spawn.py +0 -0
  1940. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_space_path_support.sh +0 -0
  1941. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_split.py +0 -0
  1942. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_split_main.py +0 -0
  1943. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_split_seam_resolution.py +0 -0
  1944. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_split_validation.py +0 -0
  1945. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_step11_api_mocking_guidance.py +0 -0
  1946. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_structural_test_guard.py +0 -0
  1947. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_structural_test_guard_integration.py +0 -0
  1948. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_summarize_directory.py +0 -0
  1949. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_sync_animation.py +0 -0
  1950. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_sync_animation_0.py +0 -0
  1951. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_sync_backward_compat.py +0 -0
  1952. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_sync_code_main.py +0 -0
  1953. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_sync_contract_matrix.py +0 -0
  1954. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_sync_graph_order_consistency.py +0 -0
  1955. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_sync_main.py +0 -0
  1956. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_sync_orchestration.py +0 -0
  1957. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_sync_order.py +0 -0
  1958. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_sync_target_coverage_infinite_loop.py +0 -0
  1959. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_sync_template_prompt_discovery.py +0 -0
  1960. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_sync_tui.py +0 -0
  1961. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_template_expander.py +0 -0
  1962. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_template_registry.py +0 -0
  1963. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_thread_safe_redirector.py +0 -0
  1964. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_time_reasoning_effort_env.py +0 -0
  1965. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_trace.py +0 -0
  1966. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_trace_main.py +0 -0
  1967. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_track_cost.py +0 -0
  1968. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_unfinished_prompt.py +0 -0
  1969. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_update_command.py +0 -0
  1970. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_update_main.py +0 -0
  1971. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_update_model_costs.py +0 -0
  1972. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_update_prompt.py +0 -0
  1973. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_validate_behavioral_test.py +0 -0
  1974. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_version.py +0 -0
  1975. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_which.py +0 -0
  1976. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_xml_tagger.py +0 -0
  1977. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/test_z3_prompt_test_correspondence.py +0 -0
  1978. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/tests/validate_behavioral_test.py +0 -0
  1979. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/__init__.py +0 -0
  1980. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/README.md +0 -0
  1981. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/context/README.md +0 -0
  1982. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/context/definitions_example.py +0 -0
  1983. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/context/handlers_example.py +0 -0
  1984. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/context/main_example.py +0 -0
  1985. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/context/regenerate_test_files.py +0 -0
  1986. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/context/runner_example.py +0 -0
  1987. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/context/server_example.py +0 -0
  1988. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/generate_prompt.sh +0 -0
  1989. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/generate_python.sh +0 -0
  1990. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/pdd_mcp_server/__init__.py +0 -0
  1991. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/pdd_mcp_server/main.py +0 -0
  1992. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/pdd_mcp_server/server.py +0 -0
  1993. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/pdd_mcp_server/tools/__init__.py +0 -0
  1994. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/pdd_mcp_server/tools/api_key_check.py +0 -0
  1995. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/pdd_mcp_server/tools/definitions.py +0 -0
  1996. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/pdd_mcp_server/tools/handlers.py +0 -0
  1997. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/pdd_mcp_server/tools/runner.py +0 -0
  1998. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/prompts/README_md.prompt +0 -0
  1999. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/prompts/definitions_python.prompt +0 -0
  2000. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/prompts/generate_prompt.prompt +0 -0
  2001. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/prompts/handlers_python.prompt +0 -0
  2002. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/prompts/io_dependencies.csv +0 -0
  2003. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/prompts/io_dependencies_csv.prompt +0 -0
  2004. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/prompts/main_python.prompt +0 -0
  2005. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/prompts/mcp_architecture.csv +0 -0
  2006. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/prompts/mcp_architecture_csv.prompt +0 -0
  2007. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/prompts/requirements_txt.prompt +0 -0
  2008. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/prompts/runner_python.prompt +0 -0
  2009. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/prompts/server_python.prompt +0 -0
  2010. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/requirements.txt +0 -0
  2011. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/mcp/tests/test_mcp_client.py +0 -0
  2012. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/run_generated.py +0 -0
  2013. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/.gitignore +0 -0
  2014. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/.vscode/launch.json +0 -0
  2015. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/.vscodeignore +0 -0
  2016. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/AGENTS.md +0 -0
  2017. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/CHANGELOG.md +0 -0
  2018. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/LICENSE.md +0 -0
  2019. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/Makefile +0 -0
  2020. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/README.md +0 -0
  2021. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/examples/pddInstaller_example.ts +0 -0
  2022. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/images/icon.png +0 -0
  2023. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/images/icon.svg +0 -0
  2024. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/images/video-thumb.png +0 -0
  2025. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/language-configuration.json +0 -0
  2026. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/out/extension.js +0 -0
  2027. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/out/extension.js.map +0 -0
  2028. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/out/pddInstaller.js +0 -0
  2029. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/out/pddInstaller.js.map +0 -0
  2030. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/package-lock.json +0 -0
  2031. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/package.json +0 -0
  2032. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/prompts/extension_typescript.prompt +0 -0
  2033. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/prompts/pddInstaller_typescript.prompt +0 -0
  2034. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/prompts/prompt.tmLanguage_json.prompt +0 -0
  2035. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/scripts/generate-video-thumb.mjs +0 -0
  2036. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/scripts/render-icon.mjs +0 -0
  2037. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/src/extension.ts +0 -0
  2038. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/src/pddInstaller.ts +0 -0
  2039. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/syntaxes/prompt.tmLanguage.json +0 -0
  2040. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/tests/test_extension.ts +0 -0
  2041. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/tests/test_pddInstaller.ts +0 -0
  2042. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/tsconfig.json +0 -0
  2043. {pdd_cli-0.0.253 → pdd_cli-0.0.255}/utils/vscode_prompt/vsc-extension-quickstart.md +0 -0
@@ -0,0 +1,309 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.vsix
6
+
7
+ # setuptools-scm generated version file
8
+ pdd/_version.py
9
+
10
+ .tmp/
11
+ .agentic_prompt*
12
+ .agentic_output_*.txt
13
+ agentic_fix_instructions.txt
14
+ .cloud-image-hash
15
+ examples/temp_split_dir/
16
+ sync_order.sh
17
+
18
+ staging_data_dump.json
19
+ .pdd/core_dumps/*
20
+ *_fixed.*
21
+
22
+ .vscode/settings.json
23
+
24
+ pdd/litellm_cache.sqlite/cache.db
25
+ litellm_cache.sqlite/
26
+
27
+ # Auto-deps lock files (created by filelock for concurrent access prevention)
28
+ *.csv.lock
29
+
30
+ # Cost tracking CSV (generated at runtime, should not be committed)
31
+ pdd_cost.csv
32
+
33
+ # Auto-deps default CSV (generated at runtime, should not be committed)
34
+ deps.csv
35
+
36
+ # Claude folder (ignore contents, but keep skills/)
37
+ .claude/*
38
+ !.claude/skills/
39
+
40
+ # Test sync folder
41
+ test_sync/
42
+
43
+ # Vendored Python packages (created by pdd sync worktree setup)
44
+ .pip_packages/
45
+
46
+
47
+ # langchain cache
48
+ .langchain.db
49
+ *.pckl
50
+
51
+ # C extensions
52
+ *.so
53
+
54
+ output/
55
+ utils/mcp/manual_testing/
56
+
57
+ # Distribution / packaging
58
+ .Python
59
+ build/
60
+ develop-eggs/
61
+ dist/
62
+ downloads/
63
+ eggs/
64
+ .eggs/
65
+ lib/
66
+ lib64/
67
+ parts/
68
+ sdist/
69
+ var/
70
+ wheels/
71
+ share/python-wheels/
72
+ *.egg-info/
73
+ .installed.cfg
74
+ *.egg
75
+ MANIFEST
76
+
77
+ # PyInstaller
78
+ # Usually these files are written by a python script from a template
79
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
80
+ *.manifest
81
+ *.spec
82
+
83
+ # Installer logs
84
+ pip-log.txt
85
+ pip-delete-this-directory.txt
86
+
87
+ # Unit test / coverage reports
88
+ htmlcov/
89
+ .tox/
90
+ .nox/
91
+ .coverage
92
+ .coverage.*
93
+ .cache
94
+ nosetests.xml
95
+ coverage.xml
96
+ *.cover
97
+ *.py,cover
98
+ .hypothesis/
99
+ .pytest_cache/
100
+ test-results/
101
+ cover/
102
+ staging/
103
+ *.staging.log
104
+ .staging_*
105
+
106
+ # Translations
107
+ *.mo
108
+ *.pot
109
+
110
+ # Django stuff:
111
+ *.log
112
+ local_settings.py
113
+ db.sqlite3
114
+ db.sqlite3-journal
115
+
116
+ # Flask stuff:
117
+ instance/
118
+ .webassets-cache
119
+
120
+ # Scrapy stuff:
121
+ .scrapy
122
+
123
+ # Sphinx documentation
124
+ docs/_build/
125
+
126
+ # PyBuilder
127
+ .pybuilder/
128
+ target/
129
+
130
+ # Jupyter Notebook
131
+ .ipynb_checkpoints
132
+
133
+ # IPython
134
+ profile_default/
135
+ ipython_config.py
136
+
137
+ # pyenv
138
+ # For a library or package, you might want to ignore these files since the code is
139
+ # intended to run in multiple environments; otherwise, check them in:
140
+ # .python-version
141
+
142
+ # pipenv
143
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
144
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
145
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
146
+ # install all needed dependencies.
147
+ #Pipfile.lock
148
+
149
+ # poetry
150
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
151
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
152
+ # commonly ignored for libraries.
153
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
154
+ #poetry.lock
155
+
156
+ # pdm
157
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
158
+ #pdm.lock
159
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
160
+ # in version control.
161
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
162
+ .pdm.toml
163
+ .pdm-python
164
+ .pdm-build/
165
+
166
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
167
+ __pypackages__/
168
+
169
+ # Celery stuff
170
+ celerybeat-schedule
171
+ celerybeat.pid
172
+
173
+ # SageMath parsed files
174
+ *.sage.py
175
+
176
+ # Environments
177
+ .env
178
+ .venv
179
+ env/
180
+ venv/
181
+ ENV/
182
+ env.bak/
183
+ venv.bak/
184
+ *.py.bak
185
+
186
+ # Spyder project settings
187
+ .spyderproject
188
+ .spyproject
189
+
190
+ # Rope project settings
191
+ .ropeproject
192
+
193
+ # mkdocs documentation
194
+ /site
195
+
196
+ # mypy
197
+ .mypy_cache/
198
+ .dmypy.json
199
+ dmypy.json
200
+
201
+ # Pyre type checker
202
+ .pyre/
203
+
204
+ # pytype static type analyzer
205
+ .pytype/
206
+
207
+ # Cython debug symbols
208
+ cython_debug/
209
+
210
+ # PyCharm
211
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
212
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
213
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
214
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
215
+ #.idea/
216
+
217
+ .DS_Store
218
+
219
+ # Ignore nested repositories
220
+ edit-file-tool/
221
+
222
+ staging/
223
+
224
+ # Testmon cache
225
+ .testmon*
226
+
227
+ # Node.js
228
+ node_modules/
229
+ npm-debug.log*
230
+ yarn-debug.log*
231
+ yarn-error.log*
232
+ yarn.lock
233
+
234
+ # Keep frontend build artifacts for pdd connect
235
+ !pdd/frontend/dist/
236
+ !pdd/frontend/lib/
237
+ !pdd/frontend/package-lock.json
238
+
239
+ # PDD internal directory (backups, locks, worktrees, etc.)
240
+ .pdd/*
241
+ !.pdd/
242
+ !.pdd/meta/
243
+ .pdd/meta/*.json
244
+ !.pdd/meta/agentic_bug_orchestrator_python.json
245
+ !.pdd/meta/agentic_bug_python.json
246
+ !.pdd/meta/agentic_checkup_python.json
247
+ !.pdd/meta/agentic_common_python.json
248
+ !.pdd/meta/agentic_crash_python.json
249
+ !.pdd/meta/agentic_e2e_fix_orchestrator_python.json
250
+ !.pdd/meta/agentic_fix_python.json
251
+ !.pdd/meta/agentic_update_python.json
252
+ !.pdd/meta/agentic_verify_python.json
253
+ !.pdd/meta/checkup_review_loop_python.json
254
+ !.pdd/meta/commands_checkup_python.json
255
+ !.pdd/meta/commands_prompt_python.json
256
+ !.pdd/meta/prompt_lint_python.json
257
+ !.pdd/meta/core_cloud_python.json
258
+ !.pdd/meta/fix_code_loop_python.json
259
+ !.pdd/meta/get_comment_python.json
260
+ !.pdd/meta/get_test_command_python.json
261
+ !.pdd/meta/git_update_python.json
262
+ !.pdd/meta/llm_invoke_python.json
263
+ !.pdd/meta/preprocess_python.json
264
+ !.pdd/meta/summarize_directory_python.json
265
+ !.pdd/meta/sync_determine_operation_python.json
266
+ .pdd/meta/*_run.json
267
+ # Issue #1006 follow-up: these two modules' tests pass quickly but
268
+ # `pdd sync` runs >20 minutes on them in CI, hitting the auto-heal
269
+ # 1200s timeout. Committing run-reports satisfies the released drift
270
+ # detector's workflow-complete gate (no run_report → forced crash op)
271
+ # until either the detector tolerates a "fix" fingerprint with no
272
+ # run_report or the sync time on these orchestrators improves.
273
+ !.pdd/meta/ci_drift_heal_python_run.json
274
+ !.pdd/meta/agentic_change_orchestrator_python_run.json
275
+ !.pdd/meta/metadata_sync_python_run.json
276
+ Makefile.test-staging
277
+
278
+ # Large model weights (HuggingFace clones)
279
+ demos/3blue1brown/models/
280
+
281
+ # Generated video outputs
282
+ demos/3blue1brown/outputs/
283
+ *.mp4
284
+
285
+ # Infisical config (contains workspace/environment references)
286
+ .infisical.json
287
+
288
+ # --- Local Development Dependencies ---
289
+ # Ignore locally installed/compiled packages and binaries.
290
+ # These should be managed via requirements.txt or setup.py,
291
+ # not tracked in version control to avoid OS compatibility issues.
292
+ .local_pkgs/temp_workspace
293
+ fake_test_output.py
294
+
295
+ # Solver infrastructure artifacts
296
+ .gh-wrapper/
297
+
298
+ # Auto-heal CI workspace artifacts — must never be committed.
299
+ # pdd-auto-heal[bot] writes these to its working directory and a workflow
300
+ # accidentally staged them, leaking a GitHub installation token to PR #1211
301
+ # (commit bebf874a4, since dropped). Keep these ignored repo-wide.
302
+ github_token
303
+ diff_base.txt
304
+ modules.txt
305
+ .loop/
306
+
307
+ # Local PDD venv and debug artifacts
308
+ pdd-env/
309
+ error_log.txt
@@ -0,0 +1,11 @@
1
+ {
2
+ "pdd_version": "0.0.253",
3
+ "timestamp": "2026-05-29T07:46:04.444006+00:00",
4
+ "command": "example",
5
+ "prompt_hash": null,
6
+ "code_hash": null,
7
+ "example_hash": null,
8
+ "test_hash": null,
9
+ "test_files": null,
10
+ "include_deps": null
11
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "pdd_version": "0.0.254",
3
+ "timestamp": "2026-05-29T21:10:42.589757+00:00",
4
+ "command": "example",
5
+ "prompt_hash": null,
6
+ "code_hash": null,
7
+ "example_hash": null,
8
+ "test_hash": null,
9
+ "test_files": null,
10
+ "include_deps": null
11
+ }
@@ -0,0 +1,342 @@
1
+ Metadata-Version: 2.4
2
+ Name: pdd-cli
3
+ Version: 0.0.255
4
+ Summary: PDD (Prompt-Driven Development) Command Line Interface
5
+ Author: Greg Tanaka
6
+ Author-email: glt@alumni.caltech.edu
7
+ License: MIT
8
+ Project-URL: Homepage, https://github.com/promptdriven/pdd.git
9
+ Project-URL: Repository, https://github.com/promptdriven/pdd.git
10
+ Project-URL: Issue-Tracker, https://github.com/promptdriven/pdd/issues
11
+ Keywords: prompt-driven development,code generation,AI,LLM,unit testing,software development
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Topic :: Software Development :: Code Generators
18
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
19
+ Requires-Python: >=3.12
20
+ Description-Content-Type: text/x-rst
21
+ License-File: LICENSE
22
+ Requires-Dist: GitPython==3.1.50
23
+ Requires-Dist: Requests==2.34.2
24
+ Requires-Dist: aiofiles==25.1.0
25
+ Requires-Dist: click==8.4.1
26
+ Requires-Dist: firecrawl-py==4.28.0
27
+ Requires-Dist: firebase_admin==7.4.0
28
+ Requires-Dist: httpx==0.28.1
29
+ Requires-Dist: keyring==25.7.0
30
+ Requires-Dist: keyrings.alt==5.0.2
31
+ Requires-Dist: langchain<0.4,>=0.3.25
32
+ Requires-Dist: langchain-anthropic<0.4,>=0.3.14
33
+ Requires-Dist: langchain-community<0.4,>=0.3.25
34
+ Requires-Dist: langchain-core<0.4,>=0.3.56
35
+ Requires-Dist: langchain-mcp-adapters<0.2,>=0.1.0
36
+ Requires-Dist: langgraph<0.4,>=0.3.0
37
+ Requires-Dist: nest_asyncio==1.6.0
38
+ Requires-Dist: numpy>=1.26.0
39
+ Requires-Dist: pandas==3.0.3
40
+ Requires-Dist: psutil>=7.0.0
41
+ Requires-Dist: pydantic==2.13.4
42
+ Requires-Dist: litellm[caching]<=1.82.6,>=1.80.0
43
+ Requires-Dist: lxml>=5.0.0
44
+ Requires-Dist: rich==15.0.0
45
+ Requires-Dist: semver==3.0.4
46
+ Requires-Dist: setuptools
47
+ Requires-Dist: starlette>=0.37.2
48
+ Requires-Dist: pytest==9.0.3
49
+ Requires-Dist: pytest-cov==7.1.0
50
+ Requires-Dist: boto3==1.43.14
51
+ Requires-Dist: google-cloud-aiplatform>=1.3
52
+ Requires-Dist: openai>=1.99.5
53
+ Requires-Dist: pillow-heif==1.3.0
54
+ Requires-Dist: Pillow==12.2.0
55
+ Requires-Dist: textual
56
+ Requires-Dist: python-dotenv==1.2.2
57
+ Requires-Dist: PyYAML==6.0.3
58
+ Requires-Dist: jsonschema==4.26.0
59
+ Requires-Dist: z3-solver==4.16.0.0
60
+ Requires-Dist: fastapi>=0.115.0
61
+ Requires-Dist: uvicorn[standard]>=0.32.0
62
+ Requires-Dist: websockets>=13.0
63
+ Requires-Dist: watchdog>=4.0.0
64
+ Requires-Dist: tiktoken>=0.7.0
65
+ Requires-Dist: filelock>=3.12
66
+ Provides-Extra: dev
67
+ Requires-Dist: pytest-cov; extra == "dev"
68
+ Requires-Dist: pytest-testmon; extra == "dev"
69
+ Requires-Dist: pytest-xdist; extra == "dev"
70
+ Requires-Dist: pytest-mock; extra == "dev"
71
+ Requires-Dist: pytest-asyncio; extra == "dev"
72
+ Requires-Dist: pytest-timeout; extra == "dev"
73
+ Requires-Dist: build; extra == "dev"
74
+ Requires-Dist: twine; extra == "dev"
75
+ Dynamic: license-file
76
+
77
+ .. image:: https://img.shields.io/pypi/v/pdd-cli.svg
78
+ :alt: PyPI version
79
+
80
+ .. image:: https://img.shields.io/badge/Discord-join%20chat-7289DA.svg?logo=discord&logoColor=white&link=https://discord.gg/Yp4RTh8bG7
81
+ :alt: Join us on Discord
82
+ :target: https://discord.gg/Yp4RTh8bG7
83
+
84
+ PDD: The Last Programming Language™
85
+ ====================================
86
+
87
+ PDD (Prompt-Driven Development) is a prompt-native programming system. ``.prompt`` files are the human-authored source language; Python, TypeScript, Go, and other traditional languages are generated artifacts.
88
+
89
+ PDD is the last programming language in this specific sense: developers author durable intent, constraints, examples, and tests, then compile that source into whatever implementation language the project needs. Code remains real and reviewable, but it is no longer the primary source of truth.
90
+
91
+ The primary command is ``sync``, which automatically executes the complete PDD workflow loop—from dependency injection through code generation, testing, and verification. For most use cases, ``sync`` is the recommended starting point, as it intelligently determines what steps are needed and executes them in the correct order.
92
+
93
+ .. image:: https://img.youtube.com/vi/5lBxpTSnjqo/0.jpg
94
+ :alt: Watch a video demonstration of PDD
95
+ :target: https://www.youtube.com/watch?v=5lBxpTSnjqo
96
+
97
+ Why Choose Prompt-Driven Development?
98
+ -------------------------------------
99
+
100
+ * **Tackle the Root Cause of Maintenance Costs**: Traditional development spends up to 90% of its budget on maintaining and modifying existing code. PDD addresses this by treating prompts—not code—as the primary source of truth. Instead of applying costly, complex patches, you update the high-level prompt and regenerate clean, consistent code.
101
+ * **Boost Developer Productivity & Focus**: PDD shifts your work from tedious, line-by-line coding to high-level system design. Its batch-oriented workflow (using commands like ``sync``) frees you from the constant supervision required by interactive AI assistants. You can define a task, launch the process, and focus on other priorities while the AI works in the background.
102
+ * **Maintain Control and Determinism**: Unlike agentic coders that can introduce unpredictable changes across a project, PDD gives you full control. You precisely define the context for every operation, ensuring that changes are targeted, deterministic, and safe. This is especially critical in large codebases, where unpredictable modifications can have cascading and destructive effects.
103
+ * **Enhance Code Quality and Consistency**: By using prompts as a single source of truth, PDD ensures your code, tests, and documentation never drift out of sync. This regenerative process produces a more reliable and understandable codebase compared to the tangled results of repeated patching.
104
+ * **Improve Collaboration**: Prompts are written in natural language, making them accessible to both technical and non-technical stakeholders. This fosters clearer communication and ensures the final product aligns with business requirements.
105
+ * **Reduce LLM Costs**: PDD's structured, batch-oriented nature is inherently more token-efficient and allows you to take advantage of significant discounts offered by LLM providers for batch processing APIs, making it a more cost-effective solution than many interactive tools.
106
+ * **Compile to Any Stack**: PDD does not ask teams to abandon Python, TypeScript, Java, Go, or C++. It treats those languages as targets emitted from a higher-level prompt source.
107
+
108
+
109
+ Key Features
110
+ ------------
111
+
112
+ * **Automated `sync` Command**: A single command to automate the entire development cycle: from code generation and dependency management to testing and verification.
113
+ * **Cloud & Local Execution**: Run securely in the cloud with GitHub SSO (no API keys needed) or switch to local mode with the ``--local`` flag for full control.
114
+ * **Comprehensive Command Suite**: A full set of tools to ``generate``, ``test``, ``fix``, ``update``, and ``split`` your code and prompts.
115
+ * **Intelligent Testing**: Generate new unit tests, or improve existing ones by analyzing coverage reports to hit your desired targets.
116
+ * **Iterative Error Fixing**: Automatically find and correct errors in your code with commands like ``fix`` and ``crash``, which can loop until the issues are resolved.
117
+ * **Cost Tracking & Configuration**: Fine-tune AI model behavior with ``--strength`` and ``--temperature`` and track usage with optional cost reporting.
118
+ * **Cross-Language Support**: Work with Python, JavaScript, Java, C++, Go, and more, with automatic language detection from prompt filenames.
119
+
120
+
121
+ Quick Installation
122
+ ------------------
123
+
124
+ **Recommended: Using uv (Faster & Better Dependency Management)**
125
+
126
+ We recommend installing PDD using the `uv <https://github.com/astral-sh/uv>`_ package manager for better dependency management and automatic environment configuration:
127
+
128
+ .. code-block:: console
129
+
130
+ # Install uv if you haven't already
131
+ curl -LsSf https://astral.sh/uv/install.sh | sh
132
+
133
+ # Install PDD using uv tool install
134
+ uv tool install pdd-cli
135
+
136
+ This installation method ensures:
137
+
138
+ - Faster installations with optimized dependency resolution
139
+ - Automatic environment setup without manual configuration
140
+ - Proper handling of the PDD_PATH environment variable
141
+ - Better isolation from other Python packages
142
+
143
+ **Alternative: Using pip**
144
+
145
+ If you prefer, you can install with pip:
146
+
147
+ .. code-block:: console
148
+
149
+ pip install pdd-cli
150
+
151
+ After installation, verify:
152
+
153
+ .. code-block:: console
154
+
155
+ pdd --version
156
+
157
+ You'll see the current PDD version.
158
+
159
+ Getting Started with Examples
160
+ -----------------------------
161
+
162
+ To quickly see PDD in action, we recommend exploring the ``examples/`` directory in the project repository. It contains ready-to-use sample prompts and projects to help you get started.
163
+
164
+ For instance, the ``handpaint`` example demonstrates how to generate a complete HTML canvas application from a single prompt. After cloning the repository, you can run it yourself:
165
+
166
+ .. code-block:: console
167
+
168
+ # Navigate to the example directory
169
+ cd examples/handpaint/pdd/
170
+
171
+ # Run the sync command
172
+ pdd sync handpaint
173
+
174
+ This will generate the full application based on the ``handpaint_html.prompt`` file.
175
+
176
+
177
+ Advanced Installation Tips
178
+ --------------------------
179
+
180
+
181
+ **Virtual Environment**
182
+
183
+ Create and activate a virtual environment, then install pdd-cli:
184
+
185
+ .. code-block:: console
186
+
187
+ python -m venv pdd-env
188
+
189
+ # Activate environment
190
+ # On Windows:
191
+ pdd-env\Scripts\activate
192
+ # On Unix/MacOS:
193
+ source pdd-env/bin/activate
194
+
195
+ # Install PDD (with uv - recommended)
196
+ uv tool install pdd-cli
197
+ # OR with pip
198
+ pip install pdd-cli
199
+
200
+
201
+ **Environment Variables**
202
+
203
+ Optionally, add environment variables to your shell startup (e.g., ``.bashrc``, ``.zshrc``):
204
+
205
+ .. code-block:: console
206
+
207
+ export PDD_AUTO_UPDATE=true
208
+ export PDD_GENERATE_OUTPUT_PATH=/path/to/generated/code/
209
+ export PDD_TEST_OUTPUT_PATH=/path/to/tests/
210
+
211
+ Tab Completion
212
+ ~~~~~~~~~~~~~~
213
+ Enable shell completion:
214
+
215
+ .. code-block:: console
216
+
217
+ pdd install_completion
218
+
219
+ Cloud vs Local
220
+ --------------
221
+
222
+ By default, PDD runs in cloud mode (currently waitlist), using GitHub SSO for secure access to AI models—no local API keys needed. If you want or need to run locally:
223
+
224
+ .. code-block:: console
225
+
226
+ pdd --local generate my_prompt_python.prompt
227
+
228
+ Be sure to configure API keys in your environment ahead of time:
229
+
230
+ .. code-block:: console
231
+
232
+ export OPENAI_API_KEY=your_api_key_here
233
+ export ANTHROPIC_API_KEY=your_api_key_here
234
+ # etc.
235
+
236
+ Basic Usage
237
+ -----------
238
+
239
+ All commands follow a standard pattern:
240
+
241
+ .. code-block:: console
242
+
243
+ pdd [GLOBAL OPTIONS] COMMAND [COMMAND OPTIONS] [ARGS]...
244
+
245
+ **Example – Sync**
246
+
247
+ The ``sync`` command automates the entire PDD workflow for a given basename. It intelligently runs generation, testing, and fixing steps as needed, with real-time progress feedback.
248
+
249
+ .. code-block:: console
250
+
251
+ pdd sync factorial_calculator
252
+
253
+ **Example – Generate Code**
254
+
255
+ Generate Python code from a prompt:
256
+
257
+ .. code-block:: console
258
+
259
+ pdd generate factorial_calculator_python.prompt
260
+
261
+ In cloud mode (no local keys required). Or locally if you prefer:
262
+
263
+ .. code-block:: console
264
+
265
+ pdd --local generate factorial_calculator_python.prompt
266
+
267
+ **Example – Test**
268
+
269
+ Automatically create or enhance tests:
270
+
271
+ .. code-block:: console
272
+
273
+ pdd test factorial_calculator_python.prompt src/factorial_calculator.py
274
+
275
+ Use coverage analysis:
276
+
277
+ .. code-block:: console
278
+
279
+ pdd test --coverage-report coverage.xml --existing-tests tests/test_factorial.py \
280
+ factorial_prompt.prompt src/factorial.py
281
+
282
+
283
+ **Example – Fix Iteratively**
284
+
285
+ Attempt to fix failing code or tests in multiple loops:
286
+
287
+ .. code-block:: console
288
+
289
+ pdd fix --loop \
290
+ factorial_calculator_python.prompt src/factorial_calculator.py tests/test_factorial.py errors.log
291
+
292
+ PDD will keep trying (with a budget limit configurable by ``--budget``) until tests pass or attempts are exhausted.
293
+
294
+ Frequently Asked Questions (FAQ)
295
+ --------------------------------
296
+
297
+ **What's the main difference between PDD and using an AI chat assistant (agentic coder)?**
298
+
299
+ Control and predictability. Interactive AI assistants can be unpredictable and make broad, unintended changes, which is risky in large codebases. PDD gives you full control. You define the exact context for every change, making the process deterministic and safe. PDD's batch-oriented workflow also frees you from constant supervision, boosting productivity.
300
+
301
+ **What is "Cloud vs. Local" execution?**
302
+
303
+ By default, PDD runs in cloud mode, using GitHub SSO for secure access to AI models—no local API keys needed. If you want or need to run locally, use the `--local` flag:
304
+
305
+ .. code-block:: console
306
+
307
+ pdd --local generate my_prompt_python.prompt
308
+
309
+ Be sure to configure API keys in your environment ahead of time:
310
+
311
+ .. code-block:: console
312
+
313
+ export OPENAI_API_KEY=your_api_key_here
314
+ export ANTHROPIC_API_KEY=your_api_key_here
315
+ # etc.
316
+
317
+ **Can I use PDD on an existing project?**
318
+
319
+ Yes. PDD is designed for both new and existing projects. You can start by creating prompts for new features. For existing, manually written code, you can use the `pdd update` command to create a prompt file that reflects the current state of your code. This allows you to gradually bring parts of your existing codebase under the PDD methodology.
320
+
321
+ **Do I need to be an expert prompt engineer?**
322
+
323
+ Not at all. Effective prompts are more about clearly defining your requirements in natural language than about complex "engineering." If you can write a good specification or a clear bug report, you can write a good prompt. The goal is to describe *what* you want the code to do, not how to write it.
324
+
325
+ **Is PDD really a programming language?**
326
+
327
+ Yes, in the source-of-truth sense. A PDD program is the versioned prompt suite plus its includes, examples, tests, architecture metadata, and configuration. ``pdd sync`` compiles that source into conventional code and validates the result.
328
+
329
+
330
+ Getting Help
331
+ ------------
332
+
333
+ Use inline help to discover commands and options:
334
+
335
+ .. code-block:: console
336
+
337
+ pdd --help
338
+ pdd generate --help
339
+ pdd fix --help
340
+ ...
341
+
342
+ Happy Prompt-Driven Coding!