// FEATURE LAB

Every Feature.
Explained in Detail.

Axiom Actualities ships with 14 sovereign features and 35+ CLI commands. This is the deep dive. Every capability, every command, every detail.

Start the Deep Dive
scroll to explore
14
Sovereign Features
35+
CLI Commands
15,540
Test Assertions
0
Cloud Calls

Input Anything. Extract Everything.

Four input methods. One sovereign output. Every byte processed on your device.

Feature 01

Camera Extraction

Point your camera at a textbook, whiteboard, laptop screen, or printed paper. Axiom's OCR engine extracts the text and converts it to clean, editable code or formatted LaTeX. Supports photographing from any angle with automatic perspective correction.

OCR LaTeX Code Gallery
Available in: All Editions
// Photo captured from whiteboard
$ Extract > Camera > LaTeX

Processing image...
OCR complete: 23 lines extracted

\int_{0}^{\infty} e^{-x^2} dx = \frac{\sqrt{\pi}}{2}

Saved to: /Axiom/output/capture_001.tex
Sentinel scan: CLEAR
Feature 02

Voice to Code & LaTeX

Speak equations and get formatted LaTeX output (all editions). Describe functions in plain English and get typed source code (Developer+). Powered by the Vosk offline speech engine — no internet connection required. Supports continuous dictation with automatic punctuation.

Vosk Engine Offline 10 Languages
Voice-to-LaTeX: All Editions | Voice-to-Code: Developer+
// Voice input detected
$ Voice > Code > Python

Listening...
"create a function that sorts a list
using merge sort"


Generated: merge_sort.py (24 lines)
def merge_sort(arr):
  if len(arr) <= 1:
    return arr
  mid = len(arr) // 2
  ...
Feature 03

Video Frame Extraction

Load any lecture video or coding tutorial. Axiom captures individual frames, runs OCR on each one, and combines the extracted text into a single clean output. Perfect for pulling code from YouTube tutorials you've downloaded or recorded lectures.

Frame Capture Batch OCR Gallery Import
Available in: All Editions
$ Video > Frame Capture

Selected: lecture_algorithms.mp4
Extracting frames...
Frame 1/8: 14 lines extracted
Frame 2/8: 22 lines extracted
Frame 3/8: 18 lines extracted
...
Complete: 142 lines total
Saved to: /Axiom/output/lecture_full.py
Feature 04

The Blackboard

A full handwriting canvas with touch and stylus support. Write equations by hand on your phone screen, tap Extract, and get formatted LaTeX output. Includes undo, color picker, and stroke width controls. Your handwriting becomes publishable math.

Touch/Stylus OCR LaTeX Output
Available in: All Editions
// Blackboard canvas active
$ Board > Extract

Processing handwriting...
Recognized: mathematical expression

E = mc^{2}
\nabla \times \vec{B} = \mu_0 \vec{J}

LaTeX output ready
Sentinel scan: CLEAR
Feature 05

Lecture Mode

Real-time capture during live lectures. Switch between LaTeX Mode and Code Mode on the fly. Every captured entry is automatically timestamped. Title your sessions, add quick notes, and build a complete timestamped record of any class or meeting.

Real-Time Timestamps LaTeX + Code
Available in: All Editions
// Lecture: Linear Algebra 301
[14:22:05] LaTeX Mode
\vec{v} = \begin{pmatrix} 3 \\ -1 \\ 4 \end{pmatrix}

[14:23:41] Code Mode
v = np.array([3, -1, 4])
norm = np.linalg.norm(v)

[14:25:12] LaTeX Mode
\|v\| = \sqrt{9 + 1 + 16} = \sqrt{26}

Protected Before You Save

Two defense layers working in parallel. Sentinel catches threats. Shadow catches traps. Nothing unsafe reaches your filesystem.

Feature 06

Sentinel Defense

Always-on security scanning that runs at every save point. Detects 12 threat patterns in real-time: SQL injection, XSS, command injection, path traversal, hardcoded secrets, eval/exec abuse, prototype pollution, regex DoS, SSRF, insecure deserialization, LDAP injection, and XML external entity attacks.

12 Threat Patterns Always-On Auto-Block
Available in: All Editions
$ lb save api_handler.py

Sentinel scanning...
THREAT DETECTED: SQL Injection
Line 14: query = "SELECT * FROM users WHERE id=" + user_id

Playbook: Use parameterized queries instead.
Safe pattern: cursor.execute("SELECT * FROM users WHERE id=?", (user_id,))

Save BLOCKED until threat is resolved
Feature 07

Shadow Logic

8-detector predictive trap detection engine. Analyzes your code BEFORE save and catches: infinite loops, unreachable code, recursive functions without base cases, potential deadlocks, off-by-one errors, memory leaks from unclosed resources, null reference chains, and integer overflow risks.

8 Detectors Pre-Save Analysis Predictive
Available in: All Editions
$ lb shadow

Shadow Logic: Scanning edit buffer...

TRAP DETECTED: Infinite Loop
Line 8: while(true) { count++ }
No break condition found

CAUTION: Off-By-One
Line 15: for(i=0; i<=arr.length; i++)
Should be: i < arr.length

Remaining code: CLEAR

The Actualities Terminal

A full sovereign development environment powered by the Logic-Butter CLI. Developer and Founder editions only.

Feature 08

Universal Suture

Cross-language code translation engine. Paste code in any of 10 supported languages, specify your target, and Suture translates the logic — not just syntax. Handles type systems, idioms, and language-specific patterns. Supports Python, JavaScript, TypeScript, Java, Go, Rust, C++, Ruby, Swift, and Kotlin.

10 Languages Logic Translation IR Pipeline
Available in: Developer+
$ lb translate rust

Detected: JavaScript
Parsing to IR...
Generating Rust...

fn binary_search(arr: &[i32], target: i32)
  -> Option<usize> {
  let (mut lo, mut hi) = (0, arr.len());
  while lo < hi {
    let mid = lo + (hi - lo) / 2;
    ...

Translated: 18 lines (JS > Rust)
Feature 09

The Forge

Custom code template system with variable substitution. Ships with 6 built-in scaffolds: Python class, React component, Express API, Rust struct, Java class, and Go handler. Create your own templates with {{placeholder}} syntax. Scaffold entire files in one command.

6 Built-In Custom Templates {{Variables}}
Available in: Developer+
$ lb forge react-component

Template: react-component
Component name? UserProfile
Props? name, avatar, bio

Generated: UserProfile.tsx (32 lines)
interface UserProfileProps {
  name: string;
  avatar: string;
  bio: string;
}
Feature 10

Command Chains

Multi-step automated pipelines. Chain together any sequence of operations: OCR capture, clean, convert, translate, lint, fix, and save — all in one command. Create reusable chains for repetitive workflows. Output from each step pipes into the next.

Pipeline Engine Reusable Auto-Pipe
Available in: Developer+
$ lb chain run photo-to-python

Chain: photo-to-python (5 steps)
Step 1/5: OCR extract... 34 lines
Step 2/5: Clean whitespace... done
Step 3/5: Convert to Python... done
Step 4/5: Shadow scan... CLEAR
Step 5/5: Save... output/algo.py

Chain complete: 5/5 steps passed
Feature 11

Architect

Describe a project in plain English and Architect generates the full file structure with working code. Built-in templates for REST APIs, CLI tools, React component libraries, and data pipelines. Each generated file follows language best practices and includes proper types, imports, and structure.

Full Scaffold 4 Templates Working Code
Available in: Developer+
$ lb architect "REST API with auth"

Generating project scaffold...

Created:
  /api
    /src
      server.ts
      /routes
        auth.ts
        users.ts
      /middleware
        jwt.ts
    package.json
    tsconfig.json

7 files generated (284 lines total)
Feature 12

Axiom Vault

AES-256 encrypted local knowledge base. Store code snippets, solutions, notes, and references with tags and full-text search. Set a passphrase on first use — entries are encrypted at rest and only decrypted when you view them. Your passphrase is stored nowhere. Your knowledge, locked on your device.

AES-256 Tagged Searchable
Available in: All Editions
$ lb vault save "merge sort" #python #algorithms
Encrypted and saved to vault

$ lb vault search #algorithms
Found 3 entries:
  1. merge sort    #python #algorithms
  2. binary tree   #java #algorithms
  3. dijkstra     #go #algorithms

$ lb vault open 1
Decrypting...
Entry unlocked
Feature 13

Peer P2P Sharing

Share code directly between devices over local WiFi — zero internet required. One device starts a local TCP server, the other connects via IP. Share code snippets, edit buffers, vault entries, and forge templates. Incoming code appears with a [PEER] tag. Stays sovereign.

WiFi Direct Zero Internet TCP
Available in: Developer+
$ lb share

Sharing edit buffer (18 lines)
Local IP: 192.168.1.42:8420
Waiting for peer...

Connected: 192.168.1.87
Transfer complete: 18 lines sent

// On peer device:
[PEER] Received 18 lines from 192.168.1.42
Feature 14

Axiom Passport

Cryptographic proof of ownership, exclusive to Founder Edition. Generates a unique SHA-256 token from your device ID, edition, install timestamp, and your name. Stored locally as a hidden file. Export it, verify it, prove it. Your name in the passport, permanently. No server — pure local crypto.

Founder Only SHA-256 Cryptographic
Available in: Founder Edition
$ lb passport

AXIOM PASSPORT
========================
Owner:     Landon Hill
Edition:   Founder
Token:     AXGN-7F2A-B9C1-E4D8
Hash:      a3f7c2...d91b
Issued:    2026-02-21
========================
GOD_MODE: ACTIVE
Status: VERIFIED

Logic-Butter CLI

Every command available in the Actualities Terminal.

Command Description Edition
lb helpList all available commandsAll
lb statusShow edition, mode, and Sentinel statusAll
lb fixAuto-fix syntax and structure errorsDev+
lb fmtFormat code with language-aware rulesDev+
lb shadowRun predictive trap detectionAll
lb ghostShow previous code version overlayFounder
lb ghost <n>Show version n steps backFounder
lb historyList all code snapshots with timestampsFounder
lb restore <n>Restore code to snapshot nFounder
lb translate <lang>Translate code to target languageDev+
lb sutureAuto-detect language mismatch and offer translationDev+
lb vault saveEncrypt and save to vaultAll
lb vault searchSearch vault by tags or textAll
lb vault open <id>Decrypt and view vault entryAll
lb forge listShow all templatesDev+
lb forge <name>Scaffold from templateDev+
lb forge createSave current buffer as templateDev+
lb chain run <name>Execute multi-step pipelineDev+
lb chain createEnter chain builder modeDev+
lb chain listShow saved chainsDev+
lb architect <desc>Generate full project scaffoldDev+
lb record startBegin recording terminal sessionDev+
lb record stopEnd recording and save replayDev+
lb replay <name>Playback recorded sessionDev+
lb shareShare edit buffer via local WiFiDev+
lb listenStart receiving P2P transfersDev+
lb playbookShow all threat patterns with explanationsDev+
lb sentinelShow security status and scan historyAll
lb passportShow cryptographic ownership proofFounder
lb passport verifyValidate passport tokenFounder
lb passport exportExport token for transferFounder
lb saveSave with Sentinel + Shadow scanDev+
lb write <file>Write buffer to named fileDev+
lb clearClear terminal outputDev+
lb newStart fresh edit bufferDev+

Ready to Go Sovereign?

14 features. 35+ commands. Zero cloud. One-time purchase. Own it forever.

View Editions & Pricing Start Free Trial Read Again