agent-remnote 0.2.0 → 0.4.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 +14 -0
- package/README.md +24 -2
- package/dist/main.js +2038 -1114
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# agent-remnote
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 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.
|
|
8
|
+
|
|
9
|
+
## 0.3.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 86f4855: Add a full `config` command suite for user config management, including `path`, `list`, `get`, `set`, `unset`, `validate`, and richer `print` output.
|
|
14
|
+
|
|
15
|
+
Support `apiBaseUrl` in `~/.agent-remnote/config.json` and `--config-file` / `REMNOTE_CONFIG_FILE` so agents can keep using the same business commands across local and remote environments.
|
|
16
|
+
|
|
3
17
|
## 0.2.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -18,11 +18,33 @@ agent-remnote --json plugin current --compact
|
|
|
18
18
|
|
|
19
19
|
## Remote mode
|
|
20
20
|
|
|
21
|
+
Configure once in `~/.agent-remnote/config.json`:
|
|
22
|
+
|
|
23
|
+
```json
|
|
24
|
+
{
|
|
25
|
+
"apiBaseUrl": "http://host.docker.internal:3000"
|
|
26
|
+
}
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Or write it through the CLI:
|
|
30
|
+
|
|
21
31
|
```bash
|
|
22
|
-
agent-remnote --
|
|
23
|
-
agent-remnote
|
|
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
|
|
36
|
+
agent-remnote config validate
|
|
24
37
|
```
|
|
25
38
|
|
|
39
|
+
Then keep using the same business commands:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
agent-remnote search --query "keyword"
|
|
43
|
+
agent-remnote plugin current --compact
|
|
44
|
+
```
|
|
45
|
+
|
|
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`.
|
|
47
|
+
|
|
26
48
|
## Docs
|
|
27
49
|
|
|
28
50
|
See the repository root `README.md` and `README.zh-CN.md` for full documentation.
|