pdd-cli 0.0.90__py3-none-any.whl → 0.0.118__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pdd/__init__.py +38 -6
- pdd/agentic_bug.py +323 -0
- pdd/agentic_bug_orchestrator.py +497 -0
- pdd/agentic_change.py +231 -0
- pdd/agentic_change_orchestrator.py +526 -0
- pdd/agentic_common.py +521 -786
- pdd/agentic_e2e_fix.py +319 -0
- pdd/agentic_e2e_fix_orchestrator.py +426 -0
- pdd/agentic_fix.py +118 -3
- pdd/agentic_update.py +25 -8
- pdd/architecture_sync.py +565 -0
- pdd/auth_service.py +210 -0
- pdd/auto_deps_main.py +63 -53
- pdd/auto_include.py +185 -3
- pdd/auto_update.py +125 -47
- pdd/bug_main.py +195 -23
- pdd/cmd_test_main.py +345 -197
- pdd/code_generator.py +4 -2
- pdd/code_generator_main.py +118 -32
- pdd/commands/__init__.py +6 -0
- pdd/commands/analysis.py +87 -29
- pdd/commands/auth.py +309 -0
- pdd/commands/connect.py +290 -0
- pdd/commands/fix.py +136 -113
- pdd/commands/maintenance.py +3 -2
- pdd/commands/misc.py +8 -0
- pdd/commands/modify.py +190 -164
- pdd/commands/sessions.py +284 -0
- pdd/construct_paths.py +334 -32
- pdd/context_generator_main.py +167 -170
- pdd/continue_generation.py +6 -3
- pdd/core/__init__.py +33 -0
- pdd/core/cli.py +27 -3
- pdd/core/cloud.py +237 -0
- pdd/core/errors.py +4 -0
- pdd/core/remote_session.py +61 -0
- pdd/crash_main.py +219 -23
- pdd/data/llm_model.csv +4 -4
- pdd/docs/prompting_guide.md +864 -0
- pdd/docs/whitepaper_with_benchmarks/data_and_functions/benchmark_analysis.py +495 -0
- pdd/docs/whitepaper_with_benchmarks/data_and_functions/creation_compare.py +528 -0
- pdd/fix_code_loop.py +208 -34
- pdd/fix_code_module_errors.py +6 -2
- pdd/fix_error_loop.py +291 -38
- pdd/fix_main.py +204 -4
- pdd/fix_verification_errors_loop.py +235 -26
- pdd/fix_verification_main.py +269 -83
- pdd/frontend/dist/assets/index-B5DZHykP.css +1 -0
- pdd/frontend/dist/assets/index-DQ3wkeQ2.js +449 -0
- pdd/frontend/dist/index.html +376 -0
- pdd/frontend/dist/logo.svg +33 -0
- pdd/generate_output_paths.py +46 -5
- pdd/generate_test.py +212 -151
- pdd/get_comment.py +19 -44
- pdd/get_extension.py +8 -9
- pdd/get_jwt_token.py +309 -20
- pdd/get_language.py +8 -7
- pdd/get_run_command.py +7 -5
- pdd/insert_includes.py +2 -1
- pdd/llm_invoke.py +459 -95
- pdd/load_prompt_template.py +15 -34
- pdd/path_resolution.py +140 -0
- pdd/postprocess.py +4 -1
- pdd/preprocess.py +68 -12
- pdd/preprocess_main.py +33 -1
- pdd/prompts/agentic_bug_step10_pr_LLM.prompt +182 -0
- pdd/prompts/agentic_bug_step1_duplicate_LLM.prompt +73 -0
- pdd/prompts/agentic_bug_step2_docs_LLM.prompt +129 -0
- pdd/prompts/agentic_bug_step3_triage_LLM.prompt +95 -0
- pdd/prompts/agentic_bug_step4_reproduce_LLM.prompt +97 -0
- pdd/prompts/agentic_bug_step5_root_cause_LLM.prompt +123 -0
- pdd/prompts/agentic_bug_step6_test_plan_LLM.prompt +107 -0
- pdd/prompts/agentic_bug_step7_generate_LLM.prompt +172 -0
- pdd/prompts/agentic_bug_step8_verify_LLM.prompt +119 -0
- pdd/prompts/agentic_bug_step9_e2e_test_LLM.prompt +289 -0
- pdd/prompts/agentic_change_step10_identify_issues_LLM.prompt +1006 -0
- pdd/prompts/agentic_change_step11_fix_issues_LLM.prompt +984 -0
- pdd/prompts/agentic_change_step12_create_pr_LLM.prompt +131 -0
- pdd/prompts/agentic_change_step1_duplicate_LLM.prompt +73 -0
- pdd/prompts/agentic_change_step2_docs_LLM.prompt +101 -0
- pdd/prompts/agentic_change_step3_research_LLM.prompt +126 -0
- pdd/prompts/agentic_change_step4_clarify_LLM.prompt +164 -0
- pdd/prompts/agentic_change_step5_docs_change_LLM.prompt +981 -0
- pdd/prompts/agentic_change_step6_devunits_LLM.prompt +1005 -0
- pdd/prompts/agentic_change_step7_architecture_LLM.prompt +1044 -0
- pdd/prompts/agentic_change_step8_analyze_LLM.prompt +1027 -0
- pdd/prompts/agentic_change_step9_implement_LLM.prompt +1077 -0
- pdd/prompts/agentic_e2e_fix_step1_unit_tests_LLM.prompt +90 -0
- pdd/prompts/agentic_e2e_fix_step2_e2e_tests_LLM.prompt +91 -0
- pdd/prompts/agentic_e2e_fix_step3_root_cause_LLM.prompt +89 -0
- pdd/prompts/agentic_e2e_fix_step4_fix_e2e_tests_LLM.prompt +96 -0
- pdd/prompts/agentic_e2e_fix_step5_identify_devunits_LLM.prompt +91 -0
- pdd/prompts/agentic_e2e_fix_step6_create_unit_tests_LLM.prompt +106 -0
- pdd/prompts/agentic_e2e_fix_step7_verify_tests_LLM.prompt +116 -0
- pdd/prompts/agentic_e2e_fix_step8_run_pdd_fix_LLM.prompt +120 -0
- pdd/prompts/agentic_e2e_fix_step9_verify_all_LLM.prompt +146 -0
- pdd/prompts/agentic_fix_primary_LLM.prompt +2 -2
- pdd/prompts/agentic_update_LLM.prompt +192 -338
- pdd/prompts/auto_include_LLM.prompt +22 -0
- pdd/prompts/change_LLM.prompt +3093 -1
- pdd/prompts/detect_change_LLM.prompt +571 -14
- pdd/prompts/fix_code_module_errors_LLM.prompt +8 -0
- pdd/prompts/fix_errors_from_unit_tests_LLM.prompt +1 -0
- pdd/prompts/generate_test_LLM.prompt +20 -1
- pdd/prompts/generate_test_from_example_LLM.prompt +115 -0
- pdd/prompts/insert_includes_LLM.prompt +262 -252
- pdd/prompts/prompt_code_diff_LLM.prompt +119 -0
- pdd/prompts/prompt_diff_LLM.prompt +82 -0
- pdd/remote_session.py +876 -0
- pdd/server/__init__.py +52 -0
- pdd/server/app.py +335 -0
- pdd/server/click_executor.py +587 -0
- pdd/server/executor.py +338 -0
- pdd/server/jobs.py +661 -0
- pdd/server/models.py +241 -0
- pdd/server/routes/__init__.py +31 -0
- pdd/server/routes/architecture.py +451 -0
- pdd/server/routes/auth.py +364 -0
- pdd/server/routes/commands.py +929 -0
- pdd/server/routes/config.py +42 -0
- pdd/server/routes/files.py +603 -0
- pdd/server/routes/prompts.py +1322 -0
- pdd/server/routes/websocket.py +473 -0
- pdd/server/security.py +243 -0
- pdd/server/terminal_spawner.py +209 -0
- pdd/server/token_counter.py +222 -0
- pdd/summarize_directory.py +236 -237
- pdd/sync_animation.py +8 -4
- pdd/sync_determine_operation.py +329 -47
- pdd/sync_main.py +272 -28
- pdd/sync_orchestration.py +136 -75
- pdd/template_expander.py +161 -0
- pdd/templates/architecture/architecture_json.prompt +41 -46
- pdd/trace.py +1 -1
- pdd/track_cost.py +0 -13
- pdd/unfinished_prompt.py +2 -1
- pdd/update_main.py +23 -5
- {pdd_cli-0.0.90.dist-info → pdd_cli-0.0.118.dist-info}/METADATA +15 -10
- pdd_cli-0.0.118.dist-info/RECORD +227 -0
- pdd_cli-0.0.90.dist-info/RECORD +0 -153
- {pdd_cli-0.0.90.dist-info → pdd_cli-0.0.118.dist-info}/WHEEL +0 -0
- {pdd_cli-0.0.90.dist-info → pdd_cli-0.0.118.dist-info}/entry_points.txt +0 -0
- {pdd_cli-0.0.90.dist-info → pdd_cli-0.0.118.dist-info}/licenses/LICENSE +0 -0
- {pdd_cli-0.0.90.dist-info → pdd_cli-0.0.118.dist-info}/top_level.txt +0 -0
pdd/trace.py
CHANGED
|
@@ -222,7 +222,7 @@ def trace(
|
|
|
222
222
|
for start_idx in range(1, len(prompt_lines) - window_size + 2):
|
|
223
223
|
window_lines = prompt_lines[start_idx - 1 : start_idx - 1 + window_size]
|
|
224
224
|
window_text = " ".join(window_lines)
|
|
225
|
-
normalized_window =
|
|
225
|
+
normalized_window = _normalize_text(window_text).casefold()
|
|
226
226
|
seg_len = len(normalized_window)
|
|
227
227
|
if seg_len == 0:
|
|
228
228
|
continue
|
pdd/track_cost.py
CHANGED
|
@@ -57,9 +57,7 @@ def track_cost(func):
|
|
|
57
57
|
# (it might have been created/deleted during command execution)
|
|
58
58
|
if os.path.exists(abs_path) or '.' in os.path.basename(f):
|
|
59
59
|
files_set.add(abs_path)
|
|
60
|
-
print(f"Debug: Added to core_dump_files: {abs_path} (exists: {os.path.exists(abs_path)})")
|
|
61
60
|
ctx.obj['core_dump_files'] = files_set
|
|
62
|
-
print(f"Debug: Total files in core_dump_files: {len(files_set)}")
|
|
63
61
|
|
|
64
62
|
# Check if we need to write cost tracking (only on success)
|
|
65
63
|
if exception_raised is None:
|
|
@@ -92,10 +90,6 @@ def track_cost(func):
|
|
|
92
90
|
writer.writeheader()
|
|
93
91
|
writer.writerow(row)
|
|
94
92
|
|
|
95
|
-
print(f"Debug: Writing row to CSV: {row}")
|
|
96
|
-
print(f"Debug: Input files: {input_files}")
|
|
97
|
-
print(f"Debug: Output files: {output_files}")
|
|
98
|
-
|
|
99
93
|
except Exception as e:
|
|
100
94
|
rprint(f"[red]Error tracking cost: {e}[/red]")
|
|
101
95
|
|
|
@@ -116,11 +110,6 @@ def collect_files(args, kwargs):
|
|
|
116
110
|
input_files = []
|
|
117
111
|
output_files = []
|
|
118
112
|
|
|
119
|
-
print(f"Debug: collect_files called")
|
|
120
|
-
print(f"Debug: args = {args}")
|
|
121
|
-
print(f"Debug: kwargs keys = {list(kwargs.keys())}")
|
|
122
|
-
print(f"Debug: kwargs = {kwargs}")
|
|
123
|
-
|
|
124
113
|
# Known input parameter names that typically contain file paths
|
|
125
114
|
input_param_names = {
|
|
126
115
|
'prompt_file', 'prompt', 'input', 'input_file', 'source', 'source_file',
|
|
@@ -187,6 +176,4 @@ def collect_files(args, kwargs):
|
|
|
187
176
|
if isinstance(item, str) and item and looks_like_file(item):
|
|
188
177
|
input_files.append(item)
|
|
189
178
|
|
|
190
|
-
print(f"Debug: Collected input files: {input_files}")
|
|
191
|
-
print(f"Debug: Collected output files: {output_files}")
|
|
192
179
|
return input_files, output_files
|
pdd/unfinished_prompt.py
CHANGED
pdd/update_main.py
CHANGED
|
@@ -16,7 +16,7 @@ from rich.progress import (
|
|
|
16
16
|
from rich.table import Table
|
|
17
17
|
from rich.theme import Theme
|
|
18
18
|
|
|
19
|
-
from .construct_paths import construct_paths
|
|
19
|
+
from .construct_paths import construct_paths, get_tests_dir_from_config, detect_context_for_file
|
|
20
20
|
from .get_language import get_language
|
|
21
21
|
from .update_prompt import update_prompt
|
|
22
22
|
from .git_update import git_update
|
|
@@ -70,8 +70,13 @@ def resolve_prompt_code_pair(code_file_path: str, quiet: bool = False, output_di
|
|
|
70
70
|
# If not a git repo, use the directory containing the code file
|
|
71
71
|
pass
|
|
72
72
|
|
|
73
|
-
# Use
|
|
74
|
-
|
|
73
|
+
# Use context-aware prompts_dir from .pddrc if available
|
|
74
|
+
context_name, context_config = detect_context_for_file(code_file_path, repo_root)
|
|
75
|
+
prompts_dir_config = context_config.get("prompts_dir", "prompts")
|
|
76
|
+
if os.path.isabs(prompts_dir_config):
|
|
77
|
+
prompts_dir = prompts_dir_config
|
|
78
|
+
else:
|
|
79
|
+
prompts_dir = os.path.join(repo_root, prompts_dir_config)
|
|
75
80
|
|
|
76
81
|
# Construct the prompt filename in the determined directory
|
|
77
82
|
prompt_filename = f"{base_name}_{language}.prompt"
|
|
@@ -125,7 +130,7 @@ def find_and_resolve_all_pairs(repo_root: str, quiet: bool = False, extensions:
|
|
|
125
130
|
code_files = [
|
|
126
131
|
f for f in all_files
|
|
127
132
|
if (
|
|
128
|
-
get_language(f)
|
|
133
|
+
get_language(os.path.splitext(f)[1]) and # Pass extension, not full path
|
|
129
134
|
not f.endswith('.prompt') and
|
|
130
135
|
not os.path.splitext(os.path.basename(f))[0].startswith('test_') and
|
|
131
136
|
not os.path.splitext(os.path.basename(f))[0].endswith('_example')
|
|
@@ -156,10 +161,12 @@ def update_file_pair(prompt_file: str, code_file: str, ctx: click.Context, repo:
|
|
|
156
161
|
use_agentic = not simple and get_available_agents()
|
|
157
162
|
|
|
158
163
|
if use_agentic:
|
|
164
|
+
tests_dir = get_tests_dir_from_config()
|
|
159
165
|
success, message, agentic_cost, provider, changed_files = run_agentic_update(
|
|
160
166
|
prompt_file=prompt_file,
|
|
161
167
|
code_file=code_file,
|
|
162
168
|
test_files=None,
|
|
169
|
+
tests_dir=tests_dir,
|
|
163
170
|
verbose=verbose,
|
|
164
171
|
quiet=quiet,
|
|
165
172
|
)
|
|
@@ -260,6 +267,7 @@ def update_main(
|
|
|
260
267
|
use_git: bool = False,
|
|
261
268
|
repo: bool = False,
|
|
262
269
|
extensions: Optional[str] = None,
|
|
270
|
+
directory: Optional[str] = None,
|
|
263
271
|
strength: Optional[float] = None,
|
|
264
272
|
temperature: Optional[float] = None,
|
|
265
273
|
simple: bool = False,
|
|
@@ -276,6 +284,7 @@ def update_main(
|
|
|
276
284
|
:param use_git: Use Git history to retrieve the original code if True.
|
|
277
285
|
:param repo: If True, run in repository-wide mode.
|
|
278
286
|
:param extensions: Comma-separated string of file extensions to filter by in repo mode.
|
|
287
|
+
:param directory: Optional directory to scan in repo mode (defaults to repo root).
|
|
279
288
|
:param strength: Optional strength parameter (overrides ctx.obj if provided).
|
|
280
289
|
:param temperature: Optional temperature parameter (overrides ctx.obj if provided).
|
|
281
290
|
:return: Tuple containing the updated prompt, total cost, and model name.
|
|
@@ -297,7 +306,12 @@ def update_main(
|
|
|
297
306
|
# Return error result instead of sys.exit(1) to allow orchestrator to handle gracefully
|
|
298
307
|
return None
|
|
299
308
|
|
|
300
|
-
|
|
309
|
+
# Use specified directory if provided, otherwise scan from repo root
|
|
310
|
+
if directory:
|
|
311
|
+
scan_dir = os.path.abspath(directory)
|
|
312
|
+
else:
|
|
313
|
+
scan_dir = repo_root
|
|
314
|
+
pairs = find_and_resolve_all_pairs(scan_dir, quiet, extensions, output)
|
|
301
315
|
|
|
302
316
|
if not pairs:
|
|
303
317
|
rprint("[info]No scannable code files found in the repository.[/info]")
|
|
@@ -399,10 +413,12 @@ def update_main(
|
|
|
399
413
|
# Ensure prompt file exists for agentic
|
|
400
414
|
Path(prompt_path).touch(exist_ok=True)
|
|
401
415
|
|
|
416
|
+
tests_dir = get_tests_dir_from_config()
|
|
402
417
|
success, message, agentic_cost, provider, changed_files = run_agentic_update(
|
|
403
418
|
prompt_file=prompt_path,
|
|
404
419
|
code_file=modified_code_file,
|
|
405
420
|
test_files=None,
|
|
421
|
+
tests_dir=tests_dir,
|
|
406
422
|
verbose=verbose,
|
|
407
423
|
quiet=quiet,
|
|
408
424
|
)
|
|
@@ -460,10 +476,12 @@ def update_main(
|
|
|
460
476
|
use_agentic = not simple and get_available_agents()
|
|
461
477
|
|
|
462
478
|
if use_agentic:
|
|
479
|
+
tests_dir = get_tests_dir_from_config()
|
|
463
480
|
success, message, agentic_cost, provider, changed_files = run_agentic_update(
|
|
464
481
|
prompt_file=actual_input_prompt_file,
|
|
465
482
|
code_file=modified_code_file,
|
|
466
483
|
test_files=None,
|
|
484
|
+
tests_dir=tests_dir,
|
|
467
485
|
verbose=verbose,
|
|
468
486
|
quiet=quiet,
|
|
469
487
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pdd-cli
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.118
|
|
4
4
|
Summary: PDD (Prompt-Driven Development) Command Line Interface
|
|
5
5
|
Author: Greg Tanaka
|
|
6
6
|
Author-email: glt@alumni.caltech.edu
|
|
@@ -23,19 +23,19 @@ Requires-Dist: GitPython==3.1.44
|
|
|
23
23
|
Requires-Dist: Requests==2.32.3
|
|
24
24
|
Requires-Dist: aiofiles==24.1.0
|
|
25
25
|
Requires-Dist: click==8.1.7
|
|
26
|
-
Requires-Dist: firecrawl-py
|
|
26
|
+
Requires-Dist: firecrawl-py==2.5.3
|
|
27
27
|
Requires-Dist: firebase_admin==6.6.0
|
|
28
28
|
Requires-Dist: keyring==25.6.0
|
|
29
|
-
Requires-Dist: langchain_core==0.3.56
|
|
30
29
|
Requires-Dist: nest_asyncio==1.6.0
|
|
31
30
|
Requires-Dist: pandas==2.2.3
|
|
32
|
-
Requires-Dist: psutil
|
|
33
|
-
Requires-Dist: pydantic==2.11.
|
|
34
|
-
Requires-Dist: litellm[caching]>=1.
|
|
31
|
+
Requires-Dist: psutil>=7.0.0
|
|
32
|
+
Requires-Dist: pydantic==2.11.4
|
|
33
|
+
Requires-Dist: litellm[caching]>=1.80.0
|
|
34
|
+
Requires-Dist: lxml>=5.0.0
|
|
35
35
|
Requires-Dist: rich==14.0.0
|
|
36
36
|
Requires-Dist: semver==3.0.2
|
|
37
37
|
Requires-Dist: setuptools
|
|
38
|
-
Requires-Dist: pytest
|
|
38
|
+
Requires-Dist: pytest==8.3.5
|
|
39
39
|
Requires-Dist: pytest-cov==5.0.0
|
|
40
40
|
Requires-Dist: boto3==1.35.99
|
|
41
41
|
Requires-Dist: google-cloud-aiplatform>=1.3
|
|
@@ -46,7 +46,12 @@ Requires-Dist: textual
|
|
|
46
46
|
Requires-Dist: python-dotenv==1.1.0
|
|
47
47
|
Requires-Dist: PyYAML==6.0.1
|
|
48
48
|
Requires-Dist: jsonschema==4.23.0
|
|
49
|
-
Requires-Dist: z3-solver
|
|
49
|
+
Requires-Dist: z3-solver==4.14.1.0
|
|
50
|
+
Requires-Dist: fastapi>=0.115.0
|
|
51
|
+
Requires-Dist: uvicorn[standard]>=0.32.0
|
|
52
|
+
Requires-Dist: websockets>=13.0
|
|
53
|
+
Requires-Dist: watchdog>=4.0.0
|
|
54
|
+
Requires-Dist: tiktoken>=0.7.0
|
|
50
55
|
Provides-Extra: dev
|
|
51
56
|
Requires-Dist: commitizen; extra == "dev"
|
|
52
57
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
@@ -59,7 +64,7 @@ Requires-Dist: twine; extra == "dev"
|
|
|
59
64
|
Requires-Dist: httpx==0.28.1; extra == "dev"
|
|
60
65
|
Dynamic: license-file
|
|
61
66
|
|
|
62
|
-
.. image:: https://img.shields.io/badge/pdd--cli-v0.0.
|
|
67
|
+
.. image:: https://img.shields.io/badge/pdd--cli-v0.0.118-blue
|
|
63
68
|
:alt: PDD-CLI Version
|
|
64
69
|
|
|
65
70
|
.. image:: https://img.shields.io/badge/Discord-join%20chat-7289DA.svg?logo=discord&logoColor=white&link=https://discord.gg/Yp4RTh8bG7
|
|
@@ -136,7 +141,7 @@ After installation, verify:
|
|
|
136
141
|
|
|
137
142
|
pdd --version
|
|
138
143
|
|
|
139
|
-
You'll see the current PDD version (e.g., 0.0.
|
|
144
|
+
You'll see the current PDD version (e.g., 0.0.118).
|
|
140
145
|
|
|
141
146
|
Getting Started with Examples
|
|
142
147
|
-----------------------------
|
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
pdd/__init__.py,sha256=b4-LQ8M8-GunClwSNK3e2ylVg3JSiuBWMjkqK7fTlOw,1893
|
|
2
|
+
pdd/agentic_bug.py,sha256=ujaV29jbfMrD8BAcGcQUrkSLG5jCW-oPBk_Aw3LPMYU,11004
|
|
3
|
+
pdd/agentic_bug_orchestrator.py,sha256=0zIBrlvMyz5AW7EnDVeF_Wil89XhpAUwxebThVm8aCI,18808
|
|
4
|
+
pdd/agentic_change.py,sha256=9Ydq6l-yDKhRJGiwcy6LbTRKGxyagnsRpmlE8auQ2io,7307
|
|
5
|
+
pdd/agentic_change_orchestrator.py,sha256=7dDpaYCA0n3pfvU2zlNgz240BxxyFS9LaoXiZlcDFGY,20808
|
|
6
|
+
pdd/agentic_common.py,sha256=1ccBQQkrxQB-SreJyGMhl3zrdi3m-9djG_dTgmqXmPY,18940
|
|
7
|
+
pdd/agentic_crash.py,sha256=kmpcvf0Yi8tutWq8fcXZAT0CC1_Fga1F_IApJKhmLGo,17710
|
|
8
|
+
pdd/agentic_e2e_fix.py,sha256=LS30pp4pGN-6MkpEVGnkHLGVpGWLcRvGdVFrgLUwkNE,10815
|
|
9
|
+
pdd/agentic_e2e_fix_orchestrator.py,sha256=Wn6j5ur1bHzwC5YhNUpiFM_71sR2HS06Mfr2IWWRxWI,17151
|
|
10
|
+
pdd/agentic_fix.py,sha256=w9WKoxCeaH78NpA6B6zCwS_fpRtF3jyadqFfiu4_row,53288
|
|
11
|
+
pdd/agentic_langtest.py,sha256=BOiyIJTOf7lBEZscG9e0XSu4Sp7NiMGgkquATcw7eMc,6326
|
|
12
|
+
pdd/agentic_update.py,sha256=8FbZi__4y6l4Smn3S6P4NOQvbdfOxyb6YJtwLr3j5LY,13392
|
|
13
|
+
pdd/agentic_verify.py,sha256=o86BgoXLnDo1p9N1sKH4Vu7bieRI5W51cMNfnMXW3e0,6412
|
|
14
|
+
pdd/architecture_sync.py,sha256=MBSwyajOn50RcBAKBLZNx4133UHTPMwxvv7w1DcIDJg,19061
|
|
15
|
+
pdd/auth_service.py,sha256=kup_TkldSAkfXofJ_-UPqMQiFIopCATgz-iYkrFBQRg,5999
|
|
16
|
+
pdd/auto_deps_main.py,sha256=AHuAQFvO6Xn8e1vVwiW5VUIvE4H6cSbjmIv3UU5x62Y,5017
|
|
17
|
+
pdd/auto_include.py,sha256=UgvWV0ZbwSjWkgn9tl9LpayXXPnSFcRzbDR8rjFgeOk,16745
|
|
18
|
+
pdd/auto_update.py,sha256=CUXEipFsJ4NwHFqsjafi8DPEosCTnxy5baswvbOerbo,8310
|
|
19
|
+
pdd/bug_main.py,sha256=-mSQmjj89MAucYqNur9pjOgp2ZnIp2IgpQrZPp0SDas,13267
|
|
20
|
+
pdd/bug_to_unit_test.py,sha256=BoQqNyKQpBQDW8-JwBH_RX4RHRSiU8Kk3EplFrkECt0,6665
|
|
21
|
+
pdd/change.py,sha256=Hg_x0pa370-e6oDiczaTgFAy3Am9ReCPkqFrvqv4U38,6114
|
|
22
|
+
pdd/change_main.py,sha256=RytUc4bZKYY3QjqKCEwJPpIJv47C_U3F-QBJAzJVLgs,28101
|
|
23
|
+
pdd/cli.py,sha256=N3OvJ2yfTpUvrSjVGICVD7-ekHtgFLTVbudrhuUv-dA,1480
|
|
24
|
+
pdd/cmd_test_main.py,sha256=u1GE3phYWgJPN75xreuBLlNiNmH5oUzekQO2-hFYR1s,15114
|
|
25
|
+
pdd/code_generator.py,sha256=JiV5xHaMWO5yjfBEpRREZ_rZdSzaClybDHZaImHIn7Y,6444
|
|
26
|
+
pdd/code_generator_main.py,sha256=fIgLdXhRfvkxUT_v8Ljw8wS7KZK68ewMYKK583yGr5I,65763
|
|
27
|
+
pdd/comment_line.py,sha256=sX2hf4bG1fILi_rvI9MkkwCZ2IitgKkW7nOiw8aQKPY,1845
|
|
28
|
+
pdd/config_resolution.py,sha256=DjWTDA7nFexH5E2hztPEFJdy0aboa8ImNBMj4czPeiM,2166
|
|
29
|
+
pdd/conflicts_in_prompts.py,sha256=9N3rZWdJUGayOTOgnHW9G_Jm1C9G4Y8hSLhnURc1BkY,4890
|
|
30
|
+
pdd/conflicts_main.py,sha256=SgIuU8d9S8GqP0EefloA82Tutu89n5dhcfPCtpf4Pcg,3874
|
|
31
|
+
pdd/construct_paths.py,sha256=_TzpsYYRi2WCdvSuUBFcugznzfM3sGDQAaXb5aoPPfk,52469
|
|
32
|
+
pdd/context_generator.py,sha256=-XLi4s50RLfT0YarRUC4ytT2bdDZfTffAMWPMqnj42k,6377
|
|
33
|
+
pdd/context_generator_main.py,sha256=-vHPOybHZ_9rm-S6Emvgda4AQFbcv-AW3BpPvUpAXOE,10004
|
|
34
|
+
pdd/continue_generation.py,sha256=hrSgLfPfhlE9FKImbbHG-0K9uEatKAIXU5XqlvfydXs,7962
|
|
35
|
+
pdd/crash_main.py,sha256=5SXzkaaLaZIUY51ncEqaGlC1iu4G-YxvHyEw9wu__U4,20170
|
|
36
|
+
pdd/detect_change.py,sha256=mA6k62xqeU1UG__CjzveJK0JDiRAO7AAC-JUfS0i2HQ,5510
|
|
37
|
+
pdd/detect_change_main.py,sha256=aEehiFlKAfqegW6e18gVMKxbcSQpV9gqLpyX7Bl7Chw,3863
|
|
38
|
+
pdd/edit_file.py,sha256=-FhZ-KGKYkPbnt0zFiDnnosPLh3bbKmften0Ios4-90,35017
|
|
39
|
+
pdd/find_section.py,sha256=lz_FPY4KDCRAGlL1pWVZiutUNv7E4KsDFK-ymDWA_Ec,962
|
|
40
|
+
pdd/fix_code_loop.py,sha256=1hWPKJmVwsEFA0cbcgChyJL0yAMQ7Cw2_TdXpO1Y82o,40526
|
|
41
|
+
pdd/fix_code_module_errors.py,sha256=zbWxaBzAYp9r0owZvlN46aAFKA1gZyOjZqX6vCEz7Yk,5579
|
|
42
|
+
pdd/fix_error_loop.py,sha256=g3lCi737o69Z6aUp9zJnNDCnG9Zx5JdAJPgcHfv_JzI,43300
|
|
43
|
+
pdd/fix_errors_from_unit_tests.py,sha256=00vanOVvZ8KUvQMaUtAoComjZNwiyrXd3bvi8iCUCXk,9577
|
|
44
|
+
pdd/fix_main.py,sha256=XW3pnoDHqD0Zjgwzg2BrxgxV6hIY41702si25L9jxmo,27932
|
|
45
|
+
pdd/fix_verification_errors.py,sha256=oT0edNBj4CTd1kaE0vdnWjyB6el1tECh0sIOZ8O1AmQ,11583
|
|
46
|
+
pdd/fix_verification_errors_loop.py,sha256=9R_hEHWf4PWAUFdP5rZl0fzdDH9d3jjvprf9vhhnpnY,68169
|
|
47
|
+
pdd/fix_verification_main.py,sha256=Q9OP-ToZ1Qv4nsRICDJQ0_NtF4hO4fs-w2j0Kxr6xPo,35790
|
|
48
|
+
pdd/generate_output_paths.py,sha256=mY4VWya4-4o6z6MYePqaGi9KnAAeaqeY6OU5mFb6cIw,31234
|
|
49
|
+
pdd/generate_test.py,sha256=PawBgvRZ-SaDqUtuh3slbUXb63OGPVKpkDcX0_MifB4,9294
|
|
50
|
+
pdd/get_comment.py,sha256=U-cP4-T3umN_fHVNladR4Gh1TrBtJlselWNjScEYqIM,808
|
|
51
|
+
pdd/get_extension.py,sha256=T5q0WZlEyPrxT7Bg-DoLZ0XR0JazV940shw7NKhEgNc,2693
|
|
52
|
+
pdd/get_jwt_token.py,sha256=NjYfznNvQ9u48dxPAEbAxCnYkLrq2Zg79MJbGrkxHlA,22812
|
|
53
|
+
pdd/get_language.py,sha256=ZQBK3UDJM2XBy9cFpu8k1b2m9wFsOmd0myXmESLFDOc,1506
|
|
54
|
+
pdd/get_run_command.py,sha256=Xux3iiNKvErOQWbXGmj25J8bgUkZYoZ96B9hvogqUxk,2348
|
|
55
|
+
pdd/get_test_command.py,sha256=2Ijf6LgJdrZ_xG6am_7uVQaz0ocFZLCFqxiP-VZmC34,2049
|
|
56
|
+
pdd/git_update.py,sha256=yoEJJfgLhVlsDx-EtKfAUv8ZqFMNJO1piXMEZ98qPxc,4994
|
|
57
|
+
pdd/increase_tests.py,sha256=68cM9d1CpaLLm2ISFpJw39xbRjsfwxwS06yAwRoUCHk,4433
|
|
58
|
+
pdd/incremental_code_generator.py,sha256=RoaJDavR0A5ybXc8Pvqe7Hwwhz9gHbP_kmGQXn3XveQ,9425
|
|
59
|
+
pdd/insert_includes.py,sha256=wPRYeWl2IxMNtqsANeeUdZo3CR4h2bo8-d5nYWsnGg0,6104
|
|
60
|
+
pdd/install_completion.py,sha256=bLMJuMOBDvsEnDAUpgiPesNRGhY_IvBvz8ZvmbTzP4o,5472
|
|
61
|
+
pdd/llm_invoke.py,sha256=5pZyHOA18nScOdxZCit4GyJ4hFxWWEhZV2Q-2zFTDwM,147589
|
|
62
|
+
pdd/load_prompt_template.py,sha256=A4CwhRCu4G1OPisZK-ZkdafjqTWGshxvxPm-czi7Als,2287
|
|
63
|
+
pdd/logo_animation.py,sha256=n6HJWzuFze2csAAW2-zbxfjvWFYRI4hIdwVBtHBOkj4,20782
|
|
64
|
+
pdd/mcp_config.json,sha256=D3ctWHlShvltbtH37zbYb6smVE0V80_lGjDKDIqsSBE,124
|
|
65
|
+
pdd/path_resolution.py,sha256=TFEzlc2W_x_jwBwB5uTC3jYXMy9v-HyDkQg_DCbUHXU,4180
|
|
66
|
+
pdd/pdd_completion.fish,sha256=pfEyBWzFp3matC_SW2BTDNaBJybYKUEi3YpPE-D6AKU,13776
|
|
67
|
+
pdd/pdd_completion.sh,sha256=xgx-g6aeCCrlh6loeLyJN5jCsX15YXrWyT1U499p3C0,6490
|
|
68
|
+
pdd/pdd_completion.zsh,sha256=V9-V8jqw3osjlXNOvjYMJf0E771-_EQe-Cboo1xzPvY,17090
|
|
69
|
+
pdd/postprocess.py,sha256=BU2xaWLGWHb2Wpea4X5BL3oUQmiKHCBzKD1yoSmjfis,5061
|
|
70
|
+
pdd/postprocess_0.py,sha256=OW17GyCFLYErCyWh2tL4syuho3q2yFf2wyekQ4BLdPM,2168
|
|
71
|
+
pdd/preprocess.py,sha256=4y6HYQPBC6IE66aPWg_Gjyg4dUWbqKQLAQ_qKuP8Y48,22388
|
|
72
|
+
pdd/preprocess_main.py,sha256=apW_L_s4iaI_UwVV90VhlCe4PvJDijd84kc7Hrx5tlY,4889
|
|
73
|
+
pdd/process_csv_change.py,sha256=ckNqVPRooWVyIvmqjdEgo2PDLnpoQ6Taa2dUaWGRlzU,27926
|
|
74
|
+
pdd/pytest_output.py,sha256=UPnGZDbUCLZGEWcA2WvYRdgPegUjY25NHgK9ppFjFBg,10638
|
|
75
|
+
pdd/python_env_detector.py,sha256=y-QESoPNiKaD821uz8okX-9qA-oqvH9cQHY2_MwFHzU,5194
|
|
76
|
+
pdd/remote_session.py,sha256=xuWq_4GmnUnsgCZCDXot8cb52XxSXg9oF2LYOnhQd5E,33785
|
|
77
|
+
pdd/render_mermaid.py,sha256=nvFO_Wl5MpYIiF3yMpToF8ePerHsr3c9WV745u-Y3X8,9050
|
|
78
|
+
pdd/setup_tool.py,sha256=xKut3G4iIfLBIudix-O71Q9CCtS1GeC8O4uGV_Qjscc,24135
|
|
79
|
+
pdd/simple_math.py,sha256=j3WmhkbIef0M_1wCcIwBD7HAHWfvmTDU5BkQb-t4l6o,31
|
|
80
|
+
pdd/split.py,sha256=9lWrh-JOjOpxRp4-s1VL7bqJMVWlsmY5LxONT7sYM8A,5288
|
|
81
|
+
pdd/split_main.py,sha256=52rcZoeS_wpYRiqbqMUgr_hUY7GS62otwzDfuAGi6YA,4845
|
|
82
|
+
pdd/summarize_directory.py,sha256=TDihusV04mJiHV8X4-IFSs2LhTKlGiMGM7gQkXl4zA4,10036
|
|
83
|
+
pdd/sync_animation.py,sha256=5gFg8G8PKMtJLkScOV98OADyQhLMnw6rJf0pqZxAiQY,28274
|
|
84
|
+
pdd/sync_determine_operation.py,sha256=dlBu5Qf8aJ22h2VLQ-sfJAvxw2DqpLp2im0SW58PhAY,89907
|
|
85
|
+
pdd/sync_main.py,sha256=YFIeRO5Jp39VX1GXx-bRoggFRKhK6PVT0qPNn0Iq64Q,27062
|
|
86
|
+
pdd/sync_orchestration.py,sha256=n3OhCc5_aQdTukUunyb60QAf5kNDdGsfJaSkEPklC1s,85089
|
|
87
|
+
pdd/sync_tui.py,sha256=gponSnFNHMO9uTRsmJnL5McCgLbeGeAa34d379STthI,29300
|
|
88
|
+
pdd/template_expander.py,sha256=vKpnDzNLn6dyaqhZBucBJa0s1LfntiqOOfi90GyXXts,4842
|
|
89
|
+
pdd/template_registry.py,sha256=L8ZQ-apmdDe7Jj_JlgHv7fUoIiJnGDuE0V64Y-MO9vA,8099
|
|
90
|
+
pdd/trace.py,sha256=n_h5gS8d7ywUmVuTmjtlQVkO5op_YrJeVwZKx9ZC-8s,12233
|
|
91
|
+
pdd/trace_main.py,sha256=SOnMEHta9WaMAxulMrk6aFojma4ti61ILvJp3NVhpbg,4992
|
|
92
|
+
pdd/track_cost.py,sha256=r1AA0rTm4FR3vdn7TrwNGHnE7MaFqhIlQcgGFIL9gsA,7669
|
|
93
|
+
pdd/unfinished_prompt.py,sha256=vrzJ5q9VHQChaLLeCXMLCP0QsfWNt1cFnVOhFEN12iU,6333
|
|
94
|
+
pdd/update_main.py,sha256=1iivSF3JjSE6bRRjIHB6JsDKRZ6zl6HYbhBH6WivI2E,25839
|
|
95
|
+
pdd/update_model_costs.py,sha256=RfeOlAHtc1FCx47A7CjrH2t5WXQclQ_9uYtNjtQh75I,22998
|
|
96
|
+
pdd/update_prompt.py,sha256=K1i9BIpb3ioFGM32WcqueAuKqzLlezsPsvcovOagOhI,5239
|
|
97
|
+
pdd/xml_tagger.py,sha256=5Bc3HRm7iz_XjBdzQIcMb8KocUQ8PELI2NN5Gw4amd4,4825
|
|
98
|
+
pdd/commands/__init__.py,sha256=5ID0Erk2chGBWPE7f_6vJy3-YE_Fc991DEfU4m8QZSc,1617
|
|
99
|
+
pdd/commands/analysis.py,sha256=PM-5lt9kMG6JZ5Z69wOEm2RaDzcHrv9hn6XxCcKXkos,9613
|
|
100
|
+
pdd/commands/auth.py,sha256=tGULnVN6a7x4rMtVCGUnvcEivRsvYUg4jQS3Koezw1Q,10170
|
|
101
|
+
pdd/commands/connect.py,sha256=dWsNV_Nek4hXZMBzC1BJ0-CMet7r6jknaxx2rZxQ09k,10437
|
|
102
|
+
pdd/commands/fix.py,sha256=8r4Iudon9kE7DMKIuh9fN4FwV_5nMe9UZbsYIg2BvYo,6964
|
|
103
|
+
pdd/commands/generate.py,sha256=RkKvIFqpYmZeJzCgAMGF6abK7CR85g-m_SIXO5lgOyQ,8686
|
|
104
|
+
pdd/commands/maintenance.py,sha256=DgAI_nQttdNkSaD9W0mJDtizevy6mKRMkfjlgJwwMes,5025
|
|
105
|
+
pdd/commands/misc.py,sha256=i9GK0wto-3oleB0tSwcsHipl9Shs2vEZ40-pUrdX0S4,2574
|
|
106
|
+
pdd/commands/modify.py,sha256=bTCvX_duAdQWxDe0RSeG4jMpyXV5dKxwm5iNiaXZTnE,9370
|
|
107
|
+
pdd/commands/report.py,sha256=E9CCbbux_MP5oGu18M_XQBVaQhYCMsQOUn9KQPEBiSU,5868
|
|
108
|
+
pdd/commands/sessions.py,sha256=G7SAS6LfaGBM0QZLAF4DumqLEcVRIby0llDFKadS_Qo,10388
|
|
109
|
+
pdd/commands/templates.py,sha256=pJicUZww2U5nOcQw_tuQK3OQwYK3NRRc81SZ5YLkt_E,8957
|
|
110
|
+
pdd/commands/utility.py,sha256=tz9vmYZAvMVRIGUKd2B5808ggOO9i-4Kk3QykRU8j08,3677
|
|
111
|
+
pdd/core/__init__.py,sha256=m5ywJMVb2PhmHbxC1KMA-TYP7Am4Z1rv_DihgOZRCu0,619
|
|
112
|
+
pdd/core/cli.py,sha256=sgRYlTulRJcCd9kCeqxRWf6pvjdtpw3SjLxSv9Cdb2Q,21636
|
|
113
|
+
pdd/core/cloud.py,sha256=WvaGYwGVw41tClAHc1PyJXDN6xIfRowvBL-Z7JQtFKw,8289
|
|
114
|
+
pdd/core/dump.py,sha256=AEwRIaVuWn5Aegov9PNSQ9BQfjrVBl1npohce29XKsY,20419
|
|
115
|
+
pdd/core/errors.py,sha256=CVI1h7p5K9lRTuw-BYxyGfH68NJ8-ZBGqW-KxD-_6MA,2641
|
|
116
|
+
pdd/core/remote_session.py,sha256=V46Y9jzKzUmvQbfRejFGCi7t_9hkjp_K78VPwX0NP_s,2163
|
|
117
|
+
pdd/core/utils.py,sha256=e2y-S6OcDbjJw1vdGWwNTDlICPyYy9H-5yfj5nPaAw8,2524
|
|
118
|
+
pdd/data/language_format.csv,sha256=X_vifnKBod8aeyzht94pdDpZWChkxT3Hu1G2cA_tTy8,1844
|
|
119
|
+
pdd/data/llm_model.csv,sha256=n42HslQzEGAjuyio_xpkQCAq7hcN5mumsfOhEcEYvME,1813
|
|
120
|
+
pdd/docs/prompting_guide.md,sha256=DY5VyJZCYIZ1NAvgjOaCx3Bv_hWo4krW4prwYivaUh0,39525
|
|
121
|
+
pdd/docs/whitepaper_with_benchmarks/data_and_functions/benchmark_analysis.py,sha256=IwvFLrgGLmx3ajF-Z_eQaRowCzyJk_cQxD3wxMkfZQU,23406
|
|
122
|
+
pdd/docs/whitepaper_with_benchmarks/data_and_functions/creation_compare.py,sha256=0sEVBjJ0yHQWzh4NbbJPmpsIB2iyJlvwU0uRnV12fDE,26558
|
|
123
|
+
pdd/frontend/dist/index.html,sha256=4eVXmbzspE-BXXw4BfF4AqC7VzRLAnkL9EoerHFE-co,11856
|
|
124
|
+
pdd/frontend/dist/logo.svg,sha256=7pD_n_dgwPjM2iPBpj2rfPJ9fg1gfebAWOO4PCpum1U,797
|
|
125
|
+
pdd/frontend/dist/assets/index-B5DZHykP.css,sha256=HLO_vKmG5ANNQg2BEeOD8KYUvV8sL3rH0i2S1Cwe4T0,7322
|
|
126
|
+
pdd/frontend/dist/assets/index-DQ3wkeQ2.js,sha256=M9tu7dNTwoZChtVzic8L8gtKwiJhglfxn_Qjr6OSjws,1598213
|
|
127
|
+
pdd/prompts/agentic_bug_step10_pr_LLM.prompt,sha256=NlkzPKoOwy2aMvu36ZyBKkhYf-Ww5EzhAPmmUsP_6PI,5478
|
|
128
|
+
pdd/prompts/agentic_bug_step1_duplicate_LLM.prompt,sha256=UQnvHbMF-aN35Pgs2-Eu9VnZdwZmrUpJlkg4bJ4PuEk,2259
|
|
129
|
+
pdd/prompts/agentic_bug_step2_docs_LLM.prompt,sha256=rFyXFFm9o4BFJDlAcP0iDBRZdDKJI9bCcPoLZ6ZKalk,4110
|
|
130
|
+
pdd/prompts/agentic_bug_step3_triage_LLM.prompt,sha256=oXeNBtAmfcdhQ6jCSNP7OSXiMFxIPBpwee67hudcPIg,2323
|
|
131
|
+
pdd/prompts/agentic_bug_step4_reproduce_LLM.prompt,sha256=a7Vcs79WqWr9dBZcRA-1BMtVArcJ1gKLqz7czp_cZQo,2586
|
|
132
|
+
pdd/prompts/agentic_bug_step5_root_cause_LLM.prompt,sha256=HF82G_PDMsA5ydhSjjEMfWnvq44NAIN7-1zyWUg2mMA,3724
|
|
133
|
+
pdd/prompts/agentic_bug_step6_test_plan_LLM.prompt,sha256=u10D6__MZX3PWfs3cAOo_uK6A4-zx7Qao3s3LoH8DdU,2758
|
|
134
|
+
pdd/prompts/agentic_bug_step7_generate_LLM.prompt,sha256=SGCh-Np4a9A2eljMYanX1EzyNTBZEWA93eRNyglpfUE,5425
|
|
135
|
+
pdd/prompts/agentic_bug_step8_verify_LLM.prompt,sha256=iV5q88rdQhMeqI2H6mM6I9ye5a-aCCH8j3xYdoBadDM,2852
|
|
136
|
+
pdd/prompts/agentic_bug_step9_e2e_test_LLM.prompt,sha256=zcZTESxyOFg_Ze7ulSf3tIyuUocMAvNwljheslMkEnA,10507
|
|
137
|
+
pdd/prompts/agentic_change_step10_identify_issues_LLM.prompt,sha256=pzl3-TUy4jC2CaQj9ks-We9ULS09GmORHSrXENXq2dQ,4216
|
|
138
|
+
pdd/prompts/agentic_change_step11_fix_issues_LLM.prompt,sha256=ou6S1IO7dNZoeTtylpq7VJ5P5_ce7kmtuWR95puvBOI,3226
|
|
139
|
+
pdd/prompts/agentic_change_step12_create_pr_LLM.prompt,sha256=dTQpf5iNdvI1hSx_AKcBlGxI63-Pn7kHtxt5AJR-eGY,3069
|
|
140
|
+
pdd/prompts/agentic_change_step1_duplicate_LLM.prompt,sha256=22ylrCC1EViSznnjTrRi7n0as-bFarguEPsgiE8K9ow,2305
|
|
141
|
+
pdd/prompts/agentic_change_step2_docs_LLM.prompt,sha256=fnWGYxz6seWzOtU3SIJsawf_iMP6TX0dkGu_G2vDC_A,3048
|
|
142
|
+
pdd/prompts/agentic_change_step3_research_LLM.prompt,sha256=MPH0Mt7V1Hmlaa1JU3CK3mCLQ-EmpuYgQJGEwv5mh_A,3771
|
|
143
|
+
pdd/prompts/agentic_change_step4_clarify_LLM.prompt,sha256=vQkwmGsWphnlPfKg0zYLmNXoyImIZ5LNp8v6OB7Vixg,5151
|
|
144
|
+
pdd/prompts/agentic_change_step5_docs_change_LLM.prompt,sha256=BgQA117k-ZFtrIC732aygFnIUt1QEQlTFzem91zbVW0,3058
|
|
145
|
+
pdd/prompts/agentic_change_step6_devunits_LLM.prompt,sha256=FL1ISdtxqd1G9_cb3UbIp7SwetKRkTQ6kaazMCatvNQ,3977
|
|
146
|
+
pdd/prompts/agentic_change_step7_architecture_LLM.prompt,sha256=UYEkz3bJi4c4suuLJeZYqvGpl24GT9G5Ovya4pc4KF4,5461
|
|
147
|
+
pdd/prompts/agentic_change_step8_analyze_LLM.prompt,sha256=bQJlGpg6cNIxtQduJX9imKvZQQTgbQoet7kKkN7hGis,4202
|
|
148
|
+
pdd/prompts/agentic_change_step9_implement_LLM.prompt,sha256=x3qWu_BJiXwF-8-766HfVfFxG8NcAxvKPmNnuP97D_g,5688
|
|
149
|
+
pdd/prompts/agentic_crash_explore_LLM.prompt,sha256=nlNO-LSHIbECO82j25CR8xe8IKKMFeidOkpRvW8Vn8w,1993
|
|
150
|
+
pdd/prompts/agentic_e2e_fix_step1_unit_tests_LLM.prompt,sha256=mREKobyUbVggw1pmG7e1JAr9f4tdkYLsLpXlXqTdHzQ,2936
|
|
151
|
+
pdd/prompts/agentic_e2e_fix_step2_e2e_tests_LLM.prompt,sha256=8qacgiw-ZJPQLQR_gNHERKOiY7zuDM3MzbySP9_VU58,2390
|
|
152
|
+
pdd/prompts/agentic_e2e_fix_step3_root_cause_LLM.prompt,sha256=6177oE0EgkBh28rzIdKwsBgnyC-Vzn6kaTIlvuCiWO0,2506
|
|
153
|
+
pdd/prompts/agentic_e2e_fix_step4_fix_e2e_tests_LLM.prompt,sha256=2a8cmGDvEIwkqfWLmZGgXT1NfhxdpNJDkFHx_v75NUE,2480
|
|
154
|
+
pdd/prompts/agentic_e2e_fix_step5_identify_devunits_LLM.prompt,sha256=2v-wRFS5DojAvSXYoKPeSPQcUxmUOiHOcObp0sHVwV4,2479
|
|
155
|
+
pdd/prompts/agentic_e2e_fix_step6_create_unit_tests_LLM.prompt,sha256=KNdgB0SuCxpbvYA5vy7TMKHXf6Ykc1fhNm-7UxP2eok,2614
|
|
156
|
+
pdd/prompts/agentic_e2e_fix_step7_verify_tests_LLM.prompt,sha256=QxtlJFEU_8YQGOWy_yBqObcGAI7ld4fHFGXqqw2uIoo,2823
|
|
157
|
+
pdd/prompts/agentic_e2e_fix_step8_run_pdd_fix_LLM.prompt,sha256=619s76FUJ9yaNFm6Zhv-8jCvrGka-IADUo0ICJIBhMg,3147
|
|
158
|
+
pdd/prompts/agentic_e2e_fix_step9_verify_all_LLM.prompt,sha256=wxNbDrxQILxK9PiuiktcKJEo0Ix-IKbC4AsU166YjpI,3147
|
|
159
|
+
pdd/prompts/agentic_fix_explore_LLM.prompt,sha256=2K43Bg4JTCFwXuhqFZqR9hRkfPegtjAWsLON414uLUM,1901
|
|
160
|
+
pdd/prompts/agentic_fix_harvest_only_LLM.prompt,sha256=9dCB-Kqy221s47XRpCwIO_EzVHwWKSBYyFgwVfQb4ZQ,2316
|
|
161
|
+
pdd/prompts/agentic_fix_primary_LLM.prompt,sha256=wZpUrVUw8TxDr6hhLgCRqx7LLO_kBGIxUKiPVMXBSDg,3309
|
|
162
|
+
pdd/prompts/agentic_update_LLM.prompt,sha256=pUe3h7WLZXGpuTNof8dHfZhq3vTO6rmZq2Z_yLpPXG4,2735
|
|
163
|
+
pdd/prompts/agentic_verify_explore_LLM.prompt,sha256=wC9TqpsAP0rNnyz_CczPFmmT4P_iGgEsqg_fUqyNEFw,1953
|
|
164
|
+
pdd/prompts/auto_include_LLM.prompt,sha256=ds9ntQBDaMttPSb0Hb_YrEJDgx7CFU1yvo3J4ry0xcM,15956
|
|
165
|
+
pdd/prompts/bug_to_unit_test_LLM.prompt,sha256=KdMkvRVnjVSf0NTYIaDXIMT93xPttXEwkMpjWx5leLs,1588
|
|
166
|
+
pdd/prompts/change_LLM.prompt,sha256=5rgWIL16p3VRURd2_lNtcbu_MVRqPhI8gFIBt1gkzDQ,2164
|
|
167
|
+
pdd/prompts/code_patcher_LLM.prompt,sha256=yeV4lsRuPQzNdKRV_LQUOmmWh2yhu8YgKXUWo4bge4I,2392
|
|
168
|
+
pdd/prompts/conflict_LLM.prompt,sha256=46DB_qOCtsfVsj6y8E8grI0izxAk_-ixoENUUHQAkHc,1593
|
|
169
|
+
pdd/prompts/continue_generation_LLM.prompt,sha256=Jsd3eeu23heqw2frfOLzZ5c9dn0QZrfWGratfyWV-ac,111
|
|
170
|
+
pdd/prompts/detect_change_LLM.prompt,sha256=-q8VqXAv6ufEE193DNbTcgpbxiKISR5-5j3M0TTqa8s,4522
|
|
171
|
+
pdd/prompts/diff_analyzer_LLM.prompt,sha256=2lZI4g4DO9NwMPnxVJW717dGG5LQuBXqgeIjYfplEdU,2901
|
|
172
|
+
pdd/prompts/example_generator_LLM.prompt,sha256=aF1ZDTKcvYaAYQFZFy7OVh6w45cgw5Oo17WTQf37hXE,2466
|
|
173
|
+
pdd/prompts/extract_auto_include_LLM.prompt,sha256=BamIIt8qrML2ZtNe3D4K30iMobJ4URtkyomHCDaf0iw,313
|
|
174
|
+
pdd/prompts/extract_code_LLM.prompt,sha256=7Tb5lGETfgGDgb0hFNn5-10K3Mlx2FKVg0lIqJe1RDI,2960
|
|
175
|
+
pdd/prompts/extract_conflict_LLM.prompt,sha256=V_xXdU7V4IZK9SVFxJtXKRn_wFkP3zp4FJrxeNM9XYc,1023
|
|
176
|
+
pdd/prompts/extract_detect_change_LLM.prompt,sha256=2HXSb9bGjHZsKrUGvfBdBAAcGBCrQ2AxC8vUJRAfB1U,1003
|
|
177
|
+
pdd/prompts/extract_program_code_fix_LLM.prompt,sha256=z8RsuRfPVaxMrAeKzzEQgBt07DysIR2DDaxmgfFT8sk,1953
|
|
178
|
+
pdd/prompts/extract_prompt_change_LLM.prompt,sha256=1e3AxcVpZ85t7pVvXqCpBUJzGI995MIimXicClagSvw,366
|
|
179
|
+
pdd/prompts/extract_prompt_split_LLM.prompt,sha256=rhStDroVxDYRcCjYq7XCCub8B-KmfCFj5_7PxhgMmz0,1097
|
|
180
|
+
pdd/prompts/extract_prompt_update_LLM.prompt,sha256=htttAp-QC6YycnfhFVsLhTM0uvhyEz9TEoGdFyZS8Yw,910
|
|
181
|
+
pdd/prompts/extract_promptline_LLM.prompt,sha256=mPeTjVaYJtgz2ygO0TVeO3vgmoBvWOWFSrwd1wKXJ74,831
|
|
182
|
+
pdd/prompts/extract_unit_code_fix_LLM.prompt,sha256=c4l6twMLC2YqDDvOj_DcaKmJQF8kIupeqvkueK_OQng,14301
|
|
183
|
+
pdd/prompts/extract_xml_LLM.prompt,sha256=eRcHaL-khShpb7C1_b7wmBJHfo2Kh1Wvjo_aOcWZovU,561
|
|
184
|
+
pdd/prompts/find_verification_errors_LLM.prompt,sha256=TAvwpsj8RYv6pmmxJK330rGxCS1TPmhztGxyPUtxT5I,3419
|
|
185
|
+
pdd/prompts/fix_code_module_errors_LLM.prompt,sha256=VSO0q3KtPbSWZkiJnmpgviUtSu73jpd2u3DWRVp-VbA,3794
|
|
186
|
+
pdd/prompts/fix_errors_from_unit_tests_LLM.prompt,sha256=3XGMGkBh5jUSXyuafpUsHGE_ynIfCUErAJ3HIkClxlY,5861
|
|
187
|
+
pdd/prompts/fix_verification_errors_LLM.prompt,sha256=AO1yhxNfM7s-93ZjufGrJUcRvSl04CmZl_WEbnTUFbY,4997
|
|
188
|
+
pdd/prompts/generate_test_LLM.prompt,sha256=XsMTzh-mXTiy3LrKucR7ruwZLoILZcyfSWXssLphXJA,4667
|
|
189
|
+
pdd/prompts/generate_test_from_example_LLM.prompt,sha256=XdMK2KgWRHNm-ph3CxtqeUNz0geCOMt87Qgc6P5dWj4,3678
|
|
190
|
+
pdd/prompts/increase_tests_LLM.prompt,sha256=XvzvwTyAaxbJIWwUk0iby2CoTfRCVRWbjT3D3G29OYQ,914
|
|
191
|
+
pdd/prompts/insert_includes_LLM.prompt,sha256=g-p2gXKENsqvfK5Q9FYbqFsIJ5CP7rbxmd4rROA-W80,1453
|
|
192
|
+
pdd/prompts/prompt_code_diff_LLM.prompt,sha256=8rf-40BK9kuZ-pQd2FnjCWVlB04bEGVFKcHDM9TcuTQ,5632
|
|
193
|
+
pdd/prompts/prompt_diff_LLM.prompt,sha256=qYI96mZI_8fqf7Iuw_iOxi9HF7XekM7UsV2cUDqttws,2979
|
|
194
|
+
pdd/prompts/split_LLM.prompt,sha256=cMVyazsue6eerOPYeueqpSNRiITy1ht0HgGytPFiQIk,6244
|
|
195
|
+
pdd/prompts/summarize_file_LLM.prompt,sha256=qb9K61XMVFy7hgGITglI37Xg7yLPAGQBm0rUBEqRnEc,387
|
|
196
|
+
pdd/prompts/sync_analysis_LLM.prompt,sha256=tU_0MlvmS5OT2zMCaldkaL-kX2x6pzZSa3uuKHLwUg0,3925
|
|
197
|
+
pdd/prompts/trace_LLM.prompt,sha256=0fHSXQbUAqQ7ABRcyYxesA1SVPbDQWCDwcW4VLPuTBA,1233
|
|
198
|
+
pdd/prompts/trim_results_LLM.prompt,sha256=w4aL0S7v7fPSi3L9XeQR3mUOgNv3hpTDqi4rOtu7L7I,4033
|
|
199
|
+
pdd/prompts/trim_results_start_LLM.prompt,sha256=OKz8fAf1cYWKWgslFOHEkUpfaUDARh3DD9L7ud9FOVE,2177
|
|
200
|
+
pdd/prompts/unfinished_prompt_LLM.prompt,sha256=vud_G9PlVv9Ig64uBC-hPEVFRk5lwpc8pW6tOIxJM4I,5082
|
|
201
|
+
pdd/prompts/update_prompt_LLM.prompt,sha256=LKLwcTh-fqUMTl2Jn5kmmFqf1y90g7e9uvZLrF77_-M,3332
|
|
202
|
+
pdd/prompts/xml_convertor_LLM.prompt,sha256=YGRGXJeg6EhM9690f-SKqQrKqSJjLFD51UrPOlO0Frg,2786
|
|
203
|
+
pdd/server/__init__.py,sha256=joPBmcoXZsiThXNOCh4zNHqS-JP0Ay7gmiBu06_HRLs,1035
|
|
204
|
+
pdd/server/app.py,sha256=HrBs8L3mg1aO39xl0YZRMnHMUU3SwowuEhN5saxPilU,12111
|
|
205
|
+
pdd/server/click_executor.py,sha256=uOHhINBQ8FRfLDl5yUOQsHQxowrzkb_TC8BSdw8R7do,19753
|
|
206
|
+
pdd/server/executor.py,sha256=JJUE_JoAYJBi0vhGr2ZSJbBR9FURXe4K9iYySjp7mak,10563
|
|
207
|
+
pdd/server/jobs.py,sha256=oLI1luuuR2AFRzsn8b77xGX2ykohHcFbzkY0P9dhBTg,24580
|
|
208
|
+
pdd/server/models.py,sha256=oXsvCQM7L-cGP0hKLvtZGE98svuoIu4lYFqTu-WQWUE,10530
|
|
209
|
+
pdd/server/security.py,sha256=XmT4qnRtlkL0KMWTZuzxx0PQ_XdgasYLXYGH2oc3NY4,8746
|
|
210
|
+
pdd/server/terminal_spawner.py,sha256=dUQ-h0C3zkSHJ09q4XA1eCxmlpgssDnIBZ5RLAM_100,7655
|
|
211
|
+
pdd/server/token_counter.py,sha256=cpNX84Ne2hFAqQImvft5mi_6RkBbj7zyqjb4seB0tPk,5628
|
|
212
|
+
pdd/server/routes/__init__.py,sha256=fotK-A6Vk4h5PAKg_QPdi33Jo39KxizNG9MrgErJNz0,754
|
|
213
|
+
pdd/server/routes/architecture.py,sha256=XvgUugOgjJ5C6p8ab_Q1oNhMGyE7rXwTRMDhAsJGJgU,14928
|
|
214
|
+
pdd/server/routes/auth.py,sha256=Yp6Tb2_S2WtVZpzbMb_LnL-T2_CMhZR3AHxGzlal_8c,11886
|
|
215
|
+
pdd/server/routes/commands.py,sha256=PEQtPoAF74ByYNmPwujyXjhJN8b5YEjnvb2XYqZDYqM,31608
|
|
216
|
+
pdd/server/routes/config.py,sha256=7-gPMIpqKs22ogcoj3RtOfCUfaWXxEw1hZX_e3Dlh9k,1043
|
|
217
|
+
pdd/server/routes/files.py,sha256=qqtoy7Zcy3ixZM9y5T1N6R9i7wxxz-YAzLzwVOyKlCI,21214
|
|
218
|
+
pdd/server/routes/prompts.py,sha256=b7UWfnkPtUsfqgVrEDYSdgzpg11sg1PKBgs3R4WH_b8,56371
|
|
219
|
+
pdd/server/routes/websocket.py,sha256=lh-65f9ZRLS-QQS-ZTIMi_s72mK_9Ntu6vTfix2hA5o,16185
|
|
220
|
+
pdd/templates/architecture/architecture_json.prompt,sha256=femVCFSpf51Qj1TsLD-rwF6CcoUz5Iclaxo9p-CpUSI,10912
|
|
221
|
+
pdd/templates/generic/generate_prompt.prompt,sha256=0qLK-L4kHmd3TKTQT0o9NOwc8DbdFpijTO9dJqPfwOU,10708
|
|
222
|
+
pdd_cli-0.0.118.dist-info/licenses/LICENSE,sha256=kvTJnnxPVTYlGKSY4ZN1kzdmJ0lxRdNWxgupaB27zsU,1066
|
|
223
|
+
pdd_cli-0.0.118.dist-info/METADATA,sha256=40zA3KbompUkEcvTwwqJzYZDii1vzkWY2otkih2fNUY,13051
|
|
224
|
+
pdd_cli-0.0.118.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
225
|
+
pdd_cli-0.0.118.dist-info/entry_points.txt,sha256=Kr8HtNVb8uHZtQJNH4DnF8j7WNgWQbb7_Pw5hECSR-I,36
|
|
226
|
+
pdd_cli-0.0.118.dist-info/top_level.txt,sha256=xjnhIACeMcMeDfVNREgQZl4EbTni2T11QkL5r7E-sbE,4
|
|
227
|
+
pdd_cli-0.0.118.dist-info/RECORD,,
|
pdd_cli-0.0.90.dist-info/RECORD
DELETED
|
@@ -1,153 +0,0 @@
|
|
|
1
|
-
pdd/__init__.py,sha256=lZHXsguzjZ29yCx-jRAk3PkzNF7CXOMtssd3NEQFqSc,641
|
|
2
|
-
pdd/agentic_common.py,sha256=RIvpdoFaznJABa-X2zVMzf2DMGEKD4sleD9xryuZ6So,28935
|
|
3
|
-
pdd/agentic_crash.py,sha256=kmpcvf0Yi8tutWq8fcXZAT0CC1_Fga1F_IApJKhmLGo,17710
|
|
4
|
-
pdd/agentic_fix.py,sha256=rpXKysOUu_Q3PF0d13jGBMSodhvaliVAu76-6YtXuiU,48449
|
|
5
|
-
pdd/agentic_langtest.py,sha256=BOiyIJTOf7lBEZscG9e0XSu4Sp7NiMGgkquATcw7eMc,6326
|
|
6
|
-
pdd/agentic_update.py,sha256=W8drWfOiHkDeTmCFBBPUqSvTWdqM3bCNbpZTK-UfIm8,12584
|
|
7
|
-
pdd/agentic_verify.py,sha256=o86BgoXLnDo1p9N1sKH4Vu7bieRI5W51cMNfnMXW3e0,6412
|
|
8
|
-
pdd/auto_deps_main.py,sha256=50mJWXqaFaMOeMOfPXR1WT7HMVIt1JDblBKS0e7zJTw,4501
|
|
9
|
-
pdd/auto_include.py,sha256=nTEET5NpJ-zEBpkToiD_dyeK_edFcGfgVwUcdGz2ko8,9765
|
|
10
|
-
pdd/auto_update.py,sha256=w6jzTnMiYRNpwQHQxWNiIAwQ0d6xh1iOB3xgDsabWtc,5236
|
|
11
|
-
pdd/bug_main.py,sha256=EtaGTuucQ7VgqOhyg4o6GFG7_QtTsDPTrRdGJWT648M,4841
|
|
12
|
-
pdd/bug_to_unit_test.py,sha256=BoQqNyKQpBQDW8-JwBH_RX4RHRSiU8Kk3EplFrkECt0,6665
|
|
13
|
-
pdd/change.py,sha256=Hg_x0pa370-e6oDiczaTgFAy3Am9ReCPkqFrvqv4U38,6114
|
|
14
|
-
pdd/change_main.py,sha256=RytUc4bZKYY3QjqKCEwJPpIJv47C_U3F-QBJAzJVLgs,28101
|
|
15
|
-
pdd/cli.py,sha256=N3OvJ2yfTpUvrSjVGICVD7-ekHtgFLTVbudrhuUv-dA,1480
|
|
16
|
-
pdd/cmd_test_main.py,sha256=ygHk8zX54ws5-oWL9u_sXhEHHi4f8InPdKCtEPYIjJY,10389
|
|
17
|
-
pdd/code_generator.py,sha256=1lAtyjovde8sUvWi7VWcMqjx4N2oGQDuNPZtSFeh28Y,6372
|
|
18
|
-
pdd/code_generator_main.py,sha256=SBKH94oyvmqEYWVd5OreTcnevDwn5rEAL0nxih4_v5E,60013
|
|
19
|
-
pdd/comment_line.py,sha256=sX2hf4bG1fILi_rvI9MkkwCZ2IitgKkW7nOiw8aQKPY,1845
|
|
20
|
-
pdd/config_resolution.py,sha256=DjWTDA7nFexH5E2hztPEFJdy0aboa8ImNBMj4czPeiM,2166
|
|
21
|
-
pdd/conflicts_in_prompts.py,sha256=9N3rZWdJUGayOTOgnHW9G_Jm1C9G4Y8hSLhnURc1BkY,4890
|
|
22
|
-
pdd/conflicts_main.py,sha256=SgIuU8d9S8GqP0EefloA82Tutu89n5dhcfPCtpf4Pcg,3874
|
|
23
|
-
pdd/construct_paths.py,sha256=FZKo9S-JG5ScPaDK6OzVSSQteGC9v9NVORvuOYPr9yk,40078
|
|
24
|
-
pdd/context_generator.py,sha256=-XLi4s50RLfT0YarRUC4ytT2bdDZfTffAMWPMqnj42k,6377
|
|
25
|
-
pdd/context_generator_main.py,sha256=XMiOLUuqVp4T9ubhHd1G7auQmowxlRe9HZ8KlQPhenk,7819
|
|
26
|
-
pdd/continue_generation.py,sha256=nEkAKZd9lM7OelQkffP99Y-JLxTFZeY3AH9VLRQCjHg,7854
|
|
27
|
-
pdd/crash_main.py,sha256=darcKgwny91Oj-9WRySkVc9zq-KkWpb6a_-trxSr4Mc,9428
|
|
28
|
-
pdd/detect_change.py,sha256=mA6k62xqeU1UG__CjzveJK0JDiRAO7AAC-JUfS0i2HQ,5510
|
|
29
|
-
pdd/detect_change_main.py,sha256=aEehiFlKAfqegW6e18gVMKxbcSQpV9gqLpyX7Bl7Chw,3863
|
|
30
|
-
pdd/edit_file.py,sha256=-FhZ-KGKYkPbnt0zFiDnnosPLh3bbKmften0Ios4-90,35017
|
|
31
|
-
pdd/find_section.py,sha256=lz_FPY4KDCRAGlL1pWVZiutUNv7E4KsDFK-ymDWA_Ec,962
|
|
32
|
-
pdd/fix_code_loop.py,sha256=-Sg1oINJsK4kMf9jR16OtC7toapAtG5wLs8wu3oLXZU,33179
|
|
33
|
-
pdd/fix_code_module_errors.py,sha256=jKH88KunVhof1MYRI_F42_YnLt5k4lif4YztQgzB9g8,5446
|
|
34
|
-
pdd/fix_error_loop.py,sha256=sZoGvQo0vGY8mf9B8w9amphzTr9HKh9dzs3EDok3TJ8,31791
|
|
35
|
-
pdd/fix_errors_from_unit_tests.py,sha256=00vanOVvZ8KUvQMaUtAoComjZNwiyrXd3bvi8iCUCXk,9577
|
|
36
|
-
pdd/fix_main.py,sha256=VF5OfGvovHi89nZJh8wtAqrrec_HOJfdgn1YnAY7bCs,16999
|
|
37
|
-
pdd/fix_verification_errors.py,sha256=oT0edNBj4CTd1kaE0vdnWjyB6el1tECh0sIOZ8O1AmQ,11583
|
|
38
|
-
pdd/fix_verification_errors_loop.py,sha256=S7-caVbHvfH8py3dRy2Chk9R3KrOYveedhIM3VYtHQw,59315
|
|
39
|
-
pdd/fix_verification_main.py,sha256=M-RhpI4d2FQaJH46EcI3i2CZbiTD5YebDvagUWhbAC8,25519
|
|
40
|
-
pdd/generate_output_paths.py,sha256=L1-YM_OYLzUjaSDWUKv4n8jvItDorWZz_gzVzZXWx1U,29190
|
|
41
|
-
pdd/generate_test.py,sha256=Ysa04Po9EzkyH-8CS1jXcgz7xLVqIB_j3KakbLbR3SU,7543
|
|
42
|
-
pdd/get_comment.py,sha256=yuRtk68-SDkMaGzOSyIFdldRoymJBRSKjOYkr0narVc,2627
|
|
43
|
-
pdd/get_extension.py,sha256=IwpnwGLKMkVcEtQWHeGriphq2g5r8mGLftXir48vrjQ,2675
|
|
44
|
-
pdd/get_jwt_token.py,sha256=RUgu1IANrWM1CFNBho437-sGiT0z8lBe327zpK6vVWU,13340
|
|
45
|
-
pdd/get_language.py,sha256=yxyQqVEb5H3ep3Hc6XgAl3vMLTHD5OIs8ZSekB493GA,1438
|
|
46
|
-
pdd/get_run_command.py,sha256=uydf-5mi3gvho4szLiiCLHdCRTeoRYHlbCpP7kKzBN4,2271
|
|
47
|
-
pdd/get_test_command.py,sha256=2Ijf6LgJdrZ_xG6am_7uVQaz0ocFZLCFqxiP-VZmC34,2049
|
|
48
|
-
pdd/git_update.py,sha256=yoEJJfgLhVlsDx-EtKfAUv8ZqFMNJO1piXMEZ98qPxc,4994
|
|
49
|
-
pdd/increase_tests.py,sha256=68cM9d1CpaLLm2ISFpJw39xbRjsfwxwS06yAwRoUCHk,4433
|
|
50
|
-
pdd/incremental_code_generator.py,sha256=RoaJDavR0A5ybXc8Pvqe7Hwwhz9gHbP_kmGQXn3XveQ,9425
|
|
51
|
-
pdd/insert_includes.py,sha256=Ckfao5uwUJn7WLG82KOScjXZQV0_p26Pei1njgBuBNg,6061
|
|
52
|
-
pdd/install_completion.py,sha256=bLMJuMOBDvsEnDAUpgiPesNRGhY_IvBvz8ZvmbTzP4o,5472
|
|
53
|
-
pdd/llm_invoke.py,sha256=vdvVVEH12nV2-QQ9H-VUipKD8j8YR_DPx0eYn-gW8fk,133784
|
|
54
|
-
pdd/load_prompt_template.py,sha256=wVVrSEePlGTxGyNtqvHnPxAsL9tVMZf5Y5mVUSjJiEU,2942
|
|
55
|
-
pdd/logo_animation.py,sha256=n6HJWzuFze2csAAW2-zbxfjvWFYRI4hIdwVBtHBOkj4,20782
|
|
56
|
-
pdd/mcp_config.json,sha256=D3ctWHlShvltbtH37zbYb6smVE0V80_lGjDKDIqsSBE,124
|
|
57
|
-
pdd/pdd_completion.fish,sha256=pfEyBWzFp3matC_SW2BTDNaBJybYKUEi3YpPE-D6AKU,13776
|
|
58
|
-
pdd/pdd_completion.sh,sha256=xgx-g6aeCCrlh6loeLyJN5jCsX15YXrWyT1U499p3C0,6490
|
|
59
|
-
pdd/pdd_completion.zsh,sha256=V9-V8jqw3osjlXNOvjYMJf0E771-_EQe-Cboo1xzPvY,17090
|
|
60
|
-
pdd/postprocess.py,sha256=_HMv_X3kaS7hYoxIoZctr58tvf5LTGhC9doZbVXhOlw,4865
|
|
61
|
-
pdd/postprocess_0.py,sha256=OW17GyCFLYErCyWh2tL4syuho3q2yFf2wyekQ4BLdPM,2168
|
|
62
|
-
pdd/preprocess.py,sha256=HJNGwYlrWkZcQsMVK4nQDa6iyWBWbtRkmG75xNhFpas,20050
|
|
63
|
-
pdd/preprocess_main.py,sha256=aGTmkdEp6RGd1YZZkyl-T_F9q3awhCHnBvKSBltOiY0,3422
|
|
64
|
-
pdd/process_csv_change.py,sha256=ckNqVPRooWVyIvmqjdEgo2PDLnpoQ6Taa2dUaWGRlzU,27926
|
|
65
|
-
pdd/pytest_output.py,sha256=UPnGZDbUCLZGEWcA2WvYRdgPegUjY25NHgK9ppFjFBg,10638
|
|
66
|
-
pdd/python_env_detector.py,sha256=y-QESoPNiKaD821uz8okX-9qA-oqvH9cQHY2_MwFHzU,5194
|
|
67
|
-
pdd/render_mermaid.py,sha256=nvFO_Wl5MpYIiF3yMpToF8ePerHsr3c9WV745u-Y3X8,9050
|
|
68
|
-
pdd/setup_tool.py,sha256=xKut3G4iIfLBIudix-O71Q9CCtS1GeC8O4uGV_Qjscc,24135
|
|
69
|
-
pdd/simple_math.py,sha256=j3WmhkbIef0M_1wCcIwBD7HAHWfvmTDU5BkQb-t4l6o,31
|
|
70
|
-
pdd/split.py,sha256=9lWrh-JOjOpxRp4-s1VL7bqJMVWlsmY5LxONT7sYM8A,5288
|
|
71
|
-
pdd/split_main.py,sha256=52rcZoeS_wpYRiqbqMUgr_hUY7GS62otwzDfuAGi6YA,4845
|
|
72
|
-
pdd/summarize_directory.py,sha256=7R_JuJ2jHxuBs_kyM4QHxGoZDuXm3pd5L_V-mrq9wWA,11130
|
|
73
|
-
pdd/sync_animation.py,sha256=e7Qb4m70BHYpl37CuuF-95j-APctPL4Zm_o1PSTTRFQ,28070
|
|
74
|
-
pdd/sync_determine_operation.py,sha256=pdLCR3FgdClKn8-8K8Nk-9gx9HhmVaEbSAB5HwNEzOQ,77777
|
|
75
|
-
pdd/sync_main.py,sha256=Dz3GYsFma-8ho6Z266KGw0SilNy0Y6s-sZq8LRF0Euo,16758
|
|
76
|
-
pdd/sync_orchestration.py,sha256=MQz59q1mQ-57d4JzyVoEMbFHqup01KlmprP2iUDp1Eg,80965
|
|
77
|
-
pdd/sync_tui.py,sha256=gponSnFNHMO9uTRsmJnL5McCgLbeGeAa34d379STthI,29300
|
|
78
|
-
pdd/template_registry.py,sha256=L8ZQ-apmdDe7Jj_JlgHv7fUoIiJnGDuE0V64Y-MO9vA,8099
|
|
79
|
-
pdd/trace.py,sha256=ArdyOuMqm1dZDEDCLF6UsTOyKeAwoPLpPwaE5HHIgIE,12232
|
|
80
|
-
pdd/trace_main.py,sha256=SOnMEHta9WaMAxulMrk6aFojma4ti61ILvJp3NVhpbg,4992
|
|
81
|
-
pdd/track_cost.py,sha256=dNIoDgQfdSURC9N6qOYVrDx289QQtqTofJ7oVFFyJEY,8376
|
|
82
|
-
pdd/unfinished_prompt.py,sha256=SpWlbUnU7vcHSP0DZK4ymyyXXoLdYmCdDmKy3qkSv_M,6301
|
|
83
|
-
pdd/update_main.py,sha256=tYhrn9UbYNF-xN35Pb8vPIDtPqnML3wVuUlR_zh8s9c,24853
|
|
84
|
-
pdd/update_model_costs.py,sha256=RfeOlAHtc1FCx47A7CjrH2t5WXQclQ_9uYtNjtQh75I,22998
|
|
85
|
-
pdd/update_prompt.py,sha256=K1i9BIpb3ioFGM32WcqueAuKqzLlezsPsvcovOagOhI,5239
|
|
86
|
-
pdd/xml_tagger.py,sha256=5Bc3HRm7iz_XjBdzQIcMb8KocUQ8PELI2NN5Gw4amd4,4825
|
|
87
|
-
pdd/commands/__init__.py,sha256=SldpLbbDwB0ZQZ4gPVzWQs9HIlgSbk-sEqmC17tXkrs,1437
|
|
88
|
-
pdd/commands/analysis.py,sha256=X7U3TfN3kw6R5Ch2O93N6vsdrF0bdflVYJVBpV_JRXE,7696
|
|
89
|
-
pdd/commands/fix.py,sha256=CTEPGRA8pct7o-c-fAyPppuAcFt82MEQwLGYD4HzN_k,4325
|
|
90
|
-
pdd/commands/generate.py,sha256=RkKvIFqpYmZeJzCgAMGF6abK7CR85g-m_SIXO5lgOyQ,8686
|
|
91
|
-
pdd/commands/maintenance.py,sha256=2sHor0sIdMAseHTewho1L-EtzISYFJqZhKzWeLLVX-w,4999
|
|
92
|
-
pdd/commands/misc.py,sha256=MKYYC1W0ft0_WaLEa8FWXN9PsWpxDx4byhJIB72EPjI,2340
|
|
93
|
-
pdd/commands/modify.py,sha256=zWzAU9pCTKCXSgGd2YNCEjlP6qBUJ0-T3axaBfcIj0M,8584
|
|
94
|
-
pdd/commands/report.py,sha256=E9CCbbux_MP5oGu18M_XQBVaQhYCMsQOUn9KQPEBiSU,5868
|
|
95
|
-
pdd/commands/templates.py,sha256=pJicUZww2U5nOcQw_tuQK3OQwYK3NRRc81SZ5YLkt_E,8957
|
|
96
|
-
pdd/commands/utility.py,sha256=tz9vmYZAvMVRIGUKd2B5808ggOO9i-4Kk3QykRU8j08,3677
|
|
97
|
-
pdd/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
|
-
pdd/core/cli.py,sha256=VCR7hLa2OMNJvmciwdW5Pe9xSQvaEHZu_z3R2pGnrs0,20378
|
|
99
|
-
pdd/core/dump.py,sha256=AEwRIaVuWn5Aegov9PNSQ9BQfjrVBl1npohce29XKsY,20419
|
|
100
|
-
pdd/core/errors.py,sha256=gejKqRnMXhacC5l7AkH9z14K28ztv2hDB2wLKllX1zM,2481
|
|
101
|
-
pdd/core/utils.py,sha256=e2y-S6OcDbjJw1vdGWwNTDlICPyYy9H-5yfj5nPaAw8,2524
|
|
102
|
-
pdd/data/language_format.csv,sha256=X_vifnKBod8aeyzht94pdDpZWChkxT3Hu1G2cA_tTy8,1844
|
|
103
|
-
pdd/data/llm_model.csv,sha256=20hw5joPpAOKkqrsdB1kz6L-oa7vRRuLnNLarVy3BvU,1802
|
|
104
|
-
pdd/prompts/agentic_crash_explore_LLM.prompt,sha256=nlNO-LSHIbECO82j25CR8xe8IKKMFeidOkpRvW8Vn8w,1993
|
|
105
|
-
pdd/prompts/agentic_fix_explore_LLM.prompt,sha256=2K43Bg4JTCFwXuhqFZqR9hRkfPegtjAWsLON414uLUM,1901
|
|
106
|
-
pdd/prompts/agentic_fix_harvest_only_LLM.prompt,sha256=9dCB-Kqy221s47XRpCwIO_EzVHwWKSBYyFgwVfQb4ZQ,2316
|
|
107
|
-
pdd/prompts/agentic_fix_primary_LLM.prompt,sha256=d9d31stKCkJzPwWvyYpziPEzQo5du5gO2n-xo3RFz5Q,3311
|
|
108
|
-
pdd/prompts/agentic_update_LLM.prompt,sha256=2XoPSuExlytvnkwzgYXLwQ_SyoxEGwUZOPHb-yZujx8,2349
|
|
109
|
-
pdd/prompts/agentic_verify_explore_LLM.prompt,sha256=wC9TqpsAP0rNnyz_CczPFmmT4P_iGgEsqg_fUqyNEFw,1953
|
|
110
|
-
pdd/prompts/auto_include_LLM.prompt,sha256=LJpF4Me6iJ--PmGDN6uvgILHXaxG3Ox81IGaVSs5MYY,15008
|
|
111
|
-
pdd/prompts/bug_to_unit_test_LLM.prompt,sha256=KdMkvRVnjVSf0NTYIaDXIMT93xPttXEwkMpjWx5leLs,1588
|
|
112
|
-
pdd/prompts/change_LLM.prompt,sha256=5rgWIL16p3VRURd2_lNtcbu_MVRqPhI8gFIBt1gkzDQ,2164
|
|
113
|
-
pdd/prompts/code_patcher_LLM.prompt,sha256=yeV4lsRuPQzNdKRV_LQUOmmWh2yhu8YgKXUWo4bge4I,2392
|
|
114
|
-
pdd/prompts/conflict_LLM.prompt,sha256=46DB_qOCtsfVsj6y8E8grI0izxAk_-ixoENUUHQAkHc,1593
|
|
115
|
-
pdd/prompts/continue_generation_LLM.prompt,sha256=Jsd3eeu23heqw2frfOLzZ5c9dn0QZrfWGratfyWV-ac,111
|
|
116
|
-
pdd/prompts/detect_change_LLM.prompt,sha256=-q8VqXAv6ufEE193DNbTcgpbxiKISR5-5j3M0TTqa8s,4522
|
|
117
|
-
pdd/prompts/diff_analyzer_LLM.prompt,sha256=2lZI4g4DO9NwMPnxVJW717dGG5LQuBXqgeIjYfplEdU,2901
|
|
118
|
-
pdd/prompts/example_generator_LLM.prompt,sha256=aF1ZDTKcvYaAYQFZFy7OVh6w45cgw5Oo17WTQf37hXE,2466
|
|
119
|
-
pdd/prompts/extract_auto_include_LLM.prompt,sha256=BamIIt8qrML2ZtNe3D4K30iMobJ4URtkyomHCDaf0iw,313
|
|
120
|
-
pdd/prompts/extract_code_LLM.prompt,sha256=7Tb5lGETfgGDgb0hFNn5-10K3Mlx2FKVg0lIqJe1RDI,2960
|
|
121
|
-
pdd/prompts/extract_conflict_LLM.prompt,sha256=V_xXdU7V4IZK9SVFxJtXKRn_wFkP3zp4FJrxeNM9XYc,1023
|
|
122
|
-
pdd/prompts/extract_detect_change_LLM.prompt,sha256=2HXSb9bGjHZsKrUGvfBdBAAcGBCrQ2AxC8vUJRAfB1U,1003
|
|
123
|
-
pdd/prompts/extract_program_code_fix_LLM.prompt,sha256=z8RsuRfPVaxMrAeKzzEQgBt07DysIR2DDaxmgfFT8sk,1953
|
|
124
|
-
pdd/prompts/extract_prompt_change_LLM.prompt,sha256=1e3AxcVpZ85t7pVvXqCpBUJzGI995MIimXicClagSvw,366
|
|
125
|
-
pdd/prompts/extract_prompt_split_LLM.prompt,sha256=rhStDroVxDYRcCjYq7XCCub8B-KmfCFj5_7PxhgMmz0,1097
|
|
126
|
-
pdd/prompts/extract_prompt_update_LLM.prompt,sha256=htttAp-QC6YycnfhFVsLhTM0uvhyEz9TEoGdFyZS8Yw,910
|
|
127
|
-
pdd/prompts/extract_promptline_LLM.prompt,sha256=mPeTjVaYJtgz2ygO0TVeO3vgmoBvWOWFSrwd1wKXJ74,831
|
|
128
|
-
pdd/prompts/extract_unit_code_fix_LLM.prompt,sha256=c4l6twMLC2YqDDvOj_DcaKmJQF8kIupeqvkueK_OQng,14301
|
|
129
|
-
pdd/prompts/extract_xml_LLM.prompt,sha256=eRcHaL-khShpb7C1_b7wmBJHfo2Kh1Wvjo_aOcWZovU,561
|
|
130
|
-
pdd/prompts/find_verification_errors_LLM.prompt,sha256=TAvwpsj8RYv6pmmxJK330rGxCS1TPmhztGxyPUtxT5I,3419
|
|
131
|
-
pdd/prompts/fix_code_module_errors_LLM.prompt,sha256=wjZLoGf6XqJ9raBgWNsusratC1pifVDjVD8XCk09plc,3371
|
|
132
|
-
pdd/prompts/fix_errors_from_unit_tests_LLM.prompt,sha256=gtUwQsXUHY9PNFsxAndsBq4K0piPFv-JL6EfKol8ryc,5513
|
|
133
|
-
pdd/prompts/fix_verification_errors_LLM.prompt,sha256=AO1yhxNfM7s-93ZjufGrJUcRvSl04CmZl_WEbnTUFbY,4997
|
|
134
|
-
pdd/prompts/generate_test_LLM.prompt,sha256=sRluAehyUNfdCDtiSY72zp6ixMynNV41WwMrpbS71k4,3550
|
|
135
|
-
pdd/prompts/increase_tests_LLM.prompt,sha256=XvzvwTyAaxbJIWwUk0iby2CoTfRCVRWbjT3D3G29OYQ,914
|
|
136
|
-
pdd/prompts/insert_includes_LLM.prompt,sha256=g-p2gXKENsqvfK5Q9FYbqFsIJ5CP7rbxmd4rROA-W80,1453
|
|
137
|
-
pdd/prompts/split_LLM.prompt,sha256=cMVyazsue6eerOPYeueqpSNRiITy1ht0HgGytPFiQIk,6244
|
|
138
|
-
pdd/prompts/summarize_file_LLM.prompt,sha256=qb9K61XMVFy7hgGITglI37Xg7yLPAGQBm0rUBEqRnEc,387
|
|
139
|
-
pdd/prompts/sync_analysis_LLM.prompt,sha256=tU_0MlvmS5OT2zMCaldkaL-kX2x6pzZSa3uuKHLwUg0,3925
|
|
140
|
-
pdd/prompts/trace_LLM.prompt,sha256=0fHSXQbUAqQ7ABRcyYxesA1SVPbDQWCDwcW4VLPuTBA,1233
|
|
141
|
-
pdd/prompts/trim_results_LLM.prompt,sha256=w4aL0S7v7fPSi3L9XeQR3mUOgNv3hpTDqi4rOtu7L7I,4033
|
|
142
|
-
pdd/prompts/trim_results_start_LLM.prompt,sha256=OKz8fAf1cYWKWgslFOHEkUpfaUDARh3DD9L7ud9FOVE,2177
|
|
143
|
-
pdd/prompts/unfinished_prompt_LLM.prompt,sha256=vud_G9PlVv9Ig64uBC-hPEVFRk5lwpc8pW6tOIxJM4I,5082
|
|
144
|
-
pdd/prompts/update_prompt_LLM.prompt,sha256=LKLwcTh-fqUMTl2Jn5kmmFqf1y90g7e9uvZLrF77_-M,3332
|
|
145
|
-
pdd/prompts/xml_convertor_LLM.prompt,sha256=YGRGXJeg6EhM9690f-SKqQrKqSJjLFD51UrPOlO0Frg,2786
|
|
146
|
-
pdd/templates/architecture/architecture_json.prompt,sha256=X2Z7qR5uDVEcoRQEsA5RtIXUrJW6cIXmw7EgBnh809A,11202
|
|
147
|
-
pdd/templates/generic/generate_prompt.prompt,sha256=0qLK-L4kHmd3TKTQT0o9NOwc8DbdFpijTO9dJqPfwOU,10708
|
|
148
|
-
pdd_cli-0.0.90.dist-info/licenses/LICENSE,sha256=kvTJnnxPVTYlGKSY4ZN1kzdmJ0lxRdNWxgupaB27zsU,1066
|
|
149
|
-
pdd_cli-0.0.90.dist-info/METADATA,sha256=Phguoj9e0XccNgdk1f83Pb6Qg-ihHg0DfyEH3CFfnlI,12868
|
|
150
|
-
pdd_cli-0.0.90.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
151
|
-
pdd_cli-0.0.90.dist-info/entry_points.txt,sha256=Kr8HtNVb8uHZtQJNH4DnF8j7WNgWQbb7_Pw5hECSR-I,36
|
|
152
|
-
pdd_cli-0.0.90.dist-info/top_level.txt,sha256=xjnhIACeMcMeDfVNREgQZl4EbTni2T11QkL5r7E-sbE,4
|
|
153
|
-
pdd_cli-0.0.90.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|