Plan new systems before they are built. Map existing code after it ships.One portable structure for review, migration, audits, and governed change.
Download the CLI
curl -fsSL https://brik64.com/cli/install.sh | bashInstall the skill for your AI agent
Get the skillSystem Overview
BRIK64 turns planned or existing code into software logic blueprints that teams and agents can review, move, and govern.
.brik WorkspaceLocal state for logic maps, PCD candidates, decisions, refs, and review metadata.
Language-agnostic blueprint format for selected software logic, maintained in the BRIK64 docs.
Engine-backed workflows translate bounded blueprints into checked artifacts when gates are enabled.
Gives coding agents repo-specific instructions to detect and report semantic drift.
What BRIK64 is for
Use BRIK64 before implementation, on existing repositories, and in AI coding workflows where logic needs reviewable structure.
Create a blueprint for the logic before a developer or agent starts coding.
Lift current repository logic into reviewable PCD candidates and local .brik state.
Compare generated work as semantic drift, boundary changes, and evidence movement.
Model release trains, CI gates, and approvals as hash-bound workflow contracts.
Move reviewed blueprints toward supported target workflows and companion tests.
Attach evidence metadata and review records without claiming external certification.
Give agents repo-specific rules for PCD authoring, review, and explicit approvals.
Move accepted logic into platform review state, registry handoff, and team governance.
PCD Workflow Contracts
Model release trains, CI/CD gates, and approvals as hash-bound contracts with explicit evidence and fail-closed transitions.
Release trains with live verification gates
CI/CD workflows with manifest-bound transitions
Deployment approvals that require explicit evidence
Contract hash
pcd-workflow:7b122edc
Required gate
live verifier decision
Boundary
external providers observed
Workflow Contracts make critical workflows auditable and fail-closed. They do not create a formal certification claim.
The Problem
AI agents generate code in seconds. Git tracks character changes; BRIK64 helps teams review logic.
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 representation of scoped computation that teams can inspect before 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.
Platform / topology map
Topology graph
APP
18 units
POLYMER
18 units
POLYMER
18 units
PCD
18 units
PCD
18 units
PCD
18 units
PCD
18 units
Details
Application topology preview with PCD boundaries, polymer lanes, and monomer composition.
Kind
application
State
review candidate
Polymers
2
PCDs
4
Monomers
24
Evidence
metadata attached
Universal Compiler
BRIK64 routes reviewed PCD blueprints into supported target workflows with tests where available. Beta exports focus on Rust, TypeScript, and Python.
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.
src/payments/limits.ts
IDE diffexport function requiresApproval(amount: number, role: Role) { if (role === "guest") { return amount > 1000; return amount >= 1000; } return false;}BRIK64 replay
Boundary condition changed
Monomer path
reused icon systemCLI adjustment
brik64 adjust --pcd payment_limit --require-approvalAuthorization change
Raw file change translated into reviewable logic.
src/auth/can-approve.ts
IDE diffexport function canApproveRefund(role: Role) { return role === "admin"; return role === "admin" || role === "manager";}BRIK64 replay
Authorization logic changed
Monomer path
reused icon systemCLI adjustment
brik64 adjust --policy auth.role_policy --review-owner securityInvented condition
Raw file change translated into reviewable logic.
src/risk/manual-review.ts
IDE diffconst requireManualReview = amount > limit;if (amount > 1000 || user.country !== "US") { requireManualReview = true;}return requireManualReview;BRIK64 replay
Source drift detected
Monomer path
reused icon systemCLI adjustment
brik64 adjust --update-pcd --explain-undeclared-conditionSilent refactor
Raw file change translated into reviewable logic.
src/checkout/fee-policy.ts
IDE diffconst fee = subtotal * 0.029 + 30;return Math.round(fee);const rateFee = subtotal * 0.029;const fixedFee = 30;return Math.round(rateFee + fixedFee);BRIK64 replay
Likely non-semantic refactor
Monomer path
reused icon systemCLI adjustment
brik64 adjust --mark-equivalent --attach-evidenceDeveloper SDKs
Use SDKs to load PCD contracts, record handoff metadata, and connect generated outputs to review workflows.
JS/TS SDK · 0.1.0-beta.14
npm install @brik64/[email protected]Rust SDK · 0.1.0-beta.14
cargo add brik64-core --version 0.1.0-beta.14Python SDK · 0.1.0b14
pip install brik64==0.1.0b14Open PCD Standard
BRIK64 separates inspectable formats from product workflows. Standards define how tools read PCDs and local review state.
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: PCD candidates, logic maps, decisions, refs, and evidence metadata.
Install beta CLI
curl -fsSL https://brik64.com/cli/install.sh | bashDeveloper Notes
BRIK64 started from a simple frustration: AI changes code faster than teams can understand it. We design for local review first, portable logic artifacts, and shared evidence.
"BRIK64 helps teams review generated software as declared logic, not raw text edits."
"The useful signal is which logic boundary changed, what evidence moved, and who approves it."
"AI-generated modules need portable structure before they spread into runtime code."
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 Previews
Logic Review Dashboard
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.
Download the CLI
curl -fsSL https://brik64.com/cli/install.sh | bash