agent-remnote 1.3.0 → 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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # agent-remnote
2
2
 
3
+ ## 1.3.3
4
+
5
+ ### Patch Changes
6
+
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
+
3
9
  ## 1.3.0
4
10
 
5
11
  ### Minor Changes
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`: