apteva 0.7.3 → 0.7.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.
Files changed (2) hide show
  1. package/cli.js +8 -1
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -14,9 +14,16 @@ const serverBin = path.join(DIR, `apteva-server${ext}`);
14
14
  const coreBin = path.join(DIR, `apteva-core${ext}`);
15
15
 
16
16
  if (!fs.existsSync(aptevaBin)) {
17
- console.error("apteva: binary not found. Try reinstalling: npm install -g apteva");
17
+ console.error(`apteva: binary not found at ${aptevaBin}`);
18
+ console.error("Try: npm install -g apteva");
18
19
  process.exit(1);
19
20
  }
21
+ if (!fs.existsSync(serverBin)) {
22
+ console.error(`apteva: warning - server binary not found at ${serverBin}`);
23
+ }
24
+ if (!fs.existsSync(coreBin)) {
25
+ console.error(`apteva: warning - core binary not found at ${coreBin}`);
26
+ }
20
27
 
21
28
  const result = spawnSync(aptevaBin, process.argv.slice(2), {
22
29
  stdio: "inherit",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apteva",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
4
4
  "description": "AI agent platform with multi-thread orchestration, MCP integrations, and dashboard",
5
5
  "bin": {
6
6
  "apteva": "./cli.js"