@mandors/cli 0.1.6 → 0.1.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.
package/README.md CHANGED
@@ -69,7 +69,7 @@ Mandor provides:
69
69
 
70
70
  ## Installation
71
71
 
72
- Mandor can be installed via curl, npm, or built from source.
72
+ Mandor can be installed via curl or npm.
73
73
 
74
74
  ### Option 1: curl (Recommended for macOS/Linux)
75
75
 
Binary file
Binary file
Binary file
Binary file
package/binaries/mandor CHANGED
Binary file
@@ -63,7 +63,7 @@ function createArchive(platform) {
63
63
  const archivePath = path.join(BINARIES_DIR, `${os}-${arch}.tar.gz`);
64
64
 
65
65
  try {
66
- execSync(`tar -czf "${archivePath}" -C "${sourceDir}" .`, {
66
+ execSync(`tar -czf "${archivePath}" -C "${sourceDir}" ${binaryName}`, {
67
67
  stdio: 'pipe',
68
68
  shell: true
69
69
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mandors/cli",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "Event-based task manager CLI for AI agent workflows",
5
5
  "main": "npm/lib/index.js",
6
6
  "bin": {