01 case studies

real builds, real numbers.

every project below is live, running, and linked to the actual writeup or code — not a mockup made for this page.

infrastructure

a self-hosted AI fleet for $500, not a monthly bill

problem

Every serious AI workload was being billed per-token, with costs that scaled with usage and no ceiling in sight for a team that wanted to run agents continuously.

approach
  • Sized a 30B-class MoE model to a $500 Intel Arc Pro B60
  • Tuned llama.cpp on Vulkan, picked quantization for the compute path, not the box-art VRAM number
  • Benchmarked idle vs. loaded separately to get honest numbers
result

A production fleet generating real output at a fraction of API pricing, break-even against cloud costs in under two months of real use.

~40 tok/ssustained, 30B MoE
20–48×cheaper than API pricing
<2mohardware break-even
agents · memory

a shared memory brain so agents stop repeating mistakes

problem

Every tool and agent on the fleet started cold — re-explaining context, re-discovering fixes that had already been worked out, with no shared source of truth.

approach
  • Built Neuralis: a persistent, shared memory every agent reads from and writes to
  • Designed around supersede-never-delete and automatic write-back after every task
  • Deduped before writing, so the brain doesn't drown in near-duplicate facts
result

Agents that start each task one step ahead instead of relearning what already cost real time to figure out — running live, past 130,000 memories.

130,000+memories, live
0re-explained context per session
security · agents

guardrails that actually hold, not a system prompt that says "be careful"

problem

Autonomous agents with tool access and no real guardrails are a liability wearing a demo — most "safety" in agent pitches is a suggestion the model can reason past.

approach
  • Clamped money and outbound network access by default, outside the model's own reasoning
  • Built a recall → act → remember loop so failures don't repeat
  • Put monitoring on a separate box with no stake in the outcome
result

An agent layer (Sentinel Prime) that fails safely instead of failing expensively — narrowing blast radius by design, not by hope.

rates & how i work ↗hire me on upwork ↗