@inline-chat/hermes-agent-adapter 0.0.14 → 0.0.15
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/README.md +4 -3
- package/package.json +1 -1
- package/plugin/inline/cli.py +5 -3
- package/plugin/inline/plugin.yaml +1 -1
package/README.md
CHANGED
|
@@ -107,7 +107,8 @@ Check an installation:
|
|
|
107
107
|
|
|
108
108
|
```sh
|
|
109
109
|
inline-hermes doctor --json
|
|
110
|
-
hermes inline status
|
|
110
|
+
hermes inline status --json --probe
|
|
111
|
+
hermes gateway status
|
|
111
112
|
inline-hermes --version
|
|
112
113
|
```
|
|
113
114
|
|
|
@@ -147,7 +148,7 @@ uv run ./hermes plugins list --plain --no-bundled
|
|
|
147
148
|
Expected local output includes:
|
|
148
149
|
|
|
149
150
|
```text
|
|
150
|
-
enabled user 0.0.
|
|
151
|
+
enabled user 0.0.15 inline-platform
|
|
151
152
|
```
|
|
152
153
|
|
|
153
154
|
## Update Or Reinstall
|
|
@@ -169,7 +170,7 @@ mismatch, rerun the same command after rebuilding or upgrading the package.
|
|
|
169
170
|
## Compatibility
|
|
170
171
|
|
|
171
172
|
- Hermes Agent: requires the external user plugin registry and native platform
|
|
172
|
-
plugin loader available in Hermes Agent
|
|
173
|
+
plugin loader available in Hermes Agent `>=0.17.0`. This package was validated
|
|
173
174
|
against Hermes Agent `0.21.0` from source commit `29112bef` (tag
|
|
174
175
|
`v2026.8.31`).
|
|
175
176
|
- Node.js: `>=20` is required for the bundled sidecar. Hermes-managed Node 22,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inline-chat/hermes-agent-adapter",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "Hermes Agent platform adapter for Inline, with a native Python plugin and bundled Inline realtime sidecar.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
package/plugin/inline/cli.py
CHANGED
|
@@ -27,7 +27,7 @@ _CLI_INSTALL_URL = "https://inline.chat/cli/install.sh"
|
|
|
27
27
|
_MAX_TOKEN_BYTES = 16 * 1024
|
|
28
28
|
_MAX_PROBE_RESPONSE_BYTES = 64 * 1024
|
|
29
29
|
_MACHINE_SETUP_PROTOCOL_VERSION = 1
|
|
30
|
-
_PROBE_USER_AGENT = "inline-hermes-agent-adapter/0.0.
|
|
30
|
+
_PROBE_USER_AGENT = "inline-hermes-agent-adapter/0.0.15"
|
|
31
31
|
_ENV_REFERENCE_RE = re.compile(r"^\$\{([A-Za-z_][A-Za-z0-9_]*)\}$")
|
|
32
32
|
|
|
33
33
|
|
|
@@ -94,8 +94,10 @@ def gateway_setup() -> None:
|
|
|
94
94
|
hermes_gateway.write_platform_config_field("inline", "enabled", True, raw=True)
|
|
95
95
|
|
|
96
96
|
print()
|
|
97
|
-
hermes_setup.print_success("💬 Inline
|
|
98
|
-
hermes_setup.print_info("Restart the gateway when prompted
|
|
97
|
+
hermes_setup.print_success("💬 Inline configuration saved.")
|
|
98
|
+
hermes_setup.print_info("Restart the gateway when prompted; setup is not ready until that restart succeeds.")
|
|
99
|
+
hermes_setup.print_info("Then run `hermes inline status --json --probe` to verify the bot credential.")
|
|
100
|
+
hermes_setup.print_info("After it reports ready, message your bot in Inline.")
|
|
99
101
|
hermes_setup.print_info("Send /sethome in that chat to use it for cron results and notifications.")
|
|
100
102
|
|
|
101
103
|
|