@ours.network/fleet-codex 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
|
@@ -105,20 +105,10 @@ Ask only for choices not already supplied:
|
|
|
105
105
|
- **Persona:** local operating contract covering mandate, quality bar,
|
|
106
106
|
boundaries, and escalation. Use the writing-agent-bios skill when available.
|
|
107
107
|
- **Coordinator:** optionally announce readiness to an existing ours identity.
|
|
108
|
-
- **
|
|
109
|
-
legacy `--monitor` consent flag only after a clear yes. This is distinct from
|
|
110
|
-
fleet YAML `monitor.mode: fleet|native`, which chooses the wake owner.
|
|
108
|
+
- **Brain:** select a declared Brain whose Codex runtime and monitor policy match the request.
|
|
111
109
|
|
|
112
|
-
Codex-native
|
|
113
|
-
|
|
114
|
-
- model: launcher default or `--model <id>`
|
|
115
|
-
- native approval: `--permission-mode untrusted|on-request|never`
|
|
116
|
-
- native sandbox: `--sandbox read-only|workspace-write|danger-full-access`
|
|
117
|
-
- launcher: `auto` (preferred), `ours-codex`, or `codex`
|
|
118
|
-
- profile: `--profile <name>`
|
|
119
|
-
- search: `--search`
|
|
120
|
-
- arbitrary config: repeatable `--codex-config key=value`
|
|
121
|
-
- additional writable roots: repeatable `--add-dir <path>`
|
|
110
|
+
Codex-native model, reasoning, sandbox, launcher, profile, search, arbitrary config,
|
|
111
|
+
and additional writable roots are Brain-owned and are never separate spawn flags.
|
|
122
112
|
|
|
123
113
|
## 5. Materialize approved profile text
|
|
124
114
|
|
|
@@ -150,10 +140,8 @@ cannot cross.
|
|
|
150
140
|
Build an argument array from the approved choices. Permanent, unattended:
|
|
151
141
|
|
|
152
142
|
```sh
|
|
153
|
-
ours-fleet spawn Worker --
|
|
154
|
-
--
|
|
155
|
-
--mission "Own the worker implementation" --cwd /absolute/project \
|
|
156
|
-
--bio-file /tmp/worker-bio.md --persona-file /tmp/worker-persona.md \
|
|
143
|
+
ours-fleet spawn Worker --brain CodexWorker --role Worker \
|
|
144
|
+
--cwd /absolute/project \
|
|
157
145
|
--approval allow --filesystem workspace --unattended deny \
|
|
158
146
|
--isolation-file /tmp/worker-isolation.yaml \
|
|
159
147
|
--coordinator Coordinator
|
|
@@ -162,17 +150,12 @@ ours-fleet spawn Worker --harness codex --launcher auto \
|
|
|
162
150
|
Permanent, attended — a human will answer its prompts:
|
|
163
151
|
|
|
164
152
|
```sh
|
|
165
|
-
ours-fleet spawn Worker --
|
|
166
|
-
--
|
|
167
|
-
--mission "Own the worker implementation" --cwd /absolute/project \
|
|
168
|
-
--bio-file /tmp/worker-bio.md --persona-file /tmp/worker-persona.md \
|
|
153
|
+
ours-fleet spawn Worker --brain CodexWorker --role Worker \
|
|
154
|
+
--cwd /absolute/project \
|
|
169
155
|
--approval ask --filesystem workspace --unattended wait
|
|
170
156
|
```
|
|
171
157
|
|
|
172
|
-
Add `--temp` for a temporary role
|
|
173
|
-
Pass the legacy `--monitor` flag only after consent to arm Codex's native
|
|
174
|
-
monitor. It does not select the wake owner; `monitor.mode` does that in YAML.
|
|
175
|
-
Pass model, profile, search, config, and additional directories exactly as
|
|
158
|
+
Add `--temp` for a temporary role. Pass Brain and Role selections exactly as
|
|
176
159
|
approved. Do not persist secrets in `--codex-config` or fleet YAML; use the
|
|
177
160
|
role's `env` configuration for environment-based credentials.
|
|
178
161
|
|