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.
Files changed (2) hide show
  1. package/dist/cli.js +2 -1
  2. 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
- writeFileSync2(join2(cwd, "opencode.jsonc"), SMITH_OPENCODE_JSONC);
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heyatlas",
3
- "version": "1.7.0",
3
+ "version": "1.8.0",
4
4
  "description": "Tunnel local AI agents to the cloud for voice-powered interactions",
5
5
  "author": "Bishwendu Kundu <bishwenduk029@gmail.com>",
6
6
  "license": "MIT",