@getpochi/cli 0.5.80 → 0.5.81
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.
- package/dist/cli.js +2 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -386539,6 +386539,7 @@ RULES
|
|
|
386539
386539
|
* Use multiApplyDiff when refactoring code patterns, updating imports, or making systematic changes across a file.
|
|
386540
386540
|
* Use multiApplyDiff when you need to update related code elements (e.g., function signature + its calls, variable renames, etc.).
|
|
386541
386541
|
* Only use applyDiff for truly isolated single changes where no other modifications are needed.
|
|
386542
|
+
* CRITICAL: Within a single response, you MUST NOT make multiple applyDiff calls to the same file path. If you need to make multiple edits to a single file, you MUST use multiApplyDiff instead. This is NON-NEGOTIABLE.
|
|
386542
386543
|
- When using the writeToFile tool to modify a file, use the tool directly with the desired content. You do not need to display the content before using the tool. ALWAYS provide the COMPLETE file content in your response. This is NON-NEGOTIABLE. Partial updates or placeholders like '// rest of code unchanged' are STRICTLY FORBIDDEN. You MUST include ALL parts of the file, even if they haven't been modified. Failure to do so will result in incomplete or broken code, severely impacting the user's project.
|
|
386543
386544
|
- Be sure to consider the type of project (e.g. Python, JavaScript, web application) when determining the appropriate structure and files to include. Also consider what files may be most relevant to accomplishing the task, for example looking at a project's manifest file would help you understand the project's dependencies, which you could incorporate into any code you write.
|
|
386544
386545
|
- When making changes to code, always consider the context in which the code is being used. Ensure that your changes are compatible with the existing codebase and that they follow the project's coding standards and best practices.
|
|
@@ -404613,7 +404614,7 @@ var {
|
|
|
404613
404614
|
// package.json
|
|
404614
404615
|
var package_default = {
|
|
404615
404616
|
name: "@getpochi/cli",
|
|
404616
|
-
version: "0.5.
|
|
404617
|
+
version: "0.5.81",
|
|
404617
404618
|
type: "module",
|
|
404618
404619
|
bin: {
|
|
404619
404620
|
pochi: "src/cli.ts"
|