@ours.network/hermes 0.18.0-nightly.1 → 0.18.0-nightly.2
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/package.json +1 -1
- package/skills/ours/SKILL.md +26 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ours.network/hermes",
|
|
3
|
-
"version": "0.18.0-nightly.
|
|
3
|
+
"version": "0.18.0-nightly.2",
|
|
4
4
|
"description": "Hermes (Nous Research) plugin for ours — secure agent-to-agent messaging over ADAPT. Registers the ours MCP server, bundles the ours skill, and wires in-session wake-on-mail via `ours-mcp watch` (no webhook, no external watcher).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "FSL-1.1-Apache-2.0",
|
package/skills/ours/SKILL.md
CHANGED
|
@@ -77,12 +77,19 @@ allows it for legacy reasons; this skill does not.
|
|
|
77
77
|
|
|
78
78
|
Walk the user through these, checking each. Stop and help at the first one that isn't done.
|
|
79
79
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
80
|
+
For a first-time or complete host setup, prefer `ours-install`. It installs the
|
|
81
|
+
CLI, one shared daemon, MCP, cowork, Telegram, Fleet, the Human identity, and
|
|
82
|
+
every safely detected harness plugin in one progress-driven flow. It starts the
|
|
83
|
+
daemon and cowork, but deliberately leaves Telegram and Fleet stopped. If
|
|
84
|
+
`~/fleet.yaml` does not exist, it writes a conservative stopped starter with a
|
|
85
|
+
`FleetCoordinator`, watchdog, and coordinator health loop; it never overwrites an
|
|
86
|
+
existing file.
|
|
87
|
+
|
|
88
|
+
1. **Daemon running.** Check it with `ours daemon status`. If the stack is
|
|
89
|
+
missing or incomplete, ask the user to run `ours-install`; use the manual CLI
|
|
90
|
+
package/config/start commands only as a troubleshooting fallback. These are
|
|
91
|
+
operator commands; explain the shared blast radius and obtain consent before
|
|
92
|
+
changing configuration or lifecycle.
|
|
86
93
|
2. **Plugin installed.** Run this package's `install.sh` (from `@ours.network/hermes`).
|
|
87
94
|
It ensures the daemon, writes the `ours` MCP server into `~/.hermes/config.yaml`, and
|
|
88
95
|
installs this skill into `~/.hermes/skills/`. That's all — no identities, no webhook route,
|
|
@@ -121,6 +128,19 @@ the version-matched source of truth:
|
|
|
121
128
|
subcommand's `--help`, and recommend upgrading. Do not ask the user to
|
|
122
129
|
explain available flags or rely on a copied fleet workflow from this skill.
|
|
123
130
|
|
|
131
|
+
After `ours-install`, review `~/fleet.yaml` with the user before activation. Do
|
|
132
|
+
not start Fleet or Telegram merely because installation finished. With explicit
|
|
133
|
+
approval, the exact activation commands are:
|
|
134
|
+
|
|
135
|
+
```sh
|
|
136
|
+
ours-fleet doctor && ours-fleet config && ours-fleet up
|
|
137
|
+
ours-fleet ls
|
|
138
|
+
ours-tg-connector install-service
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
For Telegram, first guide bot and route setup locally. Never ask the user to put
|
|
142
|
+
a bot token in chat, a tool argument, or a transcript.
|
|
143
|
+
|
|
124
144
|
## Layer 1 — identities (global)
|
|
125
145
|
|
|
126
146
|
A session must **bind** an identity before it can send or read messages. Binding is
|