@mandors/cli 0.0.24 → 0.0.26

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 (3) hide show
  1. package/README.md +17 -20
  2. package/npm/logo.png +0 -0
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -132,32 +132,12 @@ await cli.projectCreate('api', { name: 'API Service' });
132
132
  const tasks = await cli.taskList({ project: 'api', status: 'pending' });
133
133
  ```
134
134
 
135
- ### Option 3: From Source
136
-
137
- Build from Go source code:
138
-
139
- ```bash
140
- # Clone repository
141
- git clone https://github.com/sanxzy/mandor.git
142
- cd mandor
143
-
144
- # Build binary
145
- go build -o build/mandor ./cmd/mandor
146
-
147
- # Install to system
148
- sudo mv build/mandor /usr/local/bin/
149
-
150
- # Verify
151
- mandor --help
152
- ```
153
-
154
135
  ### Platform Support
155
136
 
156
137
  | Method | macOS | Linux | Windows |
157
138
  |--------|-------|-------|---------|
158
139
  | curl | ✅ arm64, x64 | ✅ arm64, x64 | ❌ |
159
140
  | npm | ✅ arm64, x64 | ✅ arm64, x64 | ✅ arm64, x64 |
160
- | Source | ✅ | ✅ | ✅ |
161
141
 
162
142
  ### Troubleshooting
163
143
 
@@ -279,6 +259,23 @@ mandor status
279
259
  | `mandor populate [--markdown\|--json]` | Full CLI reference |
280
260
  | `mandor completion [bash\|zsh\|fish]` | Shell completion |
281
261
 
262
+ ### AI Documentation
263
+
264
+ | Command | Description |
265
+ |---------|-------------|
266
+ | `mandor ai claude --goal <text>` | Generate CLAUDE.md for project |
267
+ | `mandor ai agents --role <text> --agents <n> --protocol <sequential\|collaborative>` | Generate AGENTS.md for multi-agent setup |
268
+
269
+ Generate AI assistant documentation files:
270
+
271
+ ```bash
272
+ # Generate CLAUDE.md for Claude Code
273
+ mandor ai claude --goal "Event-based task manager CLI"
274
+
275
+ # Generate AGENTS.md for multi-agent coordination
276
+ mandor ai agents --role "Backend development team" --agents 3 --protocol collaborative
277
+ ```
278
+
282
279
  ---
283
280
 
284
281
  ## Entity Types
package/npm/logo.png ADDED
Binary file
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@mandors/cli",
3
- "version": "0.0.24",
3
+ "version": "0.0.26",
4
4
  "description": "Event-based task manager CLI for AI agent workflows",
5
5
  "main": "npm/lib/index.js",
6
6
  "bin": {
7
- "mandor": "./npm/bin/mandor"
7
+ "mandor": "npm/bin/mandor"
8
8
  },
9
9
  "os": [
10
10
  "darwin",
@@ -19,7 +19,7 @@
19
19
  "node": ">=16.0.0"
20
20
  },
21
21
  "scripts": {
22
- "postinstall": "node npm/lib/install.js --prerelease",
22
+ "postinstall": "node npm/lib/install.js",
23
23
  "build": "node npm/scripts/build.js",
24
24
  "build:darwin:x64": "GOOS=darwin GOARCH=x64 go build -o binaries/darwin-x64/mandor ./cmd/mandor",
25
25
  "build:darwin:arm64": "GOOS=darwin GOARCH=arm64 go build -o binaries/darwin-arm64/mandor ./cmd/mandor",