@ours.network/fleet 0.10.0 → 0.10.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/README.md +49 -0
- package/contrib/anthropic-auth-proxy.mjs +85 -0
- package/dist/briefing.js +5 -0
- package/dist/cli.js +63 -4
- package/dist/config-yaml.d.ts +20 -0
- package/dist/config-yaml.js +76 -0
- package/dist/config.d.ts +25 -1
- package/dist/config.js +115 -9
- package/dist/docs.d.ts +1 -1
- package/dist/docs.js +34 -0
- package/dist/doctor.d.ts +2 -0
- package/dist/doctor.js +42 -4
- package/dist/harness/claude-code.js +11 -0
- package/dist/harness/codex.js +12 -0
- package/dist/harness/types.d.ts +2 -0
- package/dist/model-recovery.d.ts +42 -0
- package/dist/model-recovery.js +120 -0
- package/dist/monitor.d.ts +14 -3
- package/dist/monitor.js +20 -10
- package/dist/permissions.d.ts +3 -1
- package/dist/permissions.js +80 -6
- package/dist/resolved-plan.d.ts +5 -0
- package/dist/resolved-plan.js +66 -0
- package/dist/runner.d.ts +8 -0
- package/dist/runner.js +117 -7
- package/dist/spawn.d.ts +19 -1
- package/dist/spawn.js +91 -3
- package/dist/worklog.d.ts +25 -0
- package/dist/worklog.js +99 -0
- package/package.json +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ours.network/fleet",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
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",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"main": "dist/index.js",
|
|
15
15
|
"files": [
|
|
16
16
|
"dist",
|
|
17
|
+
"contrib",
|
|
17
18
|
"README.md",
|
|
18
19
|
"LICENSE"
|
|
19
20
|
],
|