@@ -84,6 +84,11 @@ telemetry.
8484 CSV, OPSEC policy, and route report artifacts.
8585- Enterprise outputs for graph analysis, SIEM ingestion, spreadsheet review,
8686 HTML/Markdown reporting, scan diffing, and remediation impact simulation.
87+ - Enterprise bundle generation with manifest, artifact hashes, schema status,
88+ optional route report, and release-ready handoff metadata.
89+ - CI and release quality gates for package metadata, schema contracts, JSON
90+ fixtures, enterprise docs, GitHub workflows, wheel builds, and install smoke
91+ tests.
8792
8893## Install
8994
@@ -152,8 +157,10 @@ Export enterprise artifacts:
152157``` bash
153158relayx export --result result.json --format opengraph --out relayx-opengraph.json
154159relayx export --result result.json --format jsonl --out relayx-events.jsonl
160+ relayx bundle --result result.json --out-dir relayx-bundle
155161relayx diff old-result.json new-result.json --format json --out relayx-diff.json
156162relayx simulate-fixes result.json --control smb_signing --format json
163+ relayx quality-gate --project-root .
157164```
158165
159166Validate schema and evidence contracts:
@@ -186,8 +193,10 @@ relayx lab-profile Generate a calibration profile draft from corpuses
186193relayx validate Run guarded active validation for one path
187194relayx profiles List bundled RelayX profiles
188195relayx export Export graph, JSONL, CSV, report, or diagram artifacts
196+ relayx bundle Write a validated enterprise handoff bundle
189197relayx diff Compare two RelayX result files
190198relayx simulate-fixes Simulate remediation impact on relay paths
199+ relayx quality-gate Run local CI and release quality gates
191200relayx schema List or validate schema and evidence contracts
192201relayx opsec List or inspect OPSEC policies
193202relayx modules List execution module manifests
@@ -227,6 +236,10 @@ Markdown, Mermaid, and enterprise export payloads are kept machine-clean.
227236- ` jsonl ` : one event per line for SIEM and blue-team pipelines.
228237- ` opengraph ` : custom BloodHound/OpenGraph-style graph with RelayX node and
229238 edge kinds.
239+ - ` bundle-manifest ` : validated enterprise bundle manifest with hashes and
240+ schema status.
241+ - ` quality-gate ` : CI and release gate report for package, fixture, docs, and
242+ workflow checks.
230243
231244## Schema Contracts
232245
@@ -240,7 +253,7 @@ relayx schema validate --kind module-manifest fixtures/execution_modules
240253
241254Supported kinds include ` result ` , ` evidence ` , ` lab-profile ` , ` lab-corpus ` ,
242255` execution-record ` , ` module-manifest ` , ` opsec-policy ` , ` route-report ` ,
243- ` opengraph ` , ` jsonl ` , and ` csv ` .
256+ ` bundle-manifest ` , ` quality-gate ` , ` opengraph ` , ` jsonl ` , and ` csv ` .
244257Validation reports explain invalid fields by path and return exit code ` 2 ` when
245258an artifact does not satisfy the selected contract.
246259
0 commit comments