Review AI-generated code as logic, not just diffs.

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 | bash

Install the skill for your AI agent

Get the skill

System Overview

What is BRIK64?

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.

The .brik Workspace

Local project state beside your codebase for logic maps, PCD candidates, decisions, refs, and review metadata.

PCD Open Standard

Language-agnostic blueprint format for selected software logic. Current public reference material is maintained in the BRIK64 docs.

Logic Compilation

Engine-backed compilation workflows can translate bounded blueprints into checked target artifacts when the relevant gates and harnesses are enabled.

Agent Governance

Gives coding agents repo-specific instructions for detecting, reporting, and escalating semantic drift before it becomes an approved change.

CLI + Platform

The CLI gets BRIK64 into the repo.
The platform brings review state to the team.

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 CLI beta

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 | bash

Step 2

Move into the platform

Approved beta teams can move reviewed PCD state into a shared workspace for topology review, evidence lanes, and registry handoff.

Request closed beta access

Project topology and selected PCD context

Review metadata attached to accepted work

Registry handoff for approved beta teams

The Problem

AI coding made software faster to produce.
It did not make software easier to govern.

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

Logic blueprints are the missing review layer in AI coding.

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.

1. Inspect the Blueprint

Review components, interfaces, and variables as a clean schematic, isolated from generated syntax noise.

2. Check the Structure

Review whether the declared blueprint stays within expected bounds such as role checks and transaction limits, then attach metadata to the reviewed scope.

3. Route Across Targets

Use supported local and hosted workflows to emit target artifacts for bounded logic islands without claiming whole-application correctness.

Input Prompt

"Implement a billing transfer limited to $500 max for guest roles..."

INTERMEDIATE LAYER
Logic Blueprint (PCD)
{
  "circuit": "billing_transfer",
  "constraints": {
    "guest": "amount <= 500"
  },
  "closed": true,
  "evidence_hash": "sha256:7f4d2c..."
}
Emitted Targets
Rust
TypeScript
Python

Universal Compiler

Route reviewed blueprints into supported target workflows.

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

Rust

target code + tests

beta export

TypeScript

target code + tests

beta export

Python

target code + tests

planned

JavaScript

export path planned

planned

C

export path planned

planned

C++

export path planned

planned

Go

export path planned

planned

COBOL

export path planned

planned

PHP

export path planned

planned

Java

export path planned

planned

Swift

export path planned

planned

WebAssembly

export path planned

BIR

planned

BIR

intermediate target

planned

x86-64

export path planned

BIR

planned

Assembly

near-hardware target planned

beta target export
/src/generated
/tests/generated

Logic diff in action

Stop reviewing raw diffs. Review logic.

Four real-world examples of semantic logic reports when an AI agent modifies code.

Boundary change

Raw file change translated into reviewable logic.

Logic diff

Git changed

- if amount > 1000:
+ if amount >= 1000:

BRIK64 found

Boundary condition changed

Previousamount > 1000
Newamount >= 1000
ImpactTransactions equal to 1000 changed
StatusEvidence invalidated. Approval required

Authorization change

Raw file change translated into reviewable logic.

Logic diff

Git changed

- role === "admin"
+ role === "admin" || role === "manager"

BRIK64 found

Authorization logic changed

New accessmanager
Affectedauth.role_policy
ReviewAuthorization rule expanded
StatusApproval required

Invented condition

Raw file change translated into reviewable logic.

Logic diff

Git changed

+ if (amount > 1000 || user.country !== "US") {
+   requireManualReview = true;
+ }

BRIK64 found

Source drift detected

Undeclareduser.country !== "US"
ScopeLogic not declared in PCD
ActionUpdate PCD or request approval
StatusReview blocked

Silent refactor

Raw file change translated into reviewable logic.

Logic diff

Git changed

23 files changed
812 insertions
406 deletions

BRIK64 found

Likely non-semantic refactor

Logic units0 changed
EvidenceImplementation-equivalent candidate
ReviewNo tracked policy drift
StatusLow-risk candidate

Developer SDKs

Attach BRIK64 review metadata from your own tools.

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.1

Python SDK · public beta6

$pip install brik64==0.1.0b6.post1

Open PCD Standard

Open specs. Managed product workflows.

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

