@wix/ditto-codegen-public 1.0.125 → 1.0.126
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/out.js +8 -3
- package/package.json +2 -2
package/dist/out.js
CHANGED
|
@@ -123237,8 +123237,10 @@ ${extensionDoc}
|
|
|
123237
123237
|
|
|
123238
123238
|
3. **Make your decision and submit**:
|
|
123239
123239
|
- Decide if this extension should be updated based on the user's request
|
|
123240
|
-
- Identify ONLY the files that are directly relevant to the user's use case
|
|
123241
|
-
- Not all files you read will be relevant - filter to only what needs modification
|
|
123240
|
+
- Identify ONLY the files that belong to THIS extension and are directly relevant to the user's use case
|
|
123241
|
+
- Not all files you read will be relevant - filter to only what needs modification
|
|
123242
|
+
- **IMPORTANT**: Only return files that are part of the extension being evaluated, never include files from other extensions
|
|
123243
|
+
- Use the extension type documentation above to understand what this extension does
|
|
123242
123244
|
- **Call the submit_evaluation tool** with your decision
|
|
123243
123245
|
|
|
123244
123246
|
## Constraints
|
|
@@ -123247,7 +123249,10 @@ ${extensionDoc}
|
|
|
123247
123249
|
- **File scope**: Only consider files under src/ directory
|
|
123248
123250
|
- **Efficiency**: Be strategic with tool calls - don't read unnecessary files
|
|
123249
123251
|
- **Uncertainty**: If you're unsure, mark as not relevant
|
|
123250
|
-
- **Output filtering**: Return only files that
|
|
123252
|
+
- **Output filtering**: Return only files that:
|
|
123253
|
+
* Belong to the extension being evaluated (never include files from other extensions)
|
|
123254
|
+
* Directly relate to the user's request
|
|
123255
|
+
* Actually need modification (not all files you read)
|
|
123251
123256
|
- **SPI Matching (for SERVICE_PLUGIN extensions)**: If the extension uses a specific SPI (Service Provider Interface), understand that:
|
|
123252
123257
|
* Each SPI handles a specific business domain (e.g., additional fees, shipping rates, product validation)
|
|
123253
123258
|
* Different SPIs are NOT interchangeable - they serve different purposes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/ditto-codegen-public",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.126",
|
|
4
4
|
"description": "AI-powered Wix CLI app generator - standalone executable",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node build.mjs",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"@wix/ditto-codegen": "1.0.0",
|
|
25
25
|
"esbuild": "^0.25.9"
|
|
26
26
|
},
|
|
27
|
-
"falconPackageHash": "
|
|
27
|
+
"falconPackageHash": "810359ce9a00090f61214bd9bb182d9cff93f02f1fec87ddc440a53e"
|
|
28
28
|
}
|