@ours.network/fleet 0.19.0-nightly.5 → 0.19.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/dist/build-info.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.19.0-nightly.
|
|
3
|
-
"buildId": "
|
|
4
|
-
"commit": "
|
|
2
|
+
"version": "0.19.0-nightly.7",
|
|
3
|
+
"buildId": "be902ca246a6",
|
|
4
|
+
"commit": "8330a24d301bd66b77ff28d26b7532750fdf4bdb",
|
|
5
5
|
"dirty": true,
|
|
6
|
-
"builtAt": "2026-08-
|
|
6
|
+
"builtAt": "2026-08-23T22:24:01.189Z",
|
|
7
7
|
"capabilities": [
|
|
8
8
|
"monitor.interrupt.after_tool"
|
|
9
9
|
]
|
package/dist/rooms-tasks/cli.js
CHANGED
|
@@ -204,7 +204,7 @@ export function registerTaskCommands(parent, cOpt) {
|
|
|
204
204
|
templateRef = { name: snap.name, version: snap.version, content_hash: snap.content_hash };
|
|
205
205
|
}
|
|
206
206
|
else if (opts.room !== false) {
|
|
207
|
-
const defaultTpl = cfg.tasks?.default_room_template ?? cfg.rooms?.defaults?.template ?? '
|
|
207
|
+
const defaultTpl = cfg.tasks?.default_room_template ?? cfg.rooms?.defaults?.template ?? 'team';
|
|
208
208
|
const t = resolveTemplate(defaultTpl, allTemplates(cfg));
|
|
209
209
|
if (t) {
|
|
210
210
|
const snap = snapshotTemplate(t);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createHash } from 'node:crypto';
|
|
2
|
-
const
|
|
3
|
-
name: '
|
|
2
|
+
const TEAM = {
|
|
3
|
+
name: 'team',
|
|
4
4
|
version: 1,
|
|
5
5
|
builtin: true,
|
|
6
6
|
description: 'Phased task pipeline: Architect specifies, Developer implements, Tester verifies',
|
|
@@ -17,8 +17,8 @@ const BRIEFING = {
|
|
|
17
17
|
{ slot: 'tester', role: 'Tester', count: 1, role_ref: 'Tester' },
|
|
18
18
|
],
|
|
19
19
|
};
|
|
20
|
-
const
|
|
21
|
-
name: '
|
|
20
|
+
const PAIR = {
|
|
21
|
+
name: 'pair',
|
|
22
22
|
version: 1,
|
|
23
23
|
builtin: true,
|
|
24
24
|
description: 'Deliberation pair: Secretary writes code, Critic reviews — every decision deliberated together',
|
|
@@ -34,7 +34,7 @@ const CONSILIUM = {
|
|
|
34
34
|
{ slot: 'critic', role: 'Critic', count: 1, role_ref: 'Critic' },
|
|
35
35
|
],
|
|
36
36
|
};
|
|
37
|
-
export const BUILTIN_TEMPLATES = [
|
|
37
|
+
export const BUILTIN_TEMPLATES = [TEAM, PAIR];
|
|
38
38
|
export function hashTemplate(t) {
|
|
39
39
|
const canonical = JSON.stringify({
|
|
40
40
|
name: t.name, version: t.version, description: t.description,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ours.network/fleet",
|
|
3
|
-
"version": "0.19.0-nightly.
|
|
3
|
+
"version": "0.19.0-nightly.7",
|
|
4
4
|
"description": "Harness-agnostic fleet of persistent, identity-bound AI agents. Declarative fleet.yaml, tmux or ACP sessions, supervision, and ours.network messaging.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "FSL-1.1-Apache-2.0",
|