BRIK64 Standards
PCD Protocol 1.0
.brik/ layout spec
Evidence Pack 1.0
Conformance tests
SDK compatibility notes
Product workflowsProduct
CLI distribution
SDK package access
Shared review workflows
Evidence handoff flows
REPO LAYOUTLayout Spec
my-app/
├── .git/ # File version history
├── .brik/ # Logic version history
├── pcds/ # Declarative logic (PCDs)
├── evidence/ # Evidence packs
└── state.json # Tracked policy states
├── AGENTS.md # Optional user-approved agent block
└── brik64.toml # Logic config

Logic Repository Layer

.brik — Local review state for software logic.

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 | bash

Developer Notes

Notes from the builders we design for

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.

@cjprez

@cjprez

BRIK64 FOUNDER

"BRIK64 is built for teams that need to review generated software as declared logic, not as a wall of raw text edits."

Developer note
E

review note

REVIEW

"The useful signal is not how many files changed. It is which logic boundary changed, what evidence moved, and who needs to approve it."

Developer note
R

@rust_fanatic

AI CODE

"AI-generated modules need a portable structure reviewers can inspect before the work spreads into runtime code and release artifacts."

Developer note
A

@agentic_dev

AGENTS

"Coding agents should expose the logic they changed, keep install steps explicit, and avoid silent writes into the team's agent files."

Developer note

Compliance & Governance

Audit-ready PCD evidence for regulated AI software

Brik64 extracts structured logic blueprints that help teams prepare evidence for regulated software review.

EU AI Act logo
EU AI Act
Produces PCD evidence that can support AI governance review and audit preparation.
Status: Review-readyPCD EVIDENCE
National Institute of Standards and Technology logo
NIST AI RMF
Maps logical evidence to risk-management categories for reviewer inspection.
Status: Review-readyPCD EVIDENCE
HIPAA logo
HIPAA
Keeps selected workflow boundaries and data-handling assumptions visible for review.
Status: Review-readyPCD EVIDENCE
SOC 2 logo
SOC 2
Attaches logic change histories and hashes to support audit-oriented workflows.
Status: Review-readyPCD EVIDENCE
GDPR EU lock emblem
GDPR
Documents automated decision-rule boundaries for transparency-oriented review.
Status: Review-readyPCD EVIDENCE
ISO 42001 badge
ISO 42001
Delivers declarative PCD blueprints that can support AI management-system documentation.
Status: Review-readyPCD EVIDENCE
Platform·Closed beta — opening soon

Stop shipping software you can't inspect.

The BRIK64 Platform is the missing layer between AI-generated code and production systems your team can actually trust, audit, and govern.

Logic Review Dashboard

Inspect every blueprint change and policy breach before it ships — side by side, in one view.

Evidence Review

Prepare bounded evidence packs and review metadata for governance workflows.

Official Registry

Publish governed artifacts with explicit trust posture. No more guessing what shipped.

Team Governance

Enforce review gates and approval flows across your team — without rewriting your pipeline.

Platform Preview

Topology Map Preview

Platform / Topology Map

Topology Graph

APPPOLYMERPCDMONOMER

APP

checkout_platform.system

18 units

A
1260

POLYMER

payment_core.polymer

18 units

P
1800

POLYMER

contract_review.polymer

18 units

P
8100

PCD

payment_fee_policy.pcd

18 units

P
1800

PCD

auth_session_window.pcd

18 units

P
1800

PCD

invoice_tax_boundary.pcd

18 units

P
1080

PCD

webhook_delivery_contract.pcd

18 units

P
6120
MC00ADD8
MC07CLAMP
MC08AND8
MC24IF
MC48HASH
MC52VERIFY
MC16LOAD
MC20PEEK
MC24IF
MC48HASH
MC56TIME
MC60NET
MC07CLAMP
MC24IF
MC43LEN
MC47MATCH
MC48HASH
MX120JSNNC
MC51SIGN
MC52VERIFY
MX80TCPCN
MX86DNSRS
MX87HTTPR
MX104FSSTT
+-
FitExpand selectedReset

Closed Beta · Spots Limited

Be the first team to govern AI-generated code.

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.

  • Direct engineering team onboarding
  • Shape the roadmap from day one
  • Discounted access locked at beta pricing

Registration

Follow @brik64com for launch updates.

Start reviewing generated code as structured logic.

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 | bash

Request platform access

Join the closed beta