AI can generate code faster than teams can review it. BRIK64 CLI adds a local logic layer to your repository with .brik workspace state, logic blueprints, and PCD candidates.
Download the CLI
curl -fsSL https://brik64.com/cli/install.sh | bashInstall the skill for your AI agent
Get the skill$ brik64 --version ╔═[ BRIK64 SYSTEM ]════════════════════════════════════╗ ██████╗ ██████╗ ██╗██╗ ██╗ ██████╗ ██╗ ██╗ ██╔══██╗██╔══██╗ ██║██║ ██╔╝██╔════╝ ██║ ██║ ██████╔╝██████╔╝ ██║█████╔╝ ███████╗ ███████║ ██╔══██╗██╔══██╗ ██║██╔═██╗ ██╔═══██╗╚════██║ ██████╔╝██║ ██║ ██║██║ ██╗╚██████╔╝ ██║ ╚═════╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ░░░░░░ ░░ ░░ ░░ ░░ ░░ ░░░░░░ ░░ > SOFTWARE LOGIC COMPILER > MAKE SOFTWARE REVIEWABLE AGAIN ╚══════════════════════════════════════════════════════╝ BRIK64 CLI 0.1.0-beta.6 command: brik64 compatibility alias: brik Install: curl -fsSL https://brik64.com/cli/install.sh | bash $ curl -fsSL https://brik64.com/cli/install.sh | bash product: BRIK64 CLI version: 0.1.0-beta.6 smoked: darwin-arm64 smoked: linux-x64 Ubuntu 24.04.4 ECO1 $ brik64 --version manifest: brik64-cli-0.1.0-beta.6-release-manifest.json release tag: v0.1.0-beta.6 download: counted Cloud Run route with GitHub Release mirror windows-x64: blocked pending executable smoke $ brik64 help commands: --version, help, doctor scope: beta local CLI assurance claim: not made
System Overview
BRIK64 helps teams inspect software logic, keep local review state in .brik, and move selected work into PCD blueprints that can be reviewed, reused, or routed into supported workflows.
.brik WorkspaceLocal project state beside your codebase for logic maps, PCD candidates, decisions, refs, and review metadata.
Language-agnostic blueprint format for selected software logic. Current public reference material is maintained in the BRIK64 docs.
Engine-backed compilation workflows can translate bounded blueprints into checked target artifacts when the relevant gates and harnesses are enabled.
Gives coding agents repo-specific instructions for detecting, reporting, and escalating semantic drift before it becomes an approved change.
CLI + Platform
Start with the CLI in your local repository. Use it to initialize .brik, inspect logic changes, and generate PCD candidates. When your team needs shared review state, topology context, and registry workflows, request access to the closed beta platform.
Step 1
Install the brik64 beta CLI first, then initialize a local .brik workspace from the same shell where repository work happens. The legacy brik name is a compatibility alias.
beta install
curl -fsSL https://brik64.com/cli/install.sh | bashStep 2
Approved beta teams can move reviewed PCD state into a shared workspace for topology review, evidence lanes, and registry handoff.
Request closed beta accessProject topology and selected PCD context
Review metadata attached to accepted work
Registry handoff for approved beta teams
The Problem
AI agents generate code in seconds, but Git only tracks character changes. The modern bottleneck is reviewing and trusting logic, not writing code.
Git (Syntactic)
37 files changed 812 insertions(+) 406 deletions(-)
BRIK64 (Semantic)
4 logic units changed 2 authorization rules affected 1 boundary condition shifted 1 evidence pack outdated
The Architecture
BRIK64 introduces the Logic Blueprint—a declarative, syntax-free representation of scoped computation (PCD circuits) that you can inspect before emitting or reviewing target code.
Review components, interfaces, and variables as a clean schematic, isolated from generated syntax noise.
Review whether the declared blueprint stays within expected bounds such as role checks and transaction limits, then attach metadata to the reviewed scope.
Use supported local and hosted workflows to emit target artifacts for bounded logic islands without claiming whole-application correctness.
"Implement a billing transfer limited to $500 max for guest roles..."
{
"circuit": "billing_transfer",
"constraints": {
"guest": "amount <= 500"
},
"closed": true,
"evidence_hash": "sha256:7f4d2c..."
}Universal Compiler
The BRIK64 CLI is designed to take a reviewed PCD blueprint and route it into supported target workflows with companion test scaffolding where available. The first beta export paths focus on Rust, TypeScript, and Python. The broader target matrix describes the compiler surface as each path becomes available.
01
PCD blueprint
02
Target code
03
Tests included
compiler target matrix
3 beta exports now · 15 target paths
beta export
target code + tests
beta export
target code + tests
beta export
target code + tests
planned
export path planned
planned
export path planned
planned
export path planned
planned
export path planned
planned
export path planned
planned
export path planned
planned
export path planned
planned
export path planned
planned
export path planned
planned
intermediate target
planned
export path planned
planned
near-hardware target planned
Logic diff in action
Four real-world examples of semantic logic reports when an AI agent modifies code.
Boundary change
Raw file change translated into reviewable logic.
Git changed
- if amount > 1000: + if amount >= 1000:
BRIK64 found
Boundary condition changed
Authorization change
Raw file change translated into reviewable logic.
Git changed
- role === "admin" + role === "admin" || role === "manager"
BRIK64 found
Authorization logic changed
Invented condition
Raw file change translated into reviewable logic.
Git changed
+ if (amount > 1000 || user.country !== "US") {
+ requireManualReview = true;
+ }BRIK64 found
Source drift detected
Silent refactor
Raw file change translated into reviewable logic.
Git changed
23 files changed 812 insertions 406 deletions
BRIK64 found
Likely non-semantic refactor
Developer SDKs
Use the SDK line to load PCD contracts, record handoff metadata, and connect generated outputs to review workflows. JS/TS is the beta6 public SDK package; Rust and Python are published beta6 SDK install paths.
JS/TS SDK · @brik64/[email protected]
import { eva, mc } from "@brik64/core";
const fee = mc.add8(40, 2);
const half = mc.div8(84, 2);
const reviewPipeline = eva.seq(
() => fee,
(value) => mc.add8(value, half.quotient)
);
console.log(reviewPipeline());JS/TS SDK · public beta6
npm install @brik64/[email protected]Rust SDK · public beta6
cargo add brik64-core --version 0.1.0-beta.6.1Python SDK · public beta6
pip install brik64==0.1.0b6.post1Open PCD Standard
BRIK64 separates open, inspectable formats from product workflows. The standards define how PCD blueprints, local review state, and evidence metadata should be represented so tools can read and compare software logic consistently.
PCD Protocol 1.0 — blueprint format
.brik repository layout — local review state
Evidence Pack 1.0 — portable metadata format
Conformance notes — compatibility expectations
Hosted review workflows — product surface
Logic Repository Layer
If .git tracks version history for files, .brik carries local review state. It stores PCD candidates, logic maps, decisions, refs, and evidence metadata beside the codebase.
The layout gives IDEs, agents, and CI pipelines a predictable place to read and compare logic structure using documented local metadata.
Install beta CLI
curl -fsSL https://brik64.com/cli/install.sh | bashDeveloper Notes
BRIK64 started from a simple frustration: AI can generate code faster than teams can understand what changed. These notes capture the product shape we are building toward: local review first, portable logic artifacts, and a closed beta platform for teams that need shared evidence.
"BRIK64 is built for teams that need to review generated software as declared logic, not as a wall of raw text edits."
"The useful signal is not how many files changed. It is which logic boundary changed, what evidence moved, and who needs to approve it."
"AI-generated modules need a portable structure reviewers can inspect before the work spreads into runtime code and release artifacts."
Compliance & Governance
Brik64 extracts structured logic blueprints that help teams prepare evidence for regulated software review.





The BRIK64 Platform is the missing layer between AI-generated code and production systems your team can actually trust, audit, and govern.
Inspect every blueprint change and policy breach before it ships — side by side, in one view.
Prepare bounded evidence packs and review metadata for governance workflows.
Publish governed artifacts with explicit trust posture. No more guessing what shipped.
Enforce review gates and approval flows across your team — without rewriting your pipeline.
Platform Preview
Topology Map Preview
Platform / Topology Map
Topology Graph
APP
checkout_platform.system
18 units
POLYMER
payment_core.polymer
18 units
POLYMER
contract_review.polymer
18 units
PCD
payment_fee_policy.pcd
18 units
PCD
auth_session_window.pcd
18 units
PCD
invoice_tax_boundary.pcd
18 units
PCD
webhook_delivery_contract.pcd
18 units
Closed Beta · Spots Limited
First teams get direct onboarding with the BRIK64 engineering team and early access to the Review Dashboard, Registry, and Certification workflow — months before public launch.
Registration
Follow @brik64com for launch updates.
Install the brik64 beta CLI to initialize .brik, inspect local logic changes, and generate PCD candidates. macOS Apple Silicon and Linux x64 are smoked now; Windows remains blocked until real executable smoke evidence exists.
Download the CLI
curl -fsSL https://brik64.com/cli/install.sh | bashRequest platform access
Join the closed beta