agent-remnote 0.3.0 → 0.4.1
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 +12 -0
- package/README.md +4 -1
- package/dist/main.js +828 -445
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# agent-remnote
|
|
2
2
|
|
|
3
|
+
## 0.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 53aad14: Fix Host API write endpoints so remote markdown and op writes no longer fail from a missing status-line runtime service.
|
|
8
|
+
|
|
9
|
+
## 0.4.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 44ce542: Add the unreleased `agent-remnote` changes after `0.3.0`, including the improved daily markdown write flow and full Host API config support for `apiHost`, `apiPort`, and `apiBasePath` through both user config and root CLI flags.
|
|
14
|
+
|
|
3
15
|
## 0.3.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -30,6 +30,9 @@ Or write it through the CLI:
|
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
32
|
agent-remnote config set --key apiBaseUrl --value http://host.docker.internal:3000
|
|
33
|
+
agent-remnote config set --key apiHost --value 0.0.0.0
|
|
34
|
+
agent-remnote config set --key apiPort --value 3001
|
|
35
|
+
agent-remnote config set --key apiBasePath --value /v1
|
|
33
36
|
agent-remnote config validate
|
|
34
37
|
```
|
|
35
38
|
|
|
@@ -40,7 +43,7 @@ agent-remnote search --query "keyword"
|
|
|
40
43
|
agent-remnote plugin current --compact
|
|
41
44
|
```
|
|
42
45
|
|
|
43
|
-
One-off override remains available with `--api-base-url` or
|
|
46
|
+
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`.
|
|
44
47
|
|
|
45
48
|
## Docs
|
|
46
49
|
|