agent-remnote 1.3.1 → 1.3.3
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 +2 -2
- package/README.md +18 -0
- package/dist/main.js +1893 -682
- package/package.json +1 -1
- package/plugin-artifacts/PluginZip.zip +0 -0
- package/plugin-artifacts/dist/build-info.json +8 -0
- package/plugin-artifacts/dist/index-sandbox.js +1 -1
- package/plugin-artifacts/dist/index.js +1 -1
- package/plugin-artifacts/dist/indexPlugin-DRS9q8r8.js +12 -0
- package/plugin-artifacts/dist/indexPlugin-DcUIJct4.js +0 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# agent-remnote
|
|
2
2
|
|
|
3
|
-
## 1.3.
|
|
3
|
+
## 1.3.3
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- ca915b7: Fix `apply --payload` so nested `markdown` fields expand input-spec values like `@file`, `-`, and `@@literal`, and harden queue enqueue/wait behavior by making enqueue atomic to reduce CI and `--wait` flakiness.
|
|
8
8
|
|
|
9
9
|
## 1.3.0
|
|
10
10
|
|
package/README.md
CHANGED
|
@@ -17,6 +17,24 @@ agent-remnote --json plugin current --compact
|
|
|
17
17
|
agent-remnote plugin serve
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
+
## Write surface
|
|
21
|
+
|
|
22
|
+
Core write commands use the reset axes `subject / from / to / at / portal`.
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
agent-remnote --json rem create --at standalone --markdown @./note.md --title "Doc"
|
|
26
|
+
agent-remnote --json rem move --subject "id:<remId>" --at "parent[0]:id:<parentId>" --portal in-place
|
|
27
|
+
agent-remnote --json portal create --to "id:<targetRemId>" --at "after:id:<anchorRemId>"
|
|
28
|
+
agent-remnote --json rem children append --subject "id:<parentRemId>" --markdown @./children.md
|
|
29
|
+
agent-remnote --json tag add --tag "id:<tagRemId>" --to "id:<remId1>" --to "id:<remId2>"
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Notes:
|
|
33
|
+
|
|
34
|
+
- `rem create --from-selection --portal in-place` is the preferred original-slot backfill path.
|
|
35
|
+
- repeated `--from ... --portal in-place` is an advanced path that requires one contiguous sibling range under one parent.
|
|
36
|
+
- `tag add/remove` are relation writes. Repeated `--tag` and repeated `--to` expand as a cross-product, not pairwise.
|
|
37
|
+
|
|
20
38
|
## Remote mode
|
|
21
39
|
|
|
22
40
|
Configure once in `~/.agent-remnote/config.json`:
|