@wix/ditto-codegen-public 1.0.259 → 1.0.261
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 +7 -2
- package/package.json +2 -2
package/dist/out.js
CHANGED
|
@@ -48634,7 +48634,7 @@ var require_config = __commonJS({
|
|
|
48634
48634
|
exports2.getOpenCodeAskEnv = getOpenCodeAskEnv;
|
|
48635
48635
|
var os_1 = require("os");
|
|
48636
48636
|
var codeGenerationService_12 = require_codeGenerationService();
|
|
48637
|
-
exports2.DEFAULT_TIMEOUT_MS =
|
|
48637
|
+
exports2.DEFAULT_TIMEOUT_MS = 20 * 60 * 1e3;
|
|
48638
48638
|
exports2.DEFAULT_MODEL = "anthropic/claude-sonnet-4-6";
|
|
48639
48639
|
function getAnthropicBaseUrl(projectId) {
|
|
48640
48640
|
return `${codeGenerationService_12.aiProxyBaseUrl}/projects/${projectId}/anthropic`;
|
|
@@ -342774,7 +342774,9 @@ var require_skills_installer = __commonJS({
|
|
|
342774
342774
|
var execAsync = (0, util_1.promisify)(child_process_1.exec);
|
|
342775
342775
|
var SKILLS_INSTALL_COMMAND = "npx --yes skills add wix/skills -g -a opencode -y";
|
|
342776
342776
|
async function installSkills(outputPath, log) {
|
|
342777
|
-
log.info("[Skills] Installing Wix skills globally"
|
|
342777
|
+
log.info("[Skills] Installing Wix skills globally", {
|
|
342778
|
+
installInternalSkills: process.env.INSTALL_INTERNAL_SKILLS
|
|
342779
|
+
});
|
|
342778
342780
|
try {
|
|
342779
342781
|
const { stdout, stderr } = await execAsync(SKILLS_INSTALL_COMMAND, {
|
|
342780
342782
|
cwd: outputPath
|
|
@@ -342904,6 +342906,9 @@ async function processJob(job) {
|
|
|
342904
342906
|
jobLog.debug("CODGEN_SKILLS_ENABLED", {
|
|
342905
342907
|
value: process.env.CODGEN_SKILLS_ENABLED
|
|
342906
342908
|
});
|
|
342909
|
+
jobLog.debug("INSTALL_INTERNAL_SKILLS", {
|
|
342910
|
+
value: process.env.INSTALL_INTERNAL_SKILLS
|
|
342911
|
+
});
|
|
342907
342912
|
if (skillsEnabled) {
|
|
342908
342913
|
await (0, skills_installer_1.installSkills)((0, codegen_flow_helpers_1.getOutputPath)(), jobLog);
|
|
342909
342914
|
}
|
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.261",
|
|
4
4
|
"description": "AI-powered Wix CLI app generator - standalone executable",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node build.mjs",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
"@wix/ditto-codegen": "1.0.0",
|
|
29
29
|
"esbuild": "^0.27.2"
|
|
30
30
|
},
|
|
31
|
-
"falconPackageHash": "
|
|
31
|
+
"falconPackageHash": "cc716c6a58a23bc8af674956d7be4ccba5083278b533fe6aea97edd7"
|
|
32
32
|
}
|