@ours.network/hermes 0.17.1 → 0.17.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 +9 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ours.network/hermes",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.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
|
@@ -61,15 +61,15 @@ Walk the user through it, explaining as you go:
|
|
|
61
61
|
every one is automatically associated with the Human identity, and its invites carry
|
|
62
62
|
the verified "agent X of person Y" chain.
|
|
63
63
|
|
|
64
|
-
**Do not create an agent identity on a host with no Human identity.**
|
|
65
|
-
|
|
66
|
-
|
|
64
|
+
**Do not create an agent identity on a host with no Human identity.** Older servers may
|
|
65
|
+
accept that as unassociated legacy state: no verified human behind it in invites, no
|
|
66
|
+
control plane. This skill never creates or exposes such state.
|
|
67
67
|
|
|
68
68
|
| Tempting shortcut | Why it's wrong |
|
|
69
69
|
|---|---|
|
|
70
70
|
| "The user clearly asked for an *agent*, so the human question doesn't apply" | The gate is about ORDER, not classification. Create the Human identity first, then the agent they asked for. |
|
|
71
71
|
| "The user is busy / gave me everything I need for the agent" | Onboarding adds one question — the person's name. Ask it. |
|
|
72
|
-
| "`create_identity` works fine without a Human identity" |
|
|
72
|
+
| "`create_identity` works fine without a Human identity" | Older servers may create unassociated legacy state with no human association. Never do it. |
|
|
73
73
|
| "I'll create the agent now and the Human identity later" | Later never comes, and the agent's invites go out with no human chain. Human first. |
|
|
74
74
|
|
|
75
75
|
## Setup — "set up ours" / "set up the plugin"
|
|
@@ -209,7 +209,8 @@ the bio, so a persona prompt is only needed if they want to role-play it).
|
|
|
209
209
|
|
|
210
210
|
For scratch/one-off work ("make a temporary identity", "throwaway identity"):
|
|
211
211
|
`create_temporary_identity({ name? , bio?, expose_local? })` — name optional (omitted → a
|
|
212
|
-
random public-safe `tmp-…` name),
|
|
212
|
+
random public-safe `tmp-…` name), requires an existing Human identity, creates an
|
|
213
|
+
ephemeral delegated role under it, binds it to this session, and marks it **temporary**:
|
|
213
214
|
|
|
214
215
|
- **Session-scoped local lifetime.** When this session ends — an explicit
|
|
215
216
|
`close_temporary_identity()`, releasing the connection, or the client process dying —
|
|
@@ -221,8 +222,9 @@ random public-safe `tmp-…` name), binds it to this session, and marks it **tem
|
|
|
221
222
|
owning session lives — not even with `force`. A **stale** one (owner process dead) is
|
|
222
223
|
reclaimed automatically by the daemon, or immediately via
|
|
223
224
|
`close_temporary_identity({ name })` from any session.
|
|
224
|
-
-
|
|
225
|
-
|
|
225
|
+
- Its verified Human/root delegation is part of creation; the tool fails closed rather
|
|
226
|
+
than creating unassociated state. It is NOT in the local contact book unless
|
|
227
|
+
`expose_local: true`.
|
|
226
228
|
- `list_identities()` tags each temporary identity with its lease state (owned by this
|
|
227
229
|
session / another live session / stale / closing).
|
|
228
230
|
|