@mandors/cli 0.4.3 → 0.4.5
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/.mandor/session-notes.jsonl +5 -0
- package/.mandor/workspace.json +19 -0
- package/README.md +20 -0
- package/binaries/darwin-amd64/mandor +0 -0
- package/binaries/darwin-arm64/mandor +0 -0
- package/binaries/darwin-arm64.tar.gz +0 -0
- package/binaries/linux-amd64/mandor +0 -0
- package/binaries/linux-arm64/mandor +0 -0
- package/binaries/linux-arm64.tar.gz +0 -0
- package/binaries/windows-amd64/mandor.exe +0 -0
- package/mandor-test +0 -0
- package/package.json +5 -5
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
{"timestamp":"2026-02-04T08:43:53Z","note":"Testing jsonl format"}
|
|
2
|
+
{"timestamp":"2026-02-04T08:48:27Z","note":"Note 1: Initial setup"}
|
|
3
|
+
{"timestamp":"2026-02-04T08:48:27Z","note":"Note 2: Database migration"}
|
|
4
|
+
{"timestamp":"2026-02-04T08:48:27Z","note":"Note 3: API endpoints"}
|
|
5
|
+
{"timestamp":"2026-02-04T08:48:27Z","note":"Note 4: Frontend integration"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "sgXU",
|
|
3
|
+
"name": "Mandor",
|
|
4
|
+
"version": "mandor.v1",
|
|
5
|
+
"schema_version": "mandor.v1",
|
|
6
|
+
"created_at": "2026-02-04T08:42:33.775505Z",
|
|
7
|
+
"last_updated_at": "2026-02-04T08:42:33.775505Z",
|
|
8
|
+
"created_by": "BUDISANTOSO",
|
|
9
|
+
"config": {
|
|
10
|
+
"default_priority": "P3",
|
|
11
|
+
"strict_mode": false,
|
|
12
|
+
"goal_lengths": {
|
|
13
|
+
"project": 500,
|
|
14
|
+
"feature": 300,
|
|
15
|
+
"task": 500,
|
|
16
|
+
"issue": 200
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
package/README.md
CHANGED
|
@@ -240,6 +240,19 @@ mandor track task <task-id>
|
|
|
240
240
|
mandor track issue <issue-id>
|
|
241
241
|
```
|
|
242
242
|
|
|
243
|
+
### Session Commands
|
|
244
|
+
|
|
245
|
+
```bash
|
|
246
|
+
# Add a progress note (AI agents use this to track work)
|
|
247
|
+
mandor session note "Completed v0.4.4 release and testing"
|
|
248
|
+
|
|
249
|
+
# Read recent session notes (last 50 entries by default)
|
|
250
|
+
mandor session note --read
|
|
251
|
+
|
|
252
|
+
# Read more notes with offset
|
|
253
|
+
mandor session note --read --offset 100
|
|
254
|
+
```
|
|
255
|
+
|
|
243
256
|
### Project Commands
|
|
244
257
|
|
|
245
258
|
```bash
|
|
@@ -677,6 +690,7 @@ mandor feature update <feature-id> --project <project-id> --reopen
|
|
|
677
690
|
.mandor/
|
|
678
691
|
├── workspace.json # Workspace metadata
|
|
679
692
|
├── config.json # Workspace configuration
|
|
693
|
+
├── session-notes.jsonl # AI agent session progress notes (NDJSON)
|
|
680
694
|
└── projects/
|
|
681
695
|
└── <project-id>/
|
|
682
696
|
├── project.json # Project metadata
|
|
@@ -685,6 +699,12 @@ mandor feature update <feature-id> --project <project-id> --reopen
|
|
|
685
699
|
└── issues.jsonl # Issue records
|
|
686
700
|
```
|
|
687
701
|
|
|
702
|
+
**Session Notes Format (session-notes.jsonl):**
|
|
703
|
+
```json
|
|
704
|
+
{"timestamp":"2026-02-04T12:45:00Z","note":"Completed v0.4.4 release and testing"}
|
|
705
|
+
{"timestamp":"2026-02-04T14:20:00Z","note":"Started performance optimization - blocked on benchmarks"}
|
|
706
|
+
```
|
|
707
|
+
|
|
688
708
|
---
|
|
689
709
|
|
|
690
710
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/mandor-test
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mandors/cli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.5",
|
|
4
4
|
"description": "Event-based task manager CLI for AI agent workflows",
|
|
5
5
|
"main": "npm/lib/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
"scripts": {
|
|
22
22
|
"postinstall": "node npm/lib/install.js",
|
|
23
23
|
"build": "node npm/scripts/build.js",
|
|
24
|
-
"build:darwin:x64": "GOOS=darwin GOARCH=
|
|
24
|
+
"build:darwin:x64": "GOOS=darwin GOARCH=amd64 go build -o binaries/darwin-amd64/mandor ./cmd/mandor",
|
|
25
25
|
"build:darwin:arm64": "GOOS=darwin GOARCH=arm64 go build -o binaries/darwin-arm64/mandor ./cmd/mandor",
|
|
26
|
-
"build:linux:x64": "GOOS=linux GOARCH=
|
|
26
|
+
"build:linux:x64": "GOOS=linux GOARCH=amd64 go build -o binaries/linux-amd64/mandor ./cmd/mandor",
|
|
27
27
|
"build:linux:arm64": "GOOS=linux GOARCH=arm64 go build -o binaries/linux-arm64/mandor ./cmd/mandor",
|
|
28
|
-
"build:win32:x64": "GOOS=
|
|
29
|
-
"build:win32:arm64": "GOOS=
|
|
28
|
+
"build:win32:x64": "GOOS=windows GOARCH=amd64 go build -o binaries/windows-amd64/mandor.exe ./cmd/mandor",
|
|
29
|
+
"build:win32:arm64": "GOOS=windows GOARCH=arm64 go build -o binaries/windows-arm64/mandor.exe ./cmd/mandor",
|
|
30
30
|
"version:major": "npm version major && git push --follow-tags",
|
|
31
31
|
"version:minor": "npm version minor && git push --follow-tags",
|
|
32
32
|
"version:patch": "npm version patch && git push --follow-tags",
|