@ours.network/fleet 1.1.0-nightly.4 → 1.1.0-nightly.5
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 +4 -4
- package/dist/harness/codex.js +6 -2
- package/package.json +1 -1
package/dist/build-info.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.1.0-nightly.
|
|
3
|
-
"buildId": "
|
|
4
|
-
"commit": "
|
|
2
|
+
"version": "1.1.0-nightly.5",
|
|
3
|
+
"buildId": "7a0d408032b9",
|
|
4
|
+
"commit": "f5fd6cbade0e4f19e4c65d76b4ac170388a13665",
|
|
5
5
|
"dirty": true,
|
|
6
|
-
"builtAt": "2026-08-
|
|
6
|
+
"builtAt": "2026-08-30T19:55:15.112Z",
|
|
7
7
|
"capabilities": [
|
|
8
8
|
"monitor.interrupt.after_tool"
|
|
9
9
|
]
|
package/dist/harness/codex.js
CHANGED
|
@@ -274,8 +274,12 @@ export function makeCodexAdapter(exec = realExec, transport) {
|
|
|
274
274
|
? { adapterState: { permissionMetadataSource } } : {}),
|
|
275
275
|
};
|
|
276
276
|
},
|
|
277
|
-
sessionConfigSelections: role =>
|
|
278
|
-
|
|
277
|
+
sessionConfigSelections: role => [
|
|
278
|
+
...(typeof role.model === 'string'
|
|
279
|
+
? [{ configId: 'model', value: role.model }] : []),
|
|
280
|
+
...(typeof role.effort === 'string'
|
|
281
|
+
? [{ configId: 'reasoning_effort', value: role.effort }] : []),
|
|
282
|
+
],
|
|
279
283
|
permissionModeId: role => acpAgentMode(role),
|
|
280
284
|
mcpServers: () => undefined,
|
|
281
285
|
sessionMeta: () => undefined,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ours.network/fleet",
|
|
3
|
-
"version": "1.1.0-nightly.
|
|
3
|
+
"version": "1.1.0-nightly.5",
|
|
4
4
|
"description": "Harness-agnostic fleet of persistent, identity-bound AI agents. Declarative fleet.yaml, ACP sessions, supervision, and ours.network messaging.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "FSL-1.1-Apache-2.0",
|