@ours.network/fleet 1.1.0-nightly.2 → 1.1.0-nightly.21
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 +204 -55
- package/dist/agent-recovery-gate.d.ts +17 -0
- package/dist/agent-recovery-gate.js +135 -0
- package/dist/application/capabilities.js +18 -6
- package/dist/application/fleet-query-service.js +20 -5
- package/dist/application/role-command-service.js +9 -0
- package/dist/application/role-creation-service.d.ts +6 -25
- package/dist/application/role-creation-service.js +34 -72
- package/dist/application/role-repository.d.ts +4 -2
- package/dist/application/role-repository.js +6 -3
- package/dist/application/session-control.d.ts +3 -1
- package/dist/application/session-control.js +4 -2
- package/dist/application/task-room-service.d.ts +58 -6
- package/dist/application/task-room-service.js +435 -79
- package/dist/briefing.js +74 -24
- package/dist/build-info.json +4 -4
- package/dist/canonical-json.d.ts +2 -0
- package/dist/canonical-json.js +10 -0
- package/dist/cli.js +241 -76
- package/dist/config-yaml.d.ts +1 -1
- package/dist/config.d.ts +75 -3
- package/dist/config.js +274 -34
- package/dist/creation.d.ts +1 -1
- package/dist/creation.js +3 -2
- package/dist/daemon-recovery.d.ts +93 -0
- package/dist/daemon-recovery.js +328 -0
- package/dist/docs.d.ts +1 -1
- package/dist/docs.js +192 -66
- package/dist/doctor.d.ts +2 -0
- package/dist/doctor.js +54 -4
- package/dist/fleet-command-audit.d.ts +165 -0
- package/dist/fleet-command-audit.js +555 -0
- package/dist/fleet-proxy.d.ts +7 -2
- package/dist/fleet-proxy.js +30 -8
- package/dist/harness/agent-session.d.ts +5 -0
- package/dist/harness/claude-code-session.d.ts +2 -0
- package/dist/harness/claude-code-session.js +6 -1
- package/dist/harness/claude-code.js +2 -0
- package/dist/harness/codex-app-server-proxy.d.ts +40 -0
- package/dist/harness/codex-app-server-proxy.js +348 -14
- package/dist/harness/codex-session.d.ts +11 -2
- package/dist/harness/codex-session.js +22 -2
- package/dist/harness/codex.d.ts +5 -1
- package/dist/harness/codex.js +110 -10
- package/dist/harness/types.d.ts +1 -1
- package/dist/index.d.ts +5 -4
- package/dist/index.js +4 -3
- package/dist/init-guidance.d.ts +1 -1
- package/dist/init-guidance.js +4 -3
- package/dist/init-wizard.d.ts +98 -0
- package/dist/init-wizard.js +629 -0
- package/dist/lifecycle-summary.d.ts +134 -0
- package/dist/lifecycle-summary.js +179 -0
- package/dist/loops/config.d.ts +10 -1
- package/dist/loops/config.js +38 -5
- package/dist/model-env.d.ts +2 -2
- package/dist/model-env.js +1 -1
- package/dist/model-recovery.d.ts +1 -1
- package/dist/ops.js +2 -17
- package/dist/owner-channel/channel.d.ts +58 -0
- package/dist/owner-channel/channel.js +321 -42
- package/dist/owner-channel/commands.d.ts +6 -1
- package/dist/owner-channel/commands.js +34 -19
- package/dist/owner-channel/state.d.ts +2 -0
- package/dist/owner-channel/state.js +8 -2
- package/dist/permissions.js +1 -1
- package/dist/preset-bootstrap.d.ts +10 -0
- package/dist/preset-bootstrap.js +85 -0
- package/dist/preset-migration.d.ts +42 -0
- package/dist/preset-migration.js +414 -0
- package/dist/reports/artifact.d.ts +10 -0
- package/dist/reports/artifact.js +32 -0
- package/dist/reports/index.d.ts +5 -0
- package/dist/reports/index.js +5 -0
- package/dist/reports/render.d.ts +6 -0
- package/dist/reports/render.js +240 -0
- package/dist/reports/service.d.ts +42 -0
- package/dist/reports/service.js +57 -0
- package/dist/reports/tasks.d.ts +52 -0
- package/dist/reports/tasks.js +177 -0
- package/dist/reports/types.d.ts +315 -0
- package/dist/reports/types.js +6 -0
- package/dist/resolved-plan.js +13 -1
- package/dist/rooms-tasks/cli.d.ts +2 -0
- package/dist/rooms-tasks/cli.js +514 -75
- package/dist/rooms-tasks/close.d.ts +9 -1
- package/dist/rooms-tasks/close.js +20 -4
- package/dist/rooms-tasks/config.js +16 -14
- package/dist/rooms-tasks/cowork-adapter.d.ts +1 -0
- package/dist/rooms-tasks/cowork-adapter.js +6 -0
- package/dist/rooms-tasks/deletion.d.ts +51 -0
- package/dist/rooms-tasks/deletion.js +217 -0
- package/dist/rooms-tasks/external-worker.d.ts +1 -0
- package/dist/rooms-tasks/external-worker.js +14 -9
- package/dist/rooms-tasks/launch-snapshot.d.ts +19 -0
- package/dist/rooms-tasks/launch-snapshot.js +181 -0
- package/dist/rooms-tasks/member-overrides.d.ts +30 -0
- package/dist/rooms-tasks/member-overrides.js +204 -0
- package/dist/rooms-tasks/provision.js +184 -49
- package/dist/rooms-tasks/room-state.d.ts +1 -0
- package/dist/rooms-tasks/room-state.js +12 -1
- package/dist/rooms-tasks/task-state.d.ts +115 -3
- package/dist/rooms-tasks/task-state.js +361 -11
- package/dist/rooms-tasks/templates.d.ts +4 -2
- package/dist/rooms-tasks/templates.js +42 -78
- package/dist/rooms-tasks/terminal.d.ts +3 -0
- package/dist/rooms-tasks/terminal.js +7 -3
- package/dist/rooms-tasks/types.d.ts +96 -17
- package/dist/rooms-tasks/types.js +14 -4
- package/dist/runner.d.ts +12 -2
- package/dist/runner.js +124 -43
- package/dist/session/acp.d.ts +9 -1
- package/dist/session/acp.js +35 -9
- package/dist/session/arbiter.d.ts +2 -1
- package/dist/session/arbiter.js +2 -0
- package/dist/session/codex-app-server-transport.d.ts +53 -0
- package/dist/session/codex-app-server-transport.js +184 -0
- package/dist/session/codex-app-server.d.ts +122 -0
- package/dist/session/codex-app-server.js +1031 -0
- package/dist/session/control.d.ts +14 -1
- package/dist/session/control.js +38 -0
- package/dist/session/conversation-types.d.ts +4 -4
- package/dist/session/types.d.ts +24 -6
- package/dist/session/types.js +28 -0
- package/dist/spawn.d.ts +15 -31
- package/dist/spawn.js +117 -237
- package/dist/temp-lifecycle.d.ts +1 -1
- package/dist/watchdog/config.d.ts +10 -7
- package/dist/watchdog/config.js +29 -19
- package/dist/watchdog/run.js +4 -13
- package/dist/web/fleet-config-service.d.ts +1 -0
- package/dist/web/fleet-config-service.js +27 -8
- package/dist/web/runtime.js +11 -6
- package/dist/web/server.js +28 -1
- package/dist/web/topology-promote.js +8 -1
- package/dist/web-app/assets/index-C0h3ALvs.js +10 -0
- package/dist/web-app/index.html +1 -1
- package/package.json +3 -2
- package/presets/brain-catalog.json +16 -0
- package/presets/fleet/agent_templates/Critic.yaml +4 -0
- package/presets/fleet/agent_templates/Developer.yaml +4 -0
- package/presets/fleet/agent_templates/LocalCoordinator.yaml +4 -0
- package/presets/fleet/agents/FleetCoordinator.yaml +3 -0
- package/presets/fleet/brains/claude-default.yaml +5 -0
- package/presets/fleet/brains/claude-fable-5-high.yaml +5 -0
- package/presets/fleet/brains/claude-fable-5-low.yaml +5 -0
- package/presets/fleet/brains/claude-fable-5-max.yaml +5 -0
- package/presets/fleet/brains/claude-fable-5-medium.yaml +5 -0
- package/presets/fleet/brains/claude-fable-5-xhigh.yaml +5 -0
- package/presets/fleet/brains/claude-opus-5-high.yaml +5 -0
- package/presets/fleet/brains/claude-opus-5-low.yaml +5 -0
- package/presets/fleet/brains/claude-opus-5-max.yaml +5 -0
- package/presets/fleet/brains/claude-opus-5-medium.yaml +5 -0
- package/presets/fleet/brains/claude-opus-5-xhigh.yaml +5 -0
- package/presets/fleet/brains/claude-sonnet-5-high.yaml +5 -0
- package/presets/fleet/brains/claude-sonnet-5-low.yaml +5 -0
- package/presets/fleet/brains/claude-sonnet-5-max.yaml +5 -0
- package/presets/fleet/brains/claude-sonnet-5-medium.yaml +5 -0
- package/presets/fleet/brains/claude-sonnet-5-xhigh.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-3-codex-spark-high.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-3-codex-spark-low.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-3-codex-spark-medium.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-3-codex-spark-xhigh.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-4-high.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-4-low.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-4-medium.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-4-mini-high.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-4-mini-low.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-4-mini-medium.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-4-mini-xhigh.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-4-xhigh.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-5-high.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-5-low.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-5-medium.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-5-xhigh.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-6-luna-high.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-6-luna-low.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-6-luna-max.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-6-luna-medium.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-6-luna-xhigh.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-6-sol-high.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-6-sol-low.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-6-sol-max.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-6-sol-medium.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-6-sol-ultra.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-6-sol-xhigh.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-6-terra-high.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-6-terra-low.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-6-terra-max.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-6-terra-medium.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-6-terra-ultra.yaml +5 -0
- package/presets/fleet/brains/codex-gpt-5-6-terra-xhigh.yaml +5 -0
- package/presets/fleet/roles/Coordinator.yaml +30 -0
- package/presets/fleet/roles/Critic.yaml +19 -0
- package/presets/fleet/roles/Developer.yaml +19 -0
- package/presets/fleet/roles/LocalCoordinator.yaml +25 -0
- package/presets/fleet/room_templates/pair.yaml +10 -0
- package/presets/fleet/room_templates/single.yaml +7 -0
- package/presets/fleet/room_templates/team.yaml +12 -0
- package/presets/fleet.yaml +7 -0
- package/presets/manifest.json +6 -0
- package/dist/web-app/assets/index-BbE9EX6n.js +0 -10
package/dist/web-app/index.html
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<link rel="manifest" href="/manifest.webmanifest" />
|
|
9
9
|
<link rel="icon" href="/icons/ours-fleet.svg" type="image/svg+xml" />
|
|
10
10
|
<title>ours fleet console</title>
|
|
11
|
-
<script type="module" crossorigin src="/assets/index-
|
|
11
|
+
<script type="module" crossorigin src="/assets/index-C0h3ALvs.js"></script>
|
|
12
12
|
<link rel="stylesheet" crossorigin href="/assets/index-59GF-gsZ.css">
|
|
13
13
|
</head>
|
|
14
14
|
<body>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ours.network/fleet",
|
|
3
|
-
"version": "1.1.0-nightly.
|
|
4
|
-
"description": "Harness-agnostic fleet of persistent, identity-bound AI agents. Declarative fleet.yaml, ACP sessions, supervision, and ours.network messaging.",
|
|
3
|
+
"version": "1.1.0-nightly.21",
|
|
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",
|
|
7
7
|
"repository": {
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"dist",
|
|
17
17
|
"contrib",
|
|
18
18
|
"examples",
|
|
19
|
+
"presets",
|
|
19
20
|
"README.md",
|
|
20
21
|
"LICENSE"
|
|
21
22
|
],
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema_version": 1,
|
|
3
|
+
"catalog_revision": 1,
|
|
4
|
+
"models": [
|
|
5
|
+
{ "harness": "codex", "session": "acp", "model": "gpt-5.6-sol", "efforts": ["low", "medium", "high", "xhigh", "max", "ultra"] },
|
|
6
|
+
{ "harness": "codex", "session": "acp", "model": "gpt-5.6-terra", "efforts": ["low", "medium", "high", "xhigh", "max", "ultra"] },
|
|
7
|
+
{ "harness": "codex", "session": "acp", "model": "gpt-5.6-luna", "efforts": ["low", "medium", "high", "xhigh", "max"] },
|
|
8
|
+
{ "harness": "codex", "session": "acp", "model": "gpt-5.5", "efforts": ["low", "medium", "high", "xhigh"] },
|
|
9
|
+
{ "harness": "codex", "session": "acp", "model": "gpt-5.4", "efforts": ["low", "medium", "high", "xhigh"] },
|
|
10
|
+
{ "harness": "codex", "session": "acp", "model": "gpt-5.4-mini", "efforts": ["low", "medium", "high", "xhigh"] },
|
|
11
|
+
{ "harness": "codex", "session": "acp", "model": "gpt-5.3-codex-spark", "efforts": ["low", "medium", "high", "xhigh"] },
|
|
12
|
+
{ "harness": "claude-code", "session": "acp", "model": "claude-fable-5", "efforts": ["low", "medium", "high", "xhigh", "max"] },
|
|
13
|
+
{ "harness": "claude-code", "session": "acp", "model": "claude-opus-5", "efforts": ["low", "medium", "high", "xhigh", "max"] },
|
|
14
|
+
{ "harness": "claude-code", "session": "acp", "model": "claude-sonnet-5", "efforts": ["low", "medium", "high", "xhigh", "max"] }
|
|
15
|
+
]
|
|
16
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
mission: Keep fleet development moving by managing the task backlog, rooms, and executor agents.
|
|
2
|
+
persona: |
|
|
3
|
+
You are the fleet Coordinator. Own progress and workflow, not execution quality or results.
|
|
4
|
+
|
|
5
|
+
Immediately before each meaningful action, proactively use ours `send_message` to contact
|
|
6
|
+
`Coordinator Owner Channel` with a short, plain one-sentence statement of what you are about to do.
|
|
7
|
+
This is an informational intent notice, never a permission request; proceed without waiting unless
|
|
8
|
+
a separate safety or authority rule genuinely requires approval.
|
|
9
|
+
|
|
10
|
+
Out of scope: do not personally implement, inspect, analyze, research, review, test, validate,
|
|
11
|
+
or otherwise execute task work. Delegate all execution to temporary agents in managed rooms.
|
|
12
|
+
Only execute task work yourself when the owner explicitly orders you to override this boundary
|
|
13
|
+
for that specific task.
|
|
14
|
+
|
|
15
|
+
For every new task:
|
|
16
|
+
1. Record it first with `ours-fleet task create --title "<title>" --brief "<brief>" --backlog --no-room`.
|
|
17
|
+
2. Ask the owner which room template to use: `single`, `pair`, or `team`.
|
|
18
|
+
3. Start it with `ours-fleet task start <task-id> --template <template>`.
|
|
19
|
+
|
|
20
|
+
Keep the backlog current with `ours-fleet task list --state all` and use `task show`, `task block`,
|
|
21
|
+
`task unblock`, and `task review` to reflect lifecycle changes. When the owner asks for progress,
|
|
22
|
+
inspect only management state with `task show`, `room show`, and `room members`; do not assess the
|
|
23
|
+
work itself. If a task or room is stuck, run `ours-fleet task recover <task-id>` or
|
|
24
|
+
`ours-fleet room recover <room-id>` so Fleet repairs or respawns its temporary executors.
|
|
25
|
+
|
|
26
|
+
When executors report completion, run `ours-fleet task finish <task-id> --summary "<summary>"`.
|
|
27
|
+
This marks the task done, retires its members, and deletes its room. Report task IDs, states,
|
|
28
|
+
blockers, recovery actions, and next workflow steps concisely. Never claim that execution is
|
|
29
|
+
correct: result and quality belong to the temporary executor agents.
|
|
30
|
+
bio: Fleet workflow coordinator. Manages backlog tasks, room lifecycles, and temporary executor agents; engage to start, track, recover, and close delegated work, not to execute or judge it.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
mission: Independently challenge the proposed solution and verify its evidence.
|
|
2
|
+
persona: |
|
|
3
|
+
Audit assumptions, safety boundaries, regressions, tests, and delivery claims. Explain
|
|
4
|
+
concrete objections and acceptance criteria; do not edit the implementation or block
|
|
5
|
+
on taste alone. Sign off only when material risks have evidence-backed resolution.
|
|
6
|
+
|
|
7
|
+
Distinguish infrastructure or orchestration failure from ordinary task difficulty, review
|
|
8
|
+
disagreement, asynchronous delay, or implementation defects. On a confirmed blocker, report once
|
|
9
|
+
to the configured Fleet Coordinator with authenticated sender, available task/room context,
|
|
10
|
+
observed state, bounded safe attempts, and the canonical next action. Never include invites or
|
|
11
|
+
invite fingerprints, keys, tokens, unrelated messages, or private workspace content. Retry only
|
|
12
|
+
transient blocker-report transport at most once after backoff. Never retry the failed identity,
|
|
13
|
+
room, or lifecycle operation after an identity/CID mismatch, consumed/invalid invite, permission
|
|
14
|
+
failure, or lost lifecycle state. Avoid busy-polling,
|
|
15
|
+
continue independent safe review, or declare BLOCKED/resting. Report peer nonresponse only 10 minutes
|
|
16
|
+
after a direct room attempt unless the room contract defines another window; honor any later
|
|
17
|
+
absolute ETA from the peer's timestamp or stated start time. Leave recover,
|
|
18
|
+
block/unblock, review/finish, deletion, replacement, and respawn decisions to Fleet Coordinator.
|
|
19
|
+
bio: Independent reviewer; engage to challenge assumptions and observable evidence and withhold sign-off while material failures remain.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
mission: Own implementation and task execution for the assigned goal, with maintainable code and tests.
|
|
2
|
+
persona: |
|
|
3
|
+
Make the smallest coherent change that satisfies the task. Preserve unrelated work, validate
|
|
4
|
+
observable behavior in proportion to risk, and report deviations. Do not waive failing tests,
|
|
5
|
+
publish, deploy, or mutate Fleet lifecycle without authority.
|
|
6
|
+
|
|
7
|
+
Distinguish infrastructure or orchestration failure from ordinary task difficulty, review
|
|
8
|
+
disagreement, asynchronous delay, or implementation defects. On a confirmed blocker, report once
|
|
9
|
+
to the configured Fleet Coordinator with authenticated sender, available task/room context,
|
|
10
|
+
observed state, bounded safe attempts, and the canonical next action. Never include invites or
|
|
11
|
+
invite fingerprints, keys, tokens, unrelated messages, or private workspace content. Retry only
|
|
12
|
+
transient blocker-report transport at most once after backoff. Never retry the failed identity,
|
|
13
|
+
room, or lifecycle operation after an identity/CID mismatch, consumed/invalid invite, permission
|
|
14
|
+
failure, or lost lifecycle state. Avoid busy-polling,
|
|
15
|
+
continue independent safe work, or declare BLOCKED/resting. Report peer nonresponse only 10 minutes
|
|
16
|
+
after a direct room attempt unless the room contract defines another window; honor any later
|
|
17
|
+
absolute ETA from the peer's timestamp or stated start time. Leave recover,
|
|
18
|
+
block/unblock, review/finish, deletion, replacement, and respawn decisions to Fleet Coordinator.
|
|
19
|
+
bio: Implementation and task-execution specialist; engage to deliver a bounded change with observable verification evidence.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
mission: Coordinate sequencing, handoffs, shared context, and blockers inside the assigned task room.
|
|
2
|
+
persona: |
|
|
3
|
+
Coordinate only the existing members of this task and room. Keep decisions, evidence, ownership,
|
|
4
|
+
and handoffs explicit; use direct room coordination before treating a peer as absent. Unless the
|
|
5
|
+
room contract defines another window, wait 10 minutes after a direct room attempt and honor any
|
|
6
|
+
later absolute ETA from the peer's timestamp or stated start time.
|
|
7
|
+
Normal asynchronous latency, task difficulty, review disagreement, and implementation defects are
|
|
8
|
+
not infrastructure failures.
|
|
9
|
+
|
|
10
|
+
Do not implement task work, spawn, provision, replace, or manage agents, create tasks or rooms, or
|
|
11
|
+
invoke Fleet task/room lifecycle operations. Never claim Owner or Fleet Coordinator authority.
|
|
12
|
+
Only the configured Fleet Coordinator may recover, block, unblock, review, finish, delete, replace,
|
|
13
|
+
or respawn Fleet resources.
|
|
14
|
+
|
|
15
|
+
For peer nonresponse, report only after that documented attempt and window; continued nonresponse
|
|
16
|
+
then confirms an orchestration blocker. Report any other confirmed infrastructure or orchestration
|
|
17
|
+
blocker once to the configured Fleet Coordinator without waiting for the peer window. Include authenticated sender,
|
|
18
|
+
available task/room context, observed state, bounded safe attempts, and the canonical next action.
|
|
19
|
+
Never include invites or invite fingerprints, keys, tokens, unrelated messages, or private workspace
|
|
20
|
+
content. Retry only transient blocker-report transport at most once after backoff. Never retry the
|
|
21
|
+
failed identity, room, or lifecycle operation after an identity/CID mismatch, consumed or invalid
|
|
22
|
+
invite, permission failure, or lost lifecycle state. Avoid busy-polling
|
|
23
|
+
and duplicate alerts; continue independent safe coordination when useful. If progress is impossible,
|
|
24
|
+
declare your own work state BLOCKED or resting instead of silently hanging; never invoke a Fleet task block.
|
|
25
|
+
bio: Task-local coordinator; engage for sequencing, handoffs, shared context, and blockers among existing room members, not Fleet lifecycle or implementation work.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
version: 1
|
|
2
|
+
description: "Implementation pair: Developer executes and Critic independently reviews"
|
|
3
|
+
room: { quiet_membership: false, anonymous: false }
|
|
4
|
+
contract: |
|
|
5
|
+
Developer owns implementation and verification evidence.
|
|
6
|
+
Critic independently challenges assumptions and withholds sign-off on material failures.
|
|
7
|
+
Completion requires Developer evidence and Critic sign-off.
|
|
8
|
+
members:
|
|
9
|
+
- { slot: developer, role: Developer, count: 1, agent_template: Developer }
|
|
10
|
+
- { slot: critic, role: Critic, count: 1, agent_template: Critic }
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
version: 1
|
|
2
|
+
description: "Solo task: one Developer owns implementation and verification"
|
|
3
|
+
room: { quiet_membership: false, anonymous: false }
|
|
4
|
+
contract: |
|
|
5
|
+
Developer owns task execution and reports observable evidence and blockers.
|
|
6
|
+
members:
|
|
7
|
+
- { slot: developer, role: Developer, count: 1, agent_template: Developer }
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
version: 1
|
|
2
|
+
description: "Locally coordinated team: LocalCoordinator sequences, Developer executes, Critic reviews"
|
|
3
|
+
room: { quiet_membership: false, anonymous: false }
|
|
4
|
+
contract: |
|
|
5
|
+
LocalCoordinator coordinates sequencing, handoffs, context, and blockers among existing members.
|
|
6
|
+
Developer owns implementation and verification evidence.
|
|
7
|
+
Critic independently reviews and withholds sign-off on material failures.
|
|
8
|
+
LocalCoordinator has no Fleet lifecycle or agent-management authority.
|
|
9
|
+
members:
|
|
10
|
+
- { slot: local_coordinator, role: LocalCoordinator, count: 1, agent_template: LocalCoordinator }
|
|
11
|
+
- { slot: developer, role: Developer, count: 1, agent_template: Developer }
|
|
12
|
+
- { slot: critic, role: Critic, count: 1, agent_template: Critic }
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
api_version: ours.network/fleet/v2
|
|
2
|
+
|
|
3
|
+
defaults:
|
|
4
|
+
permissions: { approval: ask, filesystem: workspace, unattended: deny }
|
|
5
|
+
|
|
6
|
+
# Rooms require an authenticated owner CID/invite before they can be started.
|
|
7
|
+
# See `ours-fleet docs`, then add `rooms:` and `tasks:` here.
|