# voidlogix.github.io absence as architecture. voidlogix — absence as architecture

bio · github · choose one

01 — recommended

Crafting tools for the unrepresented in computation.

02

Building where code meets metaphysics.

03

Exploring the logic of absence in digital systems.

04 — boldest

absence as architecture.
live preview · github bio Crafting tools for the unrepresented in computation. 55 / 160 chars

philosophy

Most systems are designed around what exists.
I'm interested in what they cannot represent
the null, the undefined, the pre-runtime, the unrendered.

voidlogix is not an absence of logic.
It is logic applied to absence.

current signal

  • Conflux MCP Server TypeScript · 98/98 tests · branch coverage next

  • voidkit tools for what null can't express · in design

  • metaphysical computing research · ongoing

  • multi-AI workflows Claude · Gemini Flash · Groq 70B · Ollama

first pinned repo · voidkit

A toolkit for the unrepresented.

Handles what null, undefined, and NaN cannot — building a vocabulary for digital absence across languages and paradigms.
TypeScript open-source philosophy metaphysical-cs

dimension 01

Metaphysical Computing

Exploring absence as a first-class design primitive in digital systems.

dimension 02

AI-Native Tooling

Systems that question their own foundations, built for the multi-model era.

dimension 03

Open Infrastructure

Building in the open, for futures that haven't been named yet.

stack · as typed interface

// executable, not decorative
interface VoidLogicStack {
  languages : string[]
  paradigms : string[]
  local_AI  : { model: string; role: string; version: string }[]
  cloud_AI  : { name: string; use_case: string }[]
  protocol  : string
  principle : string
}

const voidlogix: VoidLogicStack = {
  languages : ["TypeScript", "Python", "Bash"],
  paradigms : ["systems thinking", "AI-native design", "open source"],
  local_AI  : [
    { model: "qwen2.5-coder",   role: "coding",      version: "7b"   },
    { model: "llama3.2",        role: "chat",        version: "3b"   },
    { model: "nomic-embed-text", role: "embeddings",  version: "v1.5" }
  ],
  cloud_AI  : [
    { name: "Claude",        use_case: "reasoning + architecture"    },
    { name: "Gemini Flash",  use_case: "large codebase comprehension"  },
    { name: "Groq 70B",      use_case: "planning"                     }
  ],
  protocol  : "MCP",
  principle : "build where nothing has been built before"
}