@ours.network/fleet-claude-code 1.1.0-nightly.1 → 1.1.0-nightly.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ours.network/fleet-claude-code",
|
|
3
|
-
"version": "1.1.0-nightly.
|
|
3
|
+
"version": "1.1.0-nightly.3",
|
|
4
4
|
"description": "Claude Code plugin for ours-fleet — spawn and oversee fleet agents from inside a session. Bundles the spawn-ours-agent and oversee-agents skills; the ours-fleet CLI (@ours.network/fleet) does the actual work.",
|
|
5
5
|
"license": "FSL-1.1-Apache-2.0",
|
|
6
6
|
"author": "Adapt Framework Solutions Ltd",
|
|
@@ -124,9 +124,7 @@ Permanent, unattended (announce it to yourself if you are its coordinator):
|
|
|
124
124
|
|
|
125
125
|
```sh
|
|
126
126
|
ours-fleet spawn <Name> \
|
|
127
|
-
--
|
|
128
|
-
--mission "<one-line mission>" \
|
|
129
|
-
--bio-file /tmp/spawn-bio.md --persona-file /tmp/spawn-persona.md \
|
|
127
|
+
--brain <BrainId> --role <RoleId> \
|
|
130
128
|
--approval allow --filesystem workspace --unattended deny \
|
|
131
129
|
--isolation-file /tmp/spawn-isolation.yaml \
|
|
132
130
|
[--cwd <dir>] [--coordinator <YourRoleName>]
|
|
@@ -136,9 +134,7 @@ Permanent, attended — a human will answer its prompts:
|
|
|
136
134
|
|
|
137
135
|
```sh
|
|
138
136
|
ours-fleet spawn <Name> \
|
|
139
|
-
--
|
|
140
|
-
--mission "<one-line mission>" \
|
|
141
|
-
--bio-file /tmp/spawn-bio.md --persona-file /tmp/spawn-persona.md \
|
|
137
|
+
--brain <BrainId> --role <RoleId> \
|
|
142
138
|
--approval ask --filesystem workspace --unattended wait
|
|
143
139
|
```
|
|
144
140
|
|
|
@@ -146,13 +142,11 @@ Temporary — add `--temp`; it uses the same structured session interface:
|
|
|
146
142
|
|
|
147
143
|
```sh
|
|
148
144
|
ours-fleet spawn --temp <Name> \
|
|
149
|
-
--
|
|
150
|
-
--mission "<one-line mission>" \
|
|
151
|
-
--bio-file /tmp/spawn-bio.md --persona-file /tmp/spawn-persona.md \
|
|
145
|
+
--brain <BrainId> --role <RoleId> \
|
|
152
146
|
--approval allow --filesystem workspace --unattended deny
|
|
153
147
|
```
|
|
154
148
|
|
|
155
|
-
Pass
|
|
149
|
+
Pass Brain, Role, permission, and coordinator choices exactly as approved.
|
|
156
150
|
Do not persist secrets in fleet YAML.
|
|
157
151
|
|
|
158
152
|
## 8. Verify
|