agent-remnote 1.0.0 → 1.2.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # agent-remnote
2
2
 
3
+ ## 1.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 13949c6: Implement outline-aware writes and backup governance for RemNote operations.
8
+
9
+ - add `backup list` and `backup cleanup`, including precise cleanup by backup rem id
10
+ - add `rem children replace --selection`, `--backup`, and `--assert`
11
+ - avoid extra bundling for single-root daily markdown writes
12
+ - route large subtree deletes through frontend-safe deletion with dynamic `--max-delete-subtree-nodes`
13
+
14
+ ## 1.1.0
15
+
16
+ ### Minor Changes
17
+
18
+ - 3676681: Add host API workspace binding resolution and `apiBaseUrl`-driven remote command support for the main read/write surface, plus runtime guards for unsupported property type mutations and invalid table option targets.
19
+
3
20
  ## 1.0.0
4
21
 
5
22
  ### Major Changes
package/README.md CHANGED
@@ -14,6 +14,7 @@ npm i -g agent-remnote
14
14
  agent-remnote --json doctor
15
15
  agent-remnote --json daemon status
16
16
  agent-remnote --json plugin current --compact
17
+ agent-remnote plugin serve
17
18
  ```
18
19
 
19
20
  ## Remote mode
@@ -43,6 +44,24 @@ agent-remnote search --query "keyword"
43
44
  agent-remnote plugin current --compact
44
45
  ```
45
46
 
47
+ For local RemNote plugin loading, serve the embedded plugin artifacts at the default URL:
48
+
49
+ ```bash
50
+ agent-remnote plugin serve
51
+ ```
52
+
53
+ Default URL: `http://127.0.0.1:8080`
54
+ The command prints a Vite-like `Local:` line in human mode. Add `--debug` to also print `Dist:`.
55
+
56
+ Background lifecycle commands:
57
+
58
+ ```bash
59
+ agent-remnote plugin ensure
60
+ agent-remnote plugin status
61
+ agent-remnote plugin logs --lines 50
62
+ agent-remnote plugin stop
63
+ ```
64
+
46
65
  One-off override remains available with `--api-base-url`, `--api-host`, `--api-port`, `--api-base-path` or the matching env vars. Use `agent-remnote config path|list|get|set|unset|validate|print` to manage user config. `config set` supports `apiBaseUrl`, `apiHost`, `apiPort`, and `apiBasePath`.
47
66
 
48
67
  ## Docs