@@ -262,29 +262,37 @@ bash examples/pcs_qc_release/scripts/generate_release_candidate.sh
262262Produces ` trace.json ` , ` runtime_receipt.json ` , ` trace_certificate.json ` , pending/certified bundles,
263263` handoff_to_certifyedge.json ` , ` handoff_to_pf.json ` , ` labtrust_release_fragment.json ` , and ` manifest.json ` .
264264
265- ** Phase 2 protocol producer (LabTrust-owned, not mirror-only ):**
265+ ** Phase 2 protocol producer (stable CLI — one command per artifact ):**
266266
267267``` bash
268- labtrust emit-handoff --kind runtime- to-certificate \
268+ labtrust emit-handoff- to-certifyedge \
269269 --trace examples/pcs_qc_release/release/trace.json \
270- --receipt examples/pcs_qc_release/release/runtime_receipt.json \
270+ --runtime-receipt examples/pcs_qc_release/release/runtime_receipt.json \
271+ --property-id hospital_lab.qc_release \
271272 --out examples/pcs_qc_release/release/handoff_to_certifyedge.json
272273
273- labtrust emit-handoff --kind bundle- to-verifier \
274+ labtrust emit-handoff- to-pf \
274275 --bundle examples/pcs_qc_release/release/science_claim_bundle.certified.json \
275276 --out examples/pcs_qc_release/release/handoff_to_pf.json
276277
277278labtrust emit-release-fragment \
278- --release-dir examples/pcs_qc_release/release
279+ --release-dir examples/pcs_qc_release/release \
280+ --out examples/pcs_qc_release/release/labtrust_release_fragment.json
279281
280- labtrust verify-release-fixtures \
282+ labtrust verify-release-protocol \
281283 --release-dir examples/pcs_qc_release/release \
282- --pcs-core ../pcs-core/examples/labtrust-release
284+ --pcs-core ../pcs-core
283285
284- labtrust regenerate-release-chain \
285- --out examples/pcs_qc_release/release \
286+ labtrust regenerate-release-protocol \
287+ --pcs-core ../pcs-core \
286288 --certifyedge-bin certifyedge \
287- --pcs-core ../pcs-core/examples/labtrust-release
289+ --out examples/pcs_qc_release/release
290+ ```
291+
292+ One-shot shell wrapper (same as above, sets ` PCS_DETERMINISTIC=1 ` ):
293+
294+ ``` bash
295+ bash examples/pcs_qc_release/scripts/generate_release_protocol.sh
288296```
289297
290298After pcs-core updates, re-align committed ` release/ ` from canonical fixtures:
0 commit comments