@mandors/cli 0.0.6 → 0.0.8

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.
Binary file
Binary file
Binary file
Binary file
@@ -57,18 +57,32 @@ async function install(options = {}) {
57
57
  */
58
58
  function useBundledBinary(platform, arch) {
59
59
  const filename = `mandor-${platform}-${arch}`;
60
- const bundledBinary = path.join(BUNDLE_DIR, filename, 'mandor');
60
+
61
+ // Try both: directory structure and direct binary file
62
+ const bundledBinaryDir = path.join(BUNDLE_DIR, filename, 'mandor');
63
+ const bundledBinaryFile = path.join(BUNDLE_DIR, filename);
61
64
 
62
- console.log(`DEBUG: Checking bundled binary at: ${bundledBinary}`);
65
+ console.log(`DEBUG: Looking for binary for ${platform}-${arch}`);
63
66
  console.log(`DEBUG: BUNDLE_DIR: ${BUNDLE_DIR}`);
64
- console.log(`DEBUG: Files in BUNDLE_DIR: ${fs.existsSync(BUNDLE_DIR) ? fs.readdirSync(BUNDLE_DIR) : 'not exists'}`);
67
+ console.log(`DEBUG: Files in BUNDLE_DIR: ${fs.readdirSync(BUNDLE_DIR).join(', ')}`);
65
68
 
66
- if (!fs.existsSync(bundledBinary)) {
67
- console.log(`DEBUG: Bundled binary not found`);
69
+ let bundledBinary = null;
70
+ let foundMethod = '';
71
+
72
+ if (fs.existsSync(bundledBinaryDir)) {
73
+ bundledBinary = bundledBinaryDir;
74
+ foundMethod = 'directory structure';
75
+ } else if (fs.existsSync(bundledBinaryFile) && fs.statSync(bundledBinaryFile).isFile()) {
76
+ bundledBinary = bundledBinaryFile;
77
+ foundMethod = 'direct file';
78
+ }
79
+
80
+ if (!bundledBinary) {
81
+ console.log(`DEBUG: No bundled binary found`);
68
82
  return null;
69
83
  }
70
84
 
71
- console.log(`DEBUG: Found bundled binary`);
85
+ console.log(`DEBUG: Found bundled binary via ${foundMethod}: ${bundledBinary}`);
72
86
 
73
87
  const cacheDir = path.join(os.homedir(), '.mandor', 'bin');
74
88
  if (!fs.existsSync(cacheDir)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mandors/cli",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "description": "Event-based task manager CLI for AI agent workflows",
5
5
  "main": "npm/lib/index.js",
6
6
  "bin": {