agent-remnote 1.5.0 → 1.6.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 +13 -9
- package/README.md +13 -0
- package/dist/main.js +2702 -1766
- package/package.json +1 -1
- package/plugin-artifacts/PluginZip.zip +0 -0
- package/plugin-artifacts/dist/build-info.json +3 -3
- package/plugin-artifacts/dist/index-sandbox.js +1 -1
- package/plugin-artifacts/dist/index.js +1 -1
- package/plugin-artifacts/dist/{indexPlugin-B6yR4-RE.js → indexPlugin-BEtBEAsb.js} +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,19 +1,23 @@
|
|
|
1
1
|
# agent-remnote
|
|
2
2
|
|
|
3
|
-
## 1.
|
|
3
|
+
## 1.6.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- bd511db: Add fixed runtime owner governance for stable and dev profiles, including
|
|
8
|
+
runtime-scoped pid/state paths, ownership metadata in lifecycle status, and the
|
|
9
|
+
new `stack takeover` flow for deterministic runtime handoff.
|
|
8
10
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 520b202: Fix standalone `rem create --markdown` so multi-root list content keeps
|
|
14
|
+
top-level sections as siblings instead of nesting later roots under the
|
|
15
|
+
previous branch.
|
|
16
|
+
|
|
17
|
+
Add a regression test covering the plugin markdown tree import path used by the
|
|
18
|
+
standalone create flow.
|
|
12
19
|
|
|
13
|
-
|
|
14
|
-
cleaning managed state files more safely, improving installed-package behavior
|
|
15
|
-
for bundled scenarios and plugin artifacts, and keeping JSON-oriented flows such
|
|
16
|
-
as `search --json` stable in packaged layouts.
|
|
20
|
+
- 4c9c5ec: Improve doctor/runtime self-heal behavior and add isolated dev runtime wrappers for local source debugging.
|
|
17
21
|
|
|
18
22
|
## 1.4.0
|
|
19
23
|
|
package/README.md
CHANGED
|
@@ -12,6 +12,8 @@ npm i -g agent-remnote
|
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
agent-remnote --json doctor
|
|
15
|
+
agent-remnote --json config print
|
|
16
|
+
agent-remnote --json stack status
|
|
15
17
|
agent-remnote --json daemon status
|
|
16
18
|
agent-remnote --json plugin current --compact
|
|
17
19
|
agent-remnote plugin serve
|
|
@@ -77,12 +79,23 @@ The command prints a Vite-like `Local:` line in human mode. Add `--debug` to als
|
|
|
77
79
|
Background lifecycle commands:
|
|
78
80
|
|
|
79
81
|
```bash
|
|
82
|
+
agent-remnote stack ensure
|
|
83
|
+
agent-remnote stack status
|
|
84
|
+
agent-remnote stack stop
|
|
85
|
+
agent-remnote stack takeover --channel dev
|
|
86
|
+
agent-remnote stack takeover --channel stable
|
|
80
87
|
agent-remnote plugin ensure
|
|
81
88
|
agent-remnote plugin status
|
|
82
89
|
agent-remnote plugin logs --lines 50
|
|
83
90
|
agent-remnote plugin stop
|
|
84
91
|
```
|
|
85
92
|
|
|
93
|
+
Current runtime defaults are profile-aware:
|
|
94
|
+
|
|
95
|
+
- published install defaults to the canonical `stable` runtime root under `~/.agent-remnote`
|
|
96
|
+
- source worktrees default to isolated `dev` runtime roots and isolated ports
|
|
97
|
+
- `config print` and `stack status` expose `runtime_profile`, `runtime_root`, and `fixed_owner_claim`
|
|
98
|
+
|
|
86
99
|
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`.
|
|
87
100
|
|
|
88
101
|
## Docs
|