pdd-cli 0.0.40__py3-none-any.whl → 0.0.42__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 +1 -1
- pdd/auto_deps_main.py +1 -1
- pdd/auto_update.py +73 -78
- pdd/bug_main.py +3 -3
- pdd/bug_to_unit_test.py +46 -38
- pdd/change.py +20 -13
- pdd/change_main.py +223 -163
- pdd/cli.py +192 -95
- pdd/cmd_test_main.py +51 -36
- pdd/code_generator_main.py +3 -2
- pdd/conflicts_main.py +1 -1
- pdd/construct_paths.py +221 -19
- pdd/context_generator_main.py +27 -12
- pdd/crash_main.py +44 -50
- pdd/data/llm_model.csv +1 -1
- pdd/detect_change_main.py +1 -1
- pdd/fix_code_module_errors.py +12 -0
- pdd/fix_main.py +2 -2
- pdd/fix_verification_errors.py +13 -0
- pdd/fix_verification_main.py +3 -3
- pdd/generate_output_paths.py +113 -21
- pdd/generate_test.py +53 -16
- pdd/llm_invoke.py +162 -0
- pdd/logo_animation.py +455 -0
- pdd/preprocess_main.py +1 -1
- pdd/process_csv_change.py +1 -1
- pdd/prompts/extract_program_code_fix_LLM.prompt +2 -1
- pdd/prompts/sync_analysis_LLM.prompt +82 -0
- pdd/split_main.py +1 -1
- pdd/sync_animation.py +643 -0
- pdd/sync_determine_operation.py +1039 -0
- pdd/sync_main.py +333 -0
- pdd/sync_orchestration.py +639 -0
- pdd/trace_main.py +1 -1
- pdd/update_main.py +7 -2
- pdd/xml_tagger.py +15 -6
- pdd_cli-0.0.42.dist-info/METADATA +307 -0
- {pdd_cli-0.0.40.dist-info → pdd_cli-0.0.42.dist-info}/RECORD +42 -36
- pdd_cli-0.0.40.dist-info/METADATA +0 -269
- {pdd_cli-0.0.40.dist-info → pdd_cli-0.0.42.dist-info}/WHEEL +0 -0
- {pdd_cli-0.0.40.dist-info → pdd_cli-0.0.42.dist-info}/entry_points.txt +0 -0
- {pdd_cli-0.0.40.dist-info → pdd_cli-0.0.42.dist-info}/licenses/LICENSE +0 -0
- {pdd_cli-0.0.40.dist-info → pdd_cli-0.0.42.dist-info}/top_level.txt +0 -0
pdd/xml_tagger.py
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
"""XML tagging module for improving prompt structure with XML tags.
|
|
2
|
+
|
|
3
|
+
This module provides functionality to enhance LLM prompts by adding XML tags,
|
|
4
|
+
making them more structured and readable for better processing.
|
|
5
|
+
"""
|
|
6
|
+
|
|
1
7
|
from typing import Tuple
|
|
2
8
|
from rich import print as rprint
|
|
3
9
|
from rich.markdown import Markdown
|
|
@@ -6,7 +12,9 @@ from .load_prompt_template import load_prompt_template
|
|
|
6
12
|
from .llm_invoke import llm_invoke
|
|
7
13
|
from . import EXTRACTION_STRENGTH
|
|
8
14
|
from . import DEFAULT_TIME
|
|
15
|
+
|
|
9
16
|
class XMLOutput(BaseModel):
|
|
17
|
+
"""Pydantic model for XML-tagged prompt output."""
|
|
10
18
|
xml_tagged: str = Field(description="The XML-tagged version of the prompt")
|
|
11
19
|
|
|
12
20
|
def xml_tagger(
|
|
@@ -96,8 +104,8 @@ def xml_tagger(
|
|
|
96
104
|
# Step 5 & 6: Return results
|
|
97
105
|
return result.xml_tagged, total_cost, model_name
|
|
98
106
|
|
|
99
|
-
except Exception as
|
|
100
|
-
rprint(f"[red]Error in xml_tagger: {str(
|
|
107
|
+
except Exception as error:
|
|
108
|
+
rprint(f"[red]Error in xml_tagger: {str(error)}[/red]")
|
|
101
109
|
raise
|
|
102
110
|
|
|
103
111
|
def main():
|
|
@@ -109,7 +117,7 @@ def main():
|
|
|
109
117
|
Include examples of usage and error cases.
|
|
110
118
|
"""
|
|
111
119
|
|
|
112
|
-
|
|
120
|
+
tagged_result, cost, model = xml_tagger(
|
|
113
121
|
raw_prompt=sample_prompt,
|
|
114
122
|
strength=0.7,
|
|
115
123
|
temperature=0.8,
|
|
@@ -120,9 +128,10 @@ def main():
|
|
|
120
128
|
rprint("[blue]XML Tagging Complete[/blue]")
|
|
121
129
|
rprint(f"Total Cost: ${cost:.6f}")
|
|
122
130
|
rprint(f"Model Used: {model}")
|
|
131
|
+
rprint(f"Result length: {len(tagged_result)}")
|
|
123
132
|
|
|
124
|
-
except Exception as
|
|
125
|
-
rprint(f"[red]Error in main: {str(
|
|
133
|
+
except Exception as error:
|
|
134
|
+
rprint(f"[red]Error in main: {str(error)}[/red]")
|
|
126
135
|
|
|
127
136
|
if __name__ == "__main__":
|
|
128
|
-
main()
|
|
137
|
+
main()
|
|
@@ -0,0 +1,307 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pdd-cli
|
|
3
|
+
Version: 0.0.42
|
|
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.44
|
|
23
|
+
Requires-Dist: Requests==2.32.3
|
|
24
|
+
Requires-Dist: aiofiles==24.1.0
|
|
25
|
+
Requires-Dist: click==8.1.7
|
|
26
|
+
Requires-Dist: firecrawl-py
|
|
27
|
+
Requires-Dist: firebase_admin==6.6.0
|
|
28
|
+
Requires-Dist: keyring==25.6.0
|
|
29
|
+
Requires-Dist: langchain_core==0.3.56
|
|
30
|
+
Requires-Dist: nest_asyncio==1.6.0
|
|
31
|
+
Requires-Dist: pandas==2.2.3
|
|
32
|
+
Requires-Dist: psutil==5.9.0
|
|
33
|
+
Requires-Dist: pydantic==2.11.2
|
|
34
|
+
Requires-Dist: litellm
|
|
35
|
+
Requires-Dist: rich==14.0.0
|
|
36
|
+
Requires-Dist: semver==3.0.2
|
|
37
|
+
Requires-Dist: setuptools
|
|
38
|
+
Requires-Dist: pytest
|
|
39
|
+
Requires-Dist: boto3==1.35.99
|
|
40
|
+
Requires-Dist: python-Levenshtein
|
|
41
|
+
Provides-Extra: dev
|
|
42
|
+
Requires-Dist: commitizen; extra == "dev"
|
|
43
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
|
44
|
+
Requires-Dist: pytest-mock; extra == "dev"
|
|
45
|
+
Requires-Dist: pytest-asyncio; extra == "dev"
|
|
46
|
+
Requires-Dist: z3-solver; extra == "dev"
|
|
47
|
+
Dynamic: license-file
|
|
48
|
+
|
|
49
|
+
.. image:: https://img.shields.io/badge/pdd--cli-v0.0.42-blue
|
|
50
|
+
:alt: PDD-CLI Version
|
|
51
|
+
|
|
52
|
+
.. image:: https://img.shields.io/badge/Discord-join%20chat-7289DA.svg?logo=discord&logoColor=white&link=https://discord.gg/Yp4RTh8bG7
|
|
53
|
+
:alt: Join us on Discord
|
|
54
|
+
:target: https://discord.gg/Yp4RTh8bG7
|
|
55
|
+
|
|
56
|
+
PDD (Prompt-Driven Development) Command Line Interface
|
|
57
|
+
======================================================
|
|
58
|
+
|
|
59
|
+
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.
|
|
60
|
+
|
|
61
|
+
PDD (Prompt-Driven Development) is a command-line interface that harnesses AI models to generate and maintain code from prompt files. Whether you want to create new features, fix bugs, enhance unit tests, or manage complex prompt structures, pdd-cli streamlines your workflow through an intuitive interface and powerful automation.
|
|
62
|
+
|
|
63
|
+
.. image:: https://img.youtube.com/vi/5lBxpTSnjqo/0.jpg
|
|
64
|
+
:alt: Watch a video demonstration of PDD
|
|
65
|
+
:target: https://www.youtube.com/watch?v=5lBxpTSnjqo
|
|
66
|
+
|
|
67
|
+
Why Choose Prompt-Driven Development?
|
|
68
|
+
-------------------------------------
|
|
69
|
+
|
|
70
|
+
* **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.
|
|
71
|
+
* **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.
|
|
72
|
+
* **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.
|
|
73
|
+
* **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.
|
|
74
|
+
* **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.
|
|
75
|
+
* **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.
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
Key Features
|
|
79
|
+
------------
|
|
80
|
+
|
|
81
|
+
* **Automated `sync` Command**: A single command to automate the entire development cycle: from code generation and dependency management to testing and verification.
|
|
82
|
+
* **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.
|
|
83
|
+
* **Comprehensive Command Suite**: A full set of tools to ``generate``, ``test``, ``fix``, ``update``, and ``split`` your code and prompts.
|
|
84
|
+
* **Intelligent Testing**: Generate new unit tests, or improve existing ones by analyzing coverage reports to hit your desired targets.
|
|
85
|
+
* **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.
|
|
86
|
+
* **Cost Tracking & Configuration**: Fine-tune AI model behavior with ``--strength`` and ``--temperature`` and track usage with optional cost reporting.
|
|
87
|
+
* **Cross-Language Support**: Work with Python, JavaScript, Java, C++, Go, and more, with automatic language detection from prompt filenames.
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
Quick Installation
|
|
91
|
+
------------------
|
|
92
|
+
|
|
93
|
+
**Recommended: Using uv (Faster & Better Dependency Management)**
|
|
94
|
+
|
|
95
|
+
We recommend installing PDD using the `uv <https://github.com/astral-sh/uv>`_ package manager for better dependency management and automatic environment configuration:
|
|
96
|
+
|
|
97
|
+
.. code-block:: console
|
|
98
|
+
|
|
99
|
+
# Install uv if you haven't already
|
|
100
|
+
curl -sSf https://astral.sh/uv/install.sh | sh
|
|
101
|
+
|
|
102
|
+
# Install PDD using uv tool install
|
|
103
|
+
uv tool install pdd-cli
|
|
104
|
+
|
|
105
|
+
This installation method ensures:
|
|
106
|
+
|
|
107
|
+
- Faster installations with optimized dependency resolution
|
|
108
|
+
- Automatic environment setup without manual configuration
|
|
109
|
+
- Proper handling of the PDD_PATH environment variable
|
|
110
|
+
- Better isolation from other Python packages
|
|
111
|
+
|
|
112
|
+
**Alternative: Using pip**
|
|
113
|
+
|
|
114
|
+
If you prefer, you can install with pip:
|
|
115
|
+
|
|
116
|
+
.. code-block:: console
|
|
117
|
+
|
|
118
|
+
pip install pdd-cli
|
|
119
|
+
|
|
120
|
+
After installation, verify:
|
|
121
|
+
|
|
122
|
+
.. code-block:: console
|
|
123
|
+
|
|
124
|
+
pdd --version
|
|
125
|
+
|
|
126
|
+
You'll see the current PDD version (e.g., 0.0.42).
|
|
127
|
+
|
|
128
|
+
Getting Started with Examples
|
|
129
|
+
-----------------------------
|
|
130
|
+
|
|
131
|
+
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.
|
|
132
|
+
|
|
133
|
+
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:
|
|
134
|
+
|
|
135
|
+
.. code-block:: console
|
|
136
|
+
|
|
137
|
+
# Navigate to the example directory
|
|
138
|
+
cd examples/handpaint/pdd/
|
|
139
|
+
|
|
140
|
+
# Run the sync command
|
|
141
|
+
pdd sync handpaint
|
|
142
|
+
|
|
143
|
+
This will generate the full application based on the ``handpaint_html.prompt`` file.
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
Advanced Installation Tips
|
|
147
|
+
--------------------------
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
**Virtual Environment**
|
|
151
|
+
|
|
152
|
+
Create and activate a virtual environment, then install pdd-cli:
|
|
153
|
+
|
|
154
|
+
.. code-block:: console
|
|
155
|
+
|
|
156
|
+
python -m venv pdd-env
|
|
157
|
+
|
|
158
|
+
# Activate environment
|
|
159
|
+
# On Windows:
|
|
160
|
+
pdd-env\Scripts\activate
|
|
161
|
+
# On Unix/MacOS:
|
|
162
|
+
source pdd-env/bin/activate
|
|
163
|
+
|
|
164
|
+
# Install PDD (with uv - recommended)
|
|
165
|
+
uv tool install pdd-cli
|
|
166
|
+
# OR with pip
|
|
167
|
+
pip install pdd-cli
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
**Environment Variables**
|
|
171
|
+
|
|
172
|
+
Optionally, add environment variables to your shell startup (e.g., ``.bashrc``, ``.zshrc``):
|
|
173
|
+
|
|
174
|
+
.. code-block:: console
|
|
175
|
+
|
|
176
|
+
export PDD_AUTO_UPDATE=true
|
|
177
|
+
export PDD_GENERATE_OUTPUT_PATH=/path/to/generated/code/
|
|
178
|
+
export PDD_TEST_OUTPUT_PATH=/path/to/tests/
|
|
179
|
+
|
|
180
|
+
Tab Completion
|
|
181
|
+
~~~~~~~~~~~~~~
|
|
182
|
+
Enable shell completion:
|
|
183
|
+
|
|
184
|
+
.. code-block:: console
|
|
185
|
+
|
|
186
|
+
pdd install_completion
|
|
187
|
+
|
|
188
|
+
Cloud vs Local
|
|
189
|
+
--------------
|
|
190
|
+
|
|
191
|
+
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:
|
|
192
|
+
|
|
193
|
+
.. code-block:: console
|
|
194
|
+
|
|
195
|
+
pdd --local generate my_prompt_python.prompt
|
|
196
|
+
|
|
197
|
+
Be sure to configure API keys in your environment ahead of time:
|
|
198
|
+
|
|
199
|
+
.. code-block:: console
|
|
200
|
+
|
|
201
|
+
export OPENAI_API_KEY=your_api_key_here
|
|
202
|
+
export ANTHROPIC_API_KEY=your_api_key_here
|
|
203
|
+
# etc.
|
|
204
|
+
|
|
205
|
+
Basic Usage
|
|
206
|
+
-----------
|
|
207
|
+
|
|
208
|
+
All commands follow a standard pattern:
|
|
209
|
+
|
|
210
|
+
.. code-block:: console
|
|
211
|
+
|
|
212
|
+
pdd [GLOBAL OPTIONS] COMMAND [COMMAND OPTIONS] [ARGS]...
|
|
213
|
+
|
|
214
|
+
**Example – Sync**
|
|
215
|
+
|
|
216
|
+
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.
|
|
217
|
+
|
|
218
|
+
.. code-block:: console
|
|
219
|
+
|
|
220
|
+
pdd sync factorial_calculator
|
|
221
|
+
|
|
222
|
+
**Example – Generate Code**
|
|
223
|
+
|
|
224
|
+
Generate Python code from a prompt:
|
|
225
|
+
|
|
226
|
+
.. code-block:: console
|
|
227
|
+
|
|
228
|
+
pdd generate factorial_calculator_python.prompt
|
|
229
|
+
|
|
230
|
+
In cloud mode (no local keys required). Or locally if you prefer:
|
|
231
|
+
|
|
232
|
+
.. code-block:: console
|
|
233
|
+
|
|
234
|
+
pdd --local generate factorial_calculator_python.prompt
|
|
235
|
+
|
|
236
|
+
**Example – Test**
|
|
237
|
+
|
|
238
|
+
Automatically create or enhance tests:
|
|
239
|
+
|
|
240
|
+
.. code-block:: console
|
|
241
|
+
|
|
242
|
+
pdd test factorial_calculator_python.prompt src/factorial_calculator.py
|
|
243
|
+
|
|
244
|
+
Use coverage analysis:
|
|
245
|
+
|
|
246
|
+
.. code-block:: console
|
|
247
|
+
|
|
248
|
+
pdd test --coverage-report coverage.xml --existing-tests tests/test_factorial.py \
|
|
249
|
+
factorial_prompt.prompt src/factorial.py
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
**Example – Fix Iteratively**
|
|
253
|
+
|
|
254
|
+
Attempt to fix failing code or tests in multiple loops:
|
|
255
|
+
|
|
256
|
+
.. code-block:: console
|
|
257
|
+
|
|
258
|
+
pdd fix --loop \
|
|
259
|
+
factorial_calculator_python.prompt src/factorial_calculator.py tests/test_factorial.py errors.log
|
|
260
|
+
|
|
261
|
+
PDD will keep trying (with a budget limit configurable by ``--budget``) until tests pass or attempts are exhausted.
|
|
262
|
+
|
|
263
|
+
Frequently Asked Questions (FAQ)
|
|
264
|
+
--------------------------------
|
|
265
|
+
|
|
266
|
+
**What's the main difference between PDD and using an AI chat assistant (agentic coder)?**
|
|
267
|
+
|
|
268
|
+
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.
|
|
269
|
+
|
|
270
|
+
**What is "Cloud vs. Local" execution?**
|
|
271
|
+
|
|
272
|
+
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:
|
|
273
|
+
|
|
274
|
+
.. code-block:: console
|
|
275
|
+
|
|
276
|
+
pdd --local generate my_prompt_python.prompt
|
|
277
|
+
|
|
278
|
+
Be sure to configure API keys in your environment ahead of time:
|
|
279
|
+
|
|
280
|
+
.. code-block:: console
|
|
281
|
+
|
|
282
|
+
export OPENAI_API_KEY=your_api_key_here
|
|
283
|
+
export ANTHROPIC_API_KEY=your_api_key_here
|
|
284
|
+
# etc.
|
|
285
|
+
|
|
286
|
+
**Can I use PDD on an existing project?**
|
|
287
|
+
|
|
288
|
+
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.
|
|
289
|
+
|
|
290
|
+
**Do I need to be an expert prompt engineer?**
|
|
291
|
+
|
|
292
|
+
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.
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
Getting Help
|
|
296
|
+
------------
|
|
297
|
+
|
|
298
|
+
Use inline help to discover commands and options:
|
|
299
|
+
|
|
300
|
+
.. code-block:: console
|
|
301
|
+
|
|
302
|
+
pdd --help
|
|
303
|
+
pdd generate --help
|
|
304
|
+
pdd fix --help
|
|
305
|
+
...
|
|
306
|
+
|
|
307
|
+
Happy Prompt-Driven Coding!
|
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
pdd/__init__.py,sha256=
|
|
2
|
-
pdd/auto_deps_main.py,sha256=
|
|
1
|
+
pdd/__init__.py,sha256=ZEdz2HiLaaX6QPaGMPpX9tQKcbN-u7rfz_QoIt6fiMo,634
|
|
2
|
+
pdd/auto_deps_main.py,sha256=iV2khcgSejiXjh5hiQqeu_BJQOLfTKXhMx14j6vRlf8,3916
|
|
3
3
|
pdd/auto_include.py,sha256=OJcdcwTwJNqHPHKG9P4m9Ij-PiLex0EbuwJP0uiQi_Y,7484
|
|
4
|
-
pdd/auto_update.py,sha256=
|
|
5
|
-
pdd/bug_main.py,sha256
|
|
6
|
-
pdd/bug_to_unit_test.py,sha256=
|
|
7
|
-
pdd/change.py,sha256=
|
|
8
|
-
pdd/change_main.py,sha256=
|
|
9
|
-
pdd/cli.py,sha256=
|
|
10
|
-
pdd/cmd_test_main.py,sha256=
|
|
4
|
+
pdd/auto_update.py,sha256=w6jzTnMiYRNpwQHQxWNiIAwQ0d6xh1iOB3xgDsabWtc,5236
|
|
5
|
+
pdd/bug_main.py,sha256=INFWwD3TU00cBmTqFcScAoK25LsZE1zkinmnSM7ElS0,4787
|
|
6
|
+
pdd/bug_to_unit_test.py,sha256=3qNz96bS1JyjKZzxUs1oIfzuLsPc8S29WmOfIKQaQ8Y,6599
|
|
7
|
+
pdd/change.py,sha256=Hg_x0pa370-e6oDiczaTgFAy3Am9ReCPkqFrvqv4U38,6114
|
|
8
|
+
pdd/change_main.py,sha256=oTQz9DUy6pIqq5CJzHIk01NrC88Xrm4FNEu0e-1Hx5Y,27748
|
|
9
|
+
pdd/cli.py,sha256=dAXsN0NSi8JHpDlh6JgFL6mLEOIXwJ2sJcNnmSBc2-U,41791
|
|
10
|
+
pdd/cmd_test_main.py,sha256=22E-GPfsYL8qx-qH9a1fBvz-M1jfeaEjfgwVAyKd3sg,6638
|
|
11
11
|
pdd/code_generator.py,sha256=KwbLgMfEER-qebGJdk5i25Qj3XdnHkVttjBlEeDasHs,4651
|
|
12
|
-
pdd/code_generator_main.py,sha256=
|
|
12
|
+
pdd/code_generator_main.py,sha256=7MlZPmET3xycXL3VMLW8mLI8sW3pwRDGNyFynHt8TfM,25402
|
|
13
13
|
pdd/comment_line.py,sha256=sX2hf4bG1fILi_rvI9MkkwCZ2IitgKkW7nOiw8aQKPY,1845
|
|
14
14
|
pdd/conflicts_in_prompts.py,sha256=9N3rZWdJUGayOTOgnHW9G_Jm1C9G4Y8hSLhnURc1BkY,4890
|
|
15
|
-
pdd/conflicts_main.py,sha256=
|
|
16
|
-
pdd/construct_paths.py,sha256=
|
|
15
|
+
pdd/conflicts_main.py,sha256=U23aJqJ6pgLDDCz-AaejWnG-qsTGAhZ9024KsHR9pYU,3650
|
|
16
|
+
pdd/construct_paths.py,sha256=E8qeJjeenCStnLKVyMJvSOkN2qyiyhOmkJWxO356-Uk,29785
|
|
17
17
|
pdd/context_generator.py,sha256=e5ey0i7wWnxAUiwiw1gkB1_t9OFjKU2lxYKpb_eVSio,6036
|
|
18
|
-
pdd/context_generator_main.py,sha256=
|
|
18
|
+
pdd/context_generator_main.py,sha256=nJjc5L_pWTkDQzGhkHbm_C74TpgLeWGukdrb1rA5kEA,3857
|
|
19
19
|
pdd/continue_generation.py,sha256=6W2LQuQHWHSByv6zMMAVlGOCC1zEF_BAXwLPugMaC7M,5637
|
|
20
|
-
pdd/crash_main.py,sha256=
|
|
20
|
+
pdd/crash_main.py,sha256=BmTbFSrEAICS-Ji7sTFI9SHpTTUZot16918wiypNnhc,7611
|
|
21
21
|
pdd/detect_change.py,sha256=mA6k62xqeU1UG__CjzveJK0JDiRAO7AAC-JUfS0i2HQ,5510
|
|
22
|
-
pdd/detect_change_main.py,sha256=
|
|
22
|
+
pdd/detect_change_main.py,sha256=OWbpv3wFYW85QwCoD9ecMBQtuk3UcZOqIAFkvHip2KQ,3778
|
|
23
23
|
pdd/edit_file.py,sha256=-FhZ-KGKYkPbnt0zFiDnnosPLh3bbKmften0Ios4-90,35017
|
|
24
24
|
pdd/find_section.py,sha256=lz_FPY4KDCRAGlL1pWVZiutUNv7E4KsDFK-ymDWA_Ec,962
|
|
25
25
|
pdd/fix_code_loop.py,sha256=FxQvFTmBGitNSJg-nIFjx2bWKqjtELSlu9GxkqHGo8g,24448
|
|
26
|
-
pdd/fix_code_module_errors.py,sha256=
|
|
26
|
+
pdd/fix_code_module_errors.py,sha256=jKH88KunVhof1MYRI_F42_YnLt5k4lif4YztQgzB9g8,5446
|
|
27
27
|
pdd/fix_error_loop.py,sha256=urBH9CXxAZqC227jXBGcdZvXZX6SyL_u1B69pg419UE,24219
|
|
28
28
|
pdd/fix_errors_from_unit_tests.py,sha256=fIqEfVIEx8PPSAzWu5nhin_remKu4c0_o51AN3g_x6s,9398
|
|
29
|
-
pdd/fix_main.py,sha256=
|
|
30
|
-
pdd/fix_verification_errors.py,sha256=
|
|
29
|
+
pdd/fix_main.py,sha256=7TbHVUM2HuzCVMY-B2iHzvy5YEnKaaSbU1ZzXN7YG3U,14004
|
|
30
|
+
pdd/fix_verification_errors.py,sha256=HvqGGdQqHq7OERmzcYP8Ft5nX_xthwVPJPG-YLv6VNM,17444
|
|
31
31
|
pdd/fix_verification_errors_loop.py,sha256=Q9hOvgBUpfl7BeL8WUPR6OaJXwYIhEuG2E3RsPiddxQ,55034
|
|
32
|
-
pdd/fix_verification_main.py,sha256=
|
|
33
|
-
pdd/generate_output_paths.py,sha256=
|
|
34
|
-
pdd/generate_test.py,sha256=
|
|
32
|
+
pdd/fix_verification_main.py,sha256=7kN5fODIskJyxHKB9OOTVmg4PxiFIiTQ1HUBJR4PA0E,22762
|
|
33
|
+
pdd/generate_output_paths.py,sha256=YYxeEKiHf39s-giDu4ak_xufyfRqkuCcvowVuOytXaI,24224
|
|
34
|
+
pdd/generate_test.py,sha256=MI95NFvnjW28Ez-BSbD4J1U5p1xaj69D_mzufIGTH5I,6922
|
|
35
35
|
pdd/get_comment.py,sha256=yuRtk68-SDkMaGzOSyIFdldRoymJBRSKjOYkr0narVc,2627
|
|
36
36
|
pdd/get_extension.py,sha256=IwpnwGLKMkVcEtQWHeGriphq2g5r8mGLftXir48vrjQ,2675
|
|
37
37
|
pdd/get_jwt_token.py,sha256=BGxqMh7qf2mG-TFw7JlV941O9XtrW22L_dRoS_UZNjM,11560
|
|
@@ -41,8 +41,9 @@ pdd/increase_tests.py,sha256=XNXWH-7CgF90YhmQ2wj0JDDhPKmMNkqRXwtvmPQttL0,3632
|
|
|
41
41
|
pdd/incremental_code_generator.py,sha256=cWo3DJ0PybnrepFEAMibGjTVY3T8mLVvPt5W8cNhuxU,9402
|
|
42
42
|
pdd/insert_includes.py,sha256=hNn8muRULiq3YMNI4W4pEPeM1ckiZ-EgR9WtCyWQ1eQ,5533
|
|
43
43
|
pdd/install_completion.py,sha256=bLMJuMOBDvsEnDAUpgiPesNRGhY_IvBvz8ZvmbTzP4o,5472
|
|
44
|
-
pdd/llm_invoke.py,sha256=
|
|
44
|
+
pdd/llm_invoke.py,sha256=TmBQ07bE6dTQ3_2sZxP6awJACaQY2sdAIsPEPlYXQ-o,73390
|
|
45
45
|
pdd/load_prompt_template.py,sha256=4NH8_t5eon_vcyTznqtemJ_yAPkTJm_hSdTRgzj3qEQ,1907
|
|
46
|
+
pdd/logo_animation.py,sha256=n6HJWzuFze2csAAW2-zbxfjvWFYRI4hIdwVBtHBOkj4,20782
|
|
46
47
|
pdd/mcp_config.json,sha256=D3ctWHlShvltbtH37zbYb6smVE0V80_lGjDKDIqsSBE,124
|
|
47
48
|
pdd/pdd_completion.fish,sha256=XgtbuPV11pB8urYXhbpXhWuwKAVLpiAJxOMIes5CV-8,11884
|
|
48
49
|
pdd/pdd_completion.sh,sha256=e0K4Ai1yJRj6Fd6Qpk-brAEicW3ciPSyIuNMQkSG5mI,5342
|
|
@@ -50,22 +51,26 @@ pdd/pdd_completion.zsh,sha256=WPcz7BzvjDRmcEZfL-kFvhYmUtz2BHxJK_r3_cPa478,14966
|
|
|
50
51
|
pdd/postprocess.py,sha256=jWJSUPP7bDChyTEek35UOdy6fhU6c5EoDSoMypGwIdE,4402
|
|
51
52
|
pdd/postprocess_0.py,sha256=OW17GyCFLYErCyWh2tL4syuho3q2yFf2wyekQ4BLdPM,2168
|
|
52
53
|
pdd/preprocess.py,sha256=UB1rqSNscUC-JHujvGb11LJ5OadZ3GVD1Qeq1dI6HMc,9508
|
|
53
|
-
pdd/preprocess_main.py,sha256=
|
|
54
|
-
pdd/process_csv_change.py,sha256=
|
|
54
|
+
pdd/preprocess_main.py,sha256=CwmU3WcXdsZ3vJN0Z0eCv_CbiybXu4O9BxFkCmZz6v4,3209
|
|
55
|
+
pdd/process_csv_change.py,sha256=ckNqVPRooWVyIvmqjdEgo2PDLnpoQ6Taa2dUaWGRlzU,27926
|
|
55
56
|
pdd/pytest_output.py,sha256=kmKiMHaQItrDVi_hTCtM5pfCgBuyZVEVRbxdchpS5CY,4796
|
|
56
57
|
pdd/split.py,sha256=9lWrh-JOjOpxRp4-s1VL7bqJMVWlsmY5LxONT7sYM8A,5288
|
|
57
|
-
pdd/split_main.py,sha256=
|
|
58
|
+
pdd/split_main.py,sha256=GJzkWvDB6AA_duT2nZTRIvPmrX-ePhDRpZuog5xFCT0,4791
|
|
58
59
|
pdd/summarize_directory.py,sha256=FUgeVtB8oFn7Y6yI5dskNT5ieMoG95B6kRsVhKXPpSU,9184
|
|
60
|
+
pdd/sync_animation.py,sha256=e7Qb4m70BHYpl37CuuF-95j-APctPL4Zm_o1PSTTRFQ,28070
|
|
61
|
+
pdd/sync_determine_operation.py,sha256=CzEWj5Xm14eKSZ9F0qn9PmOr6ILxFe94TPPMB_N7Viw,40732
|
|
62
|
+
pdd/sync_main.py,sha256=X5pwpCuba7mDLbGYmyLPTl6i7x3uDdQ9vnuVlRXIv2E,13588
|
|
63
|
+
pdd/sync_orchestration.py,sha256=3AyUHkmq2S9zXKUGRjL0mUwSqeu0JZPX3G-TWa5ZX-Q,30569
|
|
59
64
|
pdd/trace.py,sha256=oXHbOMfxeso7m81N5V2ixS_l6BPAlZrH6vifn0IgWbo,5225
|
|
60
|
-
pdd/trace_main.py,sha256=
|
|
65
|
+
pdd/trace_main.py,sha256=Z8m8UgRZoaojX_H6aDDU7_lB7WNCLwZpFxbPTm1s-6s,4902
|
|
61
66
|
pdd/track_cost.py,sha256=VIrHYh4i2G5T5Dq1plxwuzsG4OrHQgO0GPgFckgsQ_4,3266
|
|
62
67
|
pdd/unfinished_prompt.py,sha256=aoyWPubtR36RFt1f2aqaTZVfSrqxzzbeKezTeHaDIGw,4305
|
|
63
|
-
pdd/update_main.py,sha256=
|
|
68
|
+
pdd/update_main.py,sha256=okTsl-oamzCOqjpircs58urBt4Cu7PXxOztvc57088Q,4332
|
|
64
69
|
pdd/update_model_costs.py,sha256=zfGqWoVIjBppKUt1Naq2ZsIdiucwfH6at2DflcwkJf8,22998
|
|
65
70
|
pdd/update_prompt.py,sha256=zc-HiI1cwGBkJHVmNDyoSZa13lZH90VdB9l8ajdj6Kk,4543
|
|
66
|
-
pdd/xml_tagger.py,sha256=
|
|
71
|
+
pdd/xml_tagger.py,sha256=5Bc3HRm7iz_XjBdzQIcMb8KocUQ8PELI2NN5Gw4amd4,4825
|
|
67
72
|
pdd/data/language_format.csv,sha256=X7jj_clC6dA93ij0TUPNd9oJ2tHyKUKXlWo1XVhP6zo,901
|
|
68
|
-
pdd/data/llm_model.csv,sha256=
|
|
73
|
+
pdd/data/llm_model.csv,sha256=LI6Zek4La4o8we2uo3nKOTWP7m9zpnrBgGKIzRJ94tU,1473
|
|
69
74
|
pdd/prompts/auto_include_LLM.prompt,sha256=0t-Jmm5o6vVTmqsISTUiewqPT8bB389UZnJoHZvgtu4,13967
|
|
70
75
|
pdd/prompts/bug_to_unit_test_LLM.prompt,sha256=KdMkvRVnjVSf0NTYIaDXIMT93xPttXEwkMpjWx5leLs,1588
|
|
71
76
|
pdd/prompts/change_LLM.prompt,sha256=5rgWIL16p3VRURd2_lNtcbu_MVRqPhI8gFIBt1gkzDQ,2164
|
|
@@ -79,7 +84,7 @@ pdd/prompts/extract_auto_include_LLM.prompt,sha256=BamIIt8qrML2ZtNe3D4K30iMobJ4U
|
|
|
79
84
|
pdd/prompts/extract_code_LLM.prompt,sha256=rRql9Dv2Rn01F2hFeaGzfh9apxCkjY7WzAG0SAvIe8M,2470
|
|
80
85
|
pdd/prompts/extract_conflict_LLM.prompt,sha256=V_xXdU7V4IZK9SVFxJtXKRn_wFkP3zp4FJrxeNM9XYc,1023
|
|
81
86
|
pdd/prompts/extract_detect_change_LLM.prompt,sha256=2HXSb9bGjHZsKrUGvfBdBAAcGBCrQ2AxC8vUJRAfB1U,1003
|
|
82
|
-
pdd/prompts/extract_program_code_fix_LLM.prompt,sha256=
|
|
87
|
+
pdd/prompts/extract_program_code_fix_LLM.prompt,sha256=GlYsHccKVfP9AV26olEiE1QklqXsdNprq4W7OlYYTok,1169
|
|
83
88
|
pdd/prompts/extract_prompt_change_LLM.prompt,sha256=1e3AxcVpZ85t7pVvXqCpBUJzGI995MIimXicClagSvw,366
|
|
84
89
|
pdd/prompts/extract_prompt_split_LLM.prompt,sha256=rhStDroVxDYRcCjYq7XCCub8B-KmfCFj5_7PxhgMmz0,1097
|
|
85
90
|
pdd/prompts/extract_prompt_update_LLM.prompt,sha256=XH2muMzTb_wqcQS9rR4THXe6TP7BD84qb4MEisuJVU4,906
|
|
@@ -95,15 +100,16 @@ pdd/prompts/increase_tests_LLM.prompt,sha256=rekFzLRuZy99KifEKNlmPYoQdl8wa04112m
|
|
|
95
100
|
pdd/prompts/insert_includes_LLM.prompt,sha256=g-p2gXKENsqvfK5Q9FYbqFsIJ5CP7rbxmd4rROA-W80,1453
|
|
96
101
|
pdd/prompts/split_LLM.prompt,sha256=cMVyazsue6eerOPYeueqpSNRiITy1ht0HgGytPFiQIk,6244
|
|
97
102
|
pdd/prompts/summarize_file_LLM.prompt,sha256=qb9K61XMVFy7hgGITglI37Xg7yLPAGQBm0rUBEqRnEc,387
|
|
103
|
+
pdd/prompts/sync_analysis_LLM.prompt,sha256=tU_0MlvmS5OT2zMCaldkaL-kX2x6pzZSa3uuKHLwUg0,3925
|
|
98
104
|
pdd/prompts/trace_LLM.prompt,sha256=XTPoQQpKrF7BtWkCJPIrinn448VyBGXJieibMsMP-y0,1231
|
|
99
105
|
pdd/prompts/trim_results_LLM.prompt,sha256=w4aL0S7v7fPSi3L9XeQR3mUOgNv3hpTDqi4rOtu7L7I,4033
|
|
100
106
|
pdd/prompts/trim_results_start_LLM.prompt,sha256=OKz8fAf1cYWKWgslFOHEkUpfaUDARh3DD9L7ud9FOVE,2177
|
|
101
107
|
pdd/prompts/unfinished_prompt_LLM.prompt,sha256=-JgBpiPTQZdWOAwOG1XpfpD9waynFTAT3Jo84eQ4bTw,1543
|
|
102
108
|
pdd/prompts/update_prompt_LLM.prompt,sha256=prIc8uLp2jqnLTHt6JvWDZGanPZipivhhYeXe0lVaYw,1328
|
|
103
109
|
pdd/prompts/xml_convertor_LLM.prompt,sha256=YGRGXJeg6EhM9690f-SKqQrKqSJjLFD51UrPOlO0Frg,2786
|
|
104
|
-
pdd_cli-0.0.
|
|
105
|
-
pdd_cli-0.0.
|
|
106
|
-
pdd_cli-0.0.
|
|
107
|
-
pdd_cli-0.0.
|
|
108
|
-
pdd_cli-0.0.
|
|
109
|
-
pdd_cli-0.0.
|
|
110
|
+
pdd_cli-0.0.42.dist-info/licenses/LICENSE,sha256=-1bjYH-CEjGEQ8VixtnRYuu37kN6F9NxmZSDkBuUQ9o,1062
|
|
111
|
+
pdd_cli-0.0.42.dist-info/METADATA,sha256=TWQhQU-niyHgtgMaYqzzCjRq3qQr3pm97zeHII48w_o,12398
|
|
112
|
+
pdd_cli-0.0.42.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
113
|
+
pdd_cli-0.0.42.dist-info/entry_points.txt,sha256=Kr8HtNVb8uHZtQJNH4DnF8j7WNgWQbb7_Pw5hECSR-I,36
|
|
114
|
+
pdd_cli-0.0.42.dist-info/top_level.txt,sha256=xjnhIACeMcMeDfVNREgQZl4EbTni2T11QkL5r7E-sbE,4
|
|
115
|
+
pdd_cli-0.0.42.dist-info/RECORD,,
|