@diggerhq/anyware 0.6.2 → 0.6.4

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.
@@ -18,12 +18,12 @@ if (!goPlatform || !goArch) {
18
18
  process.exit(1);
19
19
  }
20
20
 
21
- const binary = path.join(__dirname, `catty-${goPlatform}-${goArch}`);
21
+ const binary = path.join(__dirname, `anyware-${goPlatform}-${goArch}`);
22
22
 
23
23
  try {
24
24
  execFileSync(binary, process.argv.slice(2), { stdio: 'inherit' });
25
25
  } catch (err) {
26
26
  if (err.status !== undefined) process.exit(err.status);
27
- console.error(`Failed to run catty: ${err.message}`);
27
+ console.error(`Failed to run anyware: ${err.message}`);
28
28
  process.exit(1);
29
29
  }
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diggerhq/anyware",
3
- "version": "0.6.2",
3
+ "version": "0.6.4",
4
4
  "description": "A Claude Code wrapper with centralized streaming for cross-device access",
5
5
  "bin": {
6
6
  "anyware": "./bin/anyware"