Getting Started
Layer-7 Docs Onboarding
Corevexa does not generate AI. It governs AI. This page gives you the minimum setup to make any unified AI system structurally governable: evaluate → score → authorize → ledger → enforce.
Minimum Requirements
To integrate Corevexa governance into any system, you need four primitives: a policy set, a risk model, an authority map, and a ledger sink. Everything else is a deployment preference.
Governance inputs
- Policy: rules that can be enforced as gates
- Risk: thresholds + scoring logic per action class
- Authority: who can approve/override/escalate
- Ledger: an auditable decision record store
Execution surfaces
- Gateway: allow/deny enforcement point
- Orchestrator: routes actions to evaluation
- Panels: executive/creative approval surfaces
- Audit: reporting + reconstruction pathways
The Core Loop (Non-Negotiable)
Layer-7 governance is not a policy document. It is an execution pathway requirement. The loop below is the minimum viable governance circuit.
1) Evaluate
Normalize a proposed action into a decision object: intent, scope, target, impact, metadata.
2) Score
Apply risk scoring based on context, thresholds, action class, and environment constraints.
3) Authorize
Determine required approvals (role, level, multi-sig) and route to the correct authority path.
4) Ledger
Write decision inputs, scoring outcome, authority signatures, and final result to an audit trail.
5) Enforce
Allow/deny execution at a gateway based on the decision object and signature state.
6) Review
Support post-execution review, incident investigation, and governance drift detection.
First Integration Steps
This is the shortest path to a “governed execution” proof without overbuilding.
Step A — Stand up the decision object
- Define action classes (read/write/transfer/deploy/notify)
- Normalize inputs into a single decision schema
- Attach context: actor, environment, target, scope
Step B — Establish thresholds + approval routing
- Set risk bands (low/medium/high/critical)
- Map each band to required authority
- Define override rules (explicit + logged)