agent-remnote 1.1.0 → 1.3.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 +19 -0
- package/README.md +19 -0
- package/dist/main.js +2420 -527
- package/package.json +4 -2
- package/plugin-artifacts/PluginZip.zip +0 -0
- package/plugin-artifacts/dist/README.md +50 -0
- package/plugin-artifacts/dist/blank-line-B2rM3oxN.js +1 -0
- package/plugin-artifacts/dist/index-4b5IDxii.js +3 -0
- package/plugin-artifacts/dist/index-BnR23rlw.js +12 -0
- package/plugin-artifacts/dist/index-BpbrUbge.js +20 -0
- package/plugin-artifacts/dist/index-CMP2i-HY.js +1 -0
- package/plugin-artifacts/dist/index-CTg2hlbS.js +58 -0
- package/plugin-artifacts/dist/index-Ch_qCilz.js +1 -0
- package/plugin-artifacts/dist/index-OYpYHp3Y.js +1 -0
- package/plugin-artifacts/dist/index-XfOTAlvl.js +5 -0
- package/plugin-artifacts/dist/index-dJjNfQvw.js +1 -0
- package/plugin-artifacts/dist/index-sandbox.css +1 -0
- package/plugin-artifacts/dist/index-sandbox.js +1 -0
- package/plugin-artifacts/dist/index.css +1 -0
- package/plugin-artifacts/dist/index.html +2 -0
- package/plugin-artifacts/dist/index.js +1 -0
- package/plugin-artifacts/dist/indexPlugin-DcUIJct4.js +12 -0
- package/plugin-artifacts/dist/indexPlugin.css +1 -0
- package/plugin-artifacts/dist/jsx-runtime-D6ZSwAL5.js +8 -0
- package/plugin-artifacts/dist/manifest.json +29 -0
- package/plugin-artifacts/dist/sample_widget-sandbox.js +1 -0
- package/plugin-artifacts/dist/sample_widget.js +1 -0
- package/plugin-artifacts/dist/widget-bootstrap.js +52 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# agent-remnote
|
|
2
2
|
|
|
3
|
+
## 1.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0b61c1e: Add the canonical `rem replace` command with `--surface children|self`, support repeated `--rem` and `--selection` target selectors, and update the CLI/docs to treat legacy replace surfaces as compatibility or advanced paths.
|
|
8
|
+
|
|
9
|
+
Also harden selection-replace assertion handling so lookup failures and missing created Rems fail closed instead of silently passing `no-literal-bullet`.
|
|
10
|
+
|
|
11
|
+
## 1.2.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- 13949c6: Implement outline-aware writes and backup governance for RemNote operations.
|
|
16
|
+
|
|
17
|
+
- add `backup list` and `backup cleanup`, including precise cleanup by backup rem id
|
|
18
|
+
- add `rem children replace --selection`, `--backup`, and `--assert`
|
|
19
|
+
- avoid extra bundling for single-root daily markdown writes
|
|
20
|
+
- route large subtree deletes through frontend-safe deletion with dynamic `--max-delete-subtree-nodes`
|
|
21
|
+
|
|
3
22
|
## 1.1.0
|
|
4
23
|
|
|
5
24
|
### Minor 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
|