Six scanner workers, three funds, sixteen sleeves, and one guardian layer. The page is useful only if the status, coverage, heartbeat, and boundaries stay visible.
A Live Portfolio Monitor With Visible Guardrails
Most AI finance pages show a promise, not the state of the system. The better question is simpler: what is current, what is stale, what is bounded, and what still needs a person?
So I made that part the record.
You can go to bionicbanker.tech/portfolio right now and watch my system move. Coverage bar, six scanner workers, three funds, a guardian layer. Data refreshes every minute. When a sleeve flips from empty to funded, you see it flip. When a worker misses a heartbeat, you see the row go grey. Nothing hidden.
What the page actually shows
Three funds. Income, Balanced, Growth. Each one has sleeves. A sleeve is a small named slot that gets filled by a scanner. Think of a fund as a box with labelled compartments, and each compartment is the job of a specific worker.
- Income (60 percent bonds, 40 percent alts) holds the boring end. Aave stablecoin lending, Polymarket event sleeves, delta neutral funding trades.
- Balanced (75 percent diversified, 25 percent growth) adds tokenized stock grids and some TradingView momentum catchers.
- Growth (90 percent alts, 10 percent anchor) runs the directional tokenized equity worker I shipped yesterday.
Coverage is the honest number. Sixteen sleeves total. Sixteen funded as of this morning. One hundred percent. That took three weeks. For most of that time the number was embarrassing. Five out of sixteen. Then eight. Then twelve. Then the last stubborn one, xstocks directional, which needed a new worker built from scratch because no existing scanner fit the slot.
Six scanners, one contract
Every scanner on the page follows the same four rule contract. I learned it the hard way.
- Tag every position you open with your own worker name. If two workers touch the same row, nobody can attribute performance.
- Write JSON atomically. Temp file with your process id, then rename. If you are halfway through a write when cron restarts you, the next reader gets a corrupt file. Atomic rename kills that class of bug.
- Emit a status file every cycle. Open positions, deployed dollars, unrealized pnl, last heartbeat, cycle count. If you cannot answer “is this worker alive” in one grep, you are flying blind.
- Persist state between cycles. Cycle count, last run timestamp. The thing that survives when the process dies.
Six workers. Same four rules. Different strategies. Grid versus momentum versus directional versus funding neutral versus event markets versus stablecoin lending. Every one of them lives or dies by those four rules.
The guardian layer
The part nobody builds and everybody should is the layer that watches the watcher.
The demo uses a nursery model: four scheduled checks, each with one narrow responsibility.
- Blind spot drift checks that every status file is fresh. If a worker has not heartbeat in three hours, that is a flag. If a fund has sleeves claiming to be funded but no live positions underneath, that is a flag. If the hermes brain itself goes silent, that is a flag.
- Health checks disk, cron integrity, log rotation, and the message queue depth.
- Auto research pulls signal from the outside world. New BoC papers, new exchange support in Canada, new DeFi primitives worth looking at. When one of my active sleeves becomes stale as an idea, the research layer knows before I do.
- AI intel tracks the model world. What changed in Anthropic pricing, what Gemini can now do cheap, what Ollama has that runs local.
Every flag goes into a SQLite ledger. Three strikes and a flag gets escalated. The portfolio page reads the open flag count live. Right now it shows two open. They are both benign. A month ago that number was closer to twenty.
Why put it in public
Two reasons.
First, it keeps me honest. The moment a coverage number becomes public, you cannot quietly skip a sleeve. You have to build the worker. You have to wire the guardian. You have to actually close the loop.
Second, finance systems should be read through records before claims. A boring page that shows status, coverage, and limits is more useful than a polished chart with no live trail behind it.
Same philosophy as the AML engine and source catalog: if a system is public, the reader should be able to inspect the record, not just the conclusion.
What is next
The portfolio page is version one. It shows state. The next version will show history.
- Thirty day uptime bar per worker.
- Daily pnl curve per fund.
- Trade log per sleeve, with entry price, exit price, reason.
- An audit mode where you can click a position and see the exact scanner cycle that opened it.
The data is already being written. Every scanner emits cycle data. Every orchestrator run is logged. What is missing is the rendering. That ships next.
If you want to follow the next version, subscribe to the newsletter. The useful updates are the ones where a new record, limit, or review path becomes visible.
The page: bionicbanker.tech/portfolio
The coverage is one hundred percent today. Tomorrow it might be ninety four because I will be adding a new sleeve. That is the whole point.