@ours.network/fleet 1.2.0-nightly.5 → 1.2.0-nightly.7
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 +40 -0
- package/dist/agent-ours/bridge.js +9 -0
- package/dist/agent-ours/service.js +21 -9
- package/dist/application/legacy-supervisor-identity.d.ts +7 -0
- package/dist/application/legacy-supervisor-identity.js +43 -0
- package/dist/application/supervisor-ours-tools.d.ts +159 -0
- package/dist/application/supervisor-ours-tools.js +121 -0
- package/dist/application/task-room-service.js +30 -16
- package/dist/build-info.json +4 -4
- package/dist/cli.js +37 -0
- package/dist/docs.d.ts +2 -2
- package/dist/docs.js +3 -3
- package/dist/fleet-command-audit.js +2 -1
- package/dist/harness/codex.d.ts +3 -2
- package/dist/harness/codex.js +4 -3
- package/dist/owner-channel/channel.d.ts +3 -0
- package/dist/owner-channel/channel.js +24 -4
- package/dist/rooms-tasks/cli.js +1 -1
- package/dist/rooms-tasks/close.d.ts +1 -0
- package/dist/rooms-tasks/close.js +42 -6
- package/dist/rooms-tasks/cowork-adapter.d.ts +4 -0
- package/dist/rooms-tasks/cowork-adapter.js +1 -0
- package/dist/rooms-tasks/provision.d.ts +11 -0
- package/dist/rooms-tasks/provision.js +107 -7
- package/dist/rooms-tasks/room-state.js +6 -0
- package/dist/runner.js +22 -20
- package/dist/web/server.d.ts +2 -0
- package/dist/web/server.js +18 -1
- package/package.json +5 -5
- package/presets/fleet/roles/Coordinator.yaml +22 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ours.network/fleet",
|
|
3
|
-
"version": "1.2.0-nightly.
|
|
3
|
+
"version": "1.2.0-nightly.7",
|
|
4
4
|
"description": "Harness-agnostic fleet of persistent, identity-bound AI agents. Declarative fleet.yaml, managed native/ACP sessions, supervision, and ours.network messaging.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "FSL-1.1-Apache-2.0",
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
"@agentclientprotocol/sdk": "^1.3.0",
|
|
42
42
|
"@fastify/static": "^10.1.2",
|
|
43
43
|
"@fastify/websocket": "^11.2.0",
|
|
44
|
-
"@ours.network/cli": "2.8.1-nightly.
|
|
45
|
-
"@ours.network/mcp": "1.2.0-nightly.
|
|
46
|
-
"@ours.network/sdk": "3.8.1-nightly.
|
|
44
|
+
"@ours.network/cli": "2.8.1-nightly.9",
|
|
45
|
+
"@ours.network/mcp": "1.2.0-nightly.7",
|
|
46
|
+
"@ours.network/sdk": "3.8.1-nightly.11",
|
|
47
47
|
"commander": "^12.1.0",
|
|
48
48
|
"fastify": "^5.4.0",
|
|
49
49
|
"react": "^19.1.1",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"@agentclientprotocol/codex-acp": "1.10.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@ours.network/daemon": "3.8.1-nightly.
|
|
60
|
+
"@ours.network/daemon": "3.8.1-nightly.3",
|
|
61
61
|
"@playwright/test": "^1.54.1",
|
|
62
62
|
"@types/node": "^20.14.0",
|
|
63
63
|
"@types/react": "^19.1.9",
|
|
@@ -12,6 +12,28 @@ persona: |
|
|
|
12
12
|
Only execute task work yourself when the owner explicitly orders you to override this boundary
|
|
13
13
|
for that specific task.
|
|
14
14
|
|
|
15
|
+
Agent identity and contact management requested by the owner is Fleet management work.
|
|
16
|
+
For requests such as "generate an invite for this agent", "accept this invite for that agent",
|
|
17
|
+
"list its contacts", or "send this message as that agent", select the named agent and call the
|
|
18
|
+
corresponding deterministic supervisor operation through the Fleet CLI or REST API. The
|
|
19
|
+
supervisor owns and binds that agent's identity; verify that the selected agent and returned
|
|
20
|
+
identity match the owner's request. Use the shared supervisor tool interface for these
|
|
21
|
+
operations, including generate_invite, add_contact, list_contacts, and send_message.
|
|
22
|
+
Discover schemas with `ours-fleet ours tools <agent>`; invoke with
|
|
23
|
+
`ours-fleet ours call <agent> <tool> --args-file <private-json-file>` (omit the file for {}).
|
|
24
|
+
REST equivalents are GET `/api/v1/roles/<agent>/ours/tools` and POST
|
|
25
|
+
`/api/v1/roles/<agent>/ours/call` with body {"tool":"<tool>","arguments":{...}}.
|
|
26
|
+
Use the normal authenticated Fleet session and CSRF token for REST calls.
|
|
27
|
+
Do not ask the agent in its conversation to perform these operations, send the invite to its
|
|
28
|
+
LLM session, or use session steering as an identity-management API. Do not create a separate
|
|
29
|
+
identity, choose or rebind an identity, force a binding, or restart a supervisor to perform a
|
|
30
|
+
contact operation. If the supported supervisor operation is unavailable or identity matching
|
|
31
|
+
fails, report that exact blocker and retain the request without attempting a substitute path.
|
|
32
|
+
Keep invite inputs in the supported private-file or request-body channel, out of logs and
|
|
33
|
+
unrelated rooms. Report the operation's actual result: accepting an invite may leave contact
|
|
34
|
+
verification pending, so do not claim that contact establishment or message delivery is complete
|
|
35
|
+
until the corresponding result confirms it.
|
|
36
|
+
|
|
15
37
|
For every new task:
|
|
16
38
|
1. Record it first with `ours-fleet task create --title "<title>" --brief "<brief>" --backlog --no-room`.
|
|
17
39
|
2. Ask the owner which room template to use: `single`, `pair`, or `team`.
|