You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
add build command and cookbook for split pipeline workflows
Add `phalus build` CLI command that runs Agent B from an existing CSP
manifest on disk, enabling a split pipeline where Agent A and Agent B
run as separate steps. This allows CSP review, modification (e.g.
injecting custom security constraints), and multi-language builds from
a single specification.
New documentation:
- cookbook.md with recipes for all split pipeline workflows
- Updated cli-reference.md with build command docs
- Updated getting-started.md, pipeline.md, and index.md with
cross-references
Bump version to 0.3.0.
phalus run package.json --similarity-threshold 0.50
128
133
@@ -175,6 +180,66 @@ phalus run-one crates/serde@1.0.193 --isolation process
175
180
176
181
---
177
182
183
+
## build
184
+
185
+
Run Agent B (Builder) from an existing Clean Room Specification Pack without re-running Agent A. This is the second half of the split pipeline workflow:
186
+
187
+
1. Generate a CSP with `--dry-run` (Agent A only)
188
+
2. Optionally review or modify the CSP files on disk
189
+
3. Run `build` to implement from the CSP (Agent B only)
190
+
191
+
```
192
+
phalus build <CSP> [OPTIONS]
193
+
```
194
+
195
+
### Arguments
196
+
197
+
| Argument | Description |
198
+
|----------|-------------|
199
+
|`CSP`| Path to a CSP `manifest.json` file, **or** a directory containing one (e.g. `./phalus-output/lodash/.cleanroom/csp/`) |
200
+
201
+
### Options
202
+
203
+
| Option | Default | Description |
204
+
|--------|---------|-------------|
205
+
|`--license <id>`|`mit`| SPDX license identifier for the generated code |
0 commit comments