Policy before execution
Define which providers and capabilities are allowed before execution can proceed.
Governed execution infrastructure
RBEK controls how software and AI-driven workflows reach providers, execute capabilities, enforce policy and produce verifiable execution evidence.
curl -fsSL https://releases.rbekplatform.com/cli/stable/install.sh | bash
Why RBEK
AI agents and software workflows can decide what they want to do. RBEK governs whether and how those actions are allowed to reach real systems.
Define which providers and capabilities are allowed before execution can proceed.
Route execution through explicit, registered provider boundaries instead of uncontrolled calls.
Generate plans, gates, execution evidence, receipts and certification artifacts around execution.
How it works
Describe the capability to execute and the provider responsible for that step.
RBEK checks whether the requested provider and capability are explicitly allowed.
RBEK builds an execution plan, performs a dry run and evaluates the execution gate.
Approved execution reaches registered provider boundaries instead of uncontrolled direct calls.
Execution produces verifiable artifacts including evidence, receipt and certification.
Install RBEK, create a project, execute through an explicit governed path, then inspect the evidence produced around that execution.
Install the current stable CLI directly from the official release channel.
curl -fsSL https://releases.rbekplatform.com/cli/stable/install.sh | bash
Generate a local project containing a provider, workflow, policy and adapter SDK.
rbek-cli --output json quickstart customer-project --target ./my-rbek-project
Execution is explicit. RBEK plans the execution, evaluates the gate, executes the provider and produces a verifiable receipt.
rbek-cli --output json quickstart customer-project --target ./executed-rbek-project --execute --acknowledgement I_ACKNOWLEDGE_RBEK_LOCAL_CONTROLLED_EXECUTION --message "Hello from RBEK"
Review the artifacts produced around the governed execution.
ls -la executed-rbek-project/.rbek/evidence/
execution-plan.json
dry-run.json
execution-gate.json
execution.json
execution-receipt.json
promoted-execution-certification.json
Execution evidence
RBEK produces execution artifacts around the complete governed execution lifecycle.
execution-plan.json
dry-run.json
execution-gate.json
execution.json
execution-receipt.json
promoted-execution-certification.json
Developer first
RBEK exposes the execution lifecycle directly through the CLI so developers can inspect providers, workflow rules, policy decisions and execution evidence without depending on an opaque control plane.
Execution requires an intentional command and governed provider path.
The public quickstart demonstrates controlled local execution without requiring external APIs.
Workflow, policy, plans, receipts and evidence remain visible to the developer.
Start building
Install the current stable RBEK CLI and run the first governed execution locally.
Real AI agent · Real Internet API
A real OpenAI agent requests an external action. RBEK evaluates the policy, executes a real third-party HTTPS API call through a governed boundary, and produces a verifiable receipt and certification.
See the governed execution →Developer proof
No API key is required for the default proof. See RBEK deny an unauthorized action, allow an authorized action and produce inspectable execution evidence.
✓ Deterministic Execution VerifiedAgent requests unauthorized action
↓
DENY
↓
External execution = NO
Agent requests authorized action
↓
ALLOW
↓
Governed path = PASS
Gate = AUTHORIZED
↓
Evidence
Zero-key proof
curl -fsSL https://releases.rbekplatform.com/cli/stable/install.sh | bash && \
curl -fsSL https://raw.githubusercontent.com/rbekplatform/rbek/main/examples/real-governed-agent/demo.sh | bash
Model inference: not required · Network execution performed: NO · RBEK policy enforcement: REAL · RBEK evidence: REAL
Live AI + Internet
OpenAI agent
↓
weather.current
↓
RBEK policy admission
↓
controlled external execution
↓
Open-Meteo
↓
receipt + certification
The live example uses real model inference and a real Open-Meteo external action through the RBEK governed execution boundary.
Public GitHub Actions installs the public CLI, runs the offline proof twice and verifies deterministic evidence identity.