@mandors/cli 0.4.4 → 0.4.6

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.
@@ -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
package/logo.png CHANGED
Binary file
package/mandor-test ADDED
Binary file
package/npm/logo.png CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mandors/cli",
3
- "version": "0.4.4",
3
+ "version": "0.4.6",
4
4
  "description": "Event-based task manager CLI for AI agent workflows",
5
5
  "main": "npm/lib/index.js",
6
6
  "bin": {