We design AI systems and take them past the slide deck: the architecture, the model, the
data path, and an interface someone can actually operate. What comes out is not a demo of
a chatbot but a working concept — one that shows its reasoning, admits what it does not
know, and can be judged on results. Two of them are below.
Our projects
Project 01 · in development
SMIR & SMIRE
An intermediate representation for generated code.
Code is written by models faster than anyone can review it, in a dozen languages, and
plausible is not the same as correct. SMIR is one explicit, language-agnostic
representation of what a program actually does — control flow, state, I/O and types —
and SMIRE is the engine that parses generated code into it, checks it, runs it,
and only then hands it back. From AI-generated to verified.
SMIRE owns the loop: it parses incoming code into SMIR, checks it, runs it, and hands
code back out. StateMind sits outside that loop — it proposes, the engine decides.
SMIRE is everything inside the frame: parsing, the SMIR document, validation, the sandboxed run, the deterministic fix and refactor passes, and code generation.
StateMind is only consulted when the deterministic passes run out of ideas. Its proposal has to keep the functions and classes it was given, compile, and behave — otherwise SMIRE throws it away and keeps the original.
What SMIR makes explicit
Control flow. Every function becomes a graph of basic blocks with a single terminator: jump, branch, loop or return. Nothing implied by indentation.
Intent that survives a rewrite. SMIR records what the code was supposed to be, so a suggestion that quietly drops the functions it was given is rejected, not merged.
State and I/O. Step machines, transitions and a cross-reference of every signal read and written — which makes conflicting writes and dead outputs findable instead of debatable.
A checked round-trip. Code is parsed into SMIR and generated back, then compiled and executed. If the behaviour differs, the representation is wrong — not the code.
SMIR v0.1 is running: the engine parses, validates, repairs and executes, and the
narrow model that proposes those repairs is trained in-house and stays on-premise.
Project 02 · working prototype
Tide
An AI command center for maritime risk.
One screen that follows a fleet of 475 ships from publicly available data, quantifies
the risk of every voyage and gives a reasoned recommendation — including what diverting costs against what staying
the course costs. Most tracking tools show you where a ship is. Tide answers the
question that actually costs money: is diverting cheaper than sailing on?
Per voyage: a risk score out of 100, a predicted delay, the three factors behind that score, and a recommendation with its confidence.
Under the hood
Real AIS positions from an external provider, with honest provenance: the status bar names the source, how many ships are fresh and how old the oldest fix is. Nothing is called realtime that is not.
A risk model that combines weather, geopolitics and news, port congestion and chokepoints, with exponential decay on the age of every observation — a day-old storm report should not weigh as much as an hour-old one.
Prediction and route comparison: a PyTorch delay model plus a Monte-Carlo comparison of alternatives on fuel, emissions, charter cost and delay cost. The compute picks CUDA on a GPU box and falls back to CPU.
Accountability: predicted versus actual ETAs are kept, along with how often a recommendation was followed and how much delay that avoided. The model is judged on its own track record.
Explainability: every score shows how it was built up, every recommendation shows its assumptions — the minimum for use in operations and compliance.
Exposure at portfolio level: risk per region, and every chokepoint with its alternative and the days that alternative costs.Weather, traffic and risk as layers over the same GPS truth, in 2D and 3D. Ships are clickable: position, course, speed and the age of the signal.What-if: 3,000 Monte-Carlo voyages per option, compared on distance, p80/p95 arrival, cost and CO₂ — including the option of doing nothing.
A day of delay on a container ship costs tens of thousands in charter, fuel and contract
penalties. The value is not the map; it is the answer underneath it, with the uncertainty
attached and a record of whether the answer turned out to be right.