heyatlas 1.7.0 → 1.8.0
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
|
@@ -52443,7 +52443,8 @@ async function setupSmithWorkspace(cwd) {
|
|
|
52443
52443
|
for (const [filename, content] of Object.entries(SMITH_AGENTS)) {
|
|
52444
52444
|
writeFileSync2(join2(targetAgentsDir, filename), content);
|
|
52445
52445
|
}
|
|
52446
|
-
|
|
52446
|
+
const config3 = SMITH_OPENCODE_JSONC.replace(/\$\{WORKING_DIRECTORY\}/g, cwd);
|
|
52447
|
+
writeFileSync2(join2(cwd, "opencode.jsonc"), config3);
|
|
52447
52448
|
console.log("[smith] Workspace configured with agents and opencode.jsonc");
|
|
52448
52449
|
}
|
|
52449
52450
|
|