Analysis updated 2026-05-18
Run a simulated multi-agent investment desk in paper mode with no real money at risk.
Backtest different investment mandates over a simulated year of weekly rebalances.
Study a reference implementation of a multi-agent decision pipeline.
Wire the engine to Robinhood's agentic trading MCP to place real orders once ready.
| tylerbroqs/sturna | 0xkinno/neuralvault | 0xmayurrr/ai-contractauditor | |
|---|---|---|---|
| Stars | 1 | 1 | 1 |
| Language | TypeScript | TypeScript | TypeScript |
| Setup difficulty | moderate | hard | easy |
| Complexity | 4/5 | 4/5 | 2/5 |
| Audience | developer | developer | developer |
Figures from each repo's GitHub metadata at analysis time.
Paper mode runs immediately after npm install, going live requires a Robinhood Agentic Account and an MCP token.
Sturna is an open source engine that simulates an investment desk run entirely by six AI agents. Each agent owns one step of the process: Scout finds eligible assets from a tokenized universe of private-market and real-world assets, Analyst scores each one on growth, quality, momentum, liquidity and thesis fit, Architect builds a weighted basket while respecting risk caps, Sentinel independently checks the plan against risk limits and can halt the whole cycle if something looks too risky, Executor turns approved decisions into trade orders, and Steward marks the resulting portfolio to market and watches for drift afterward. By default the project runs in paper mode, meaning every trade is simulated with no real money at risk. It is built to work with Robinhood's official agentic trading MCP, a Model Context Protocol interface, so it can be switched to place real orders once you provide the right credentials, though the README is explicit that this is a research and education project and not investment advice. The code is written in TypeScript with no framework dependencies in its core, so it can run in Node or directly in a browser. You install it with npm, then either start an HTTP API server, run a single cycle from the terminal, or run the unit tests. It also includes a backtesting command that replays a simulated year of weekly rebalances and compares results across different investment mandates, with reproducible results when you set the same random seed. Developers can use every agent as an importable function in their own code, and the repository includes example projects showing a custom agent pipeline and the whole swarm running inside a plain browser page. The project is licensed under MIT.
A simulated investment desk where six AI agents work together to research, build, and rebalance a portfolio of tokenized private-market assets.
Mainly TypeScript. The stack also includes TypeScript, Node.js, Hono.
Use freely for any purpose, including commercial use, as long as you keep the copyright notice.
Setup difficulty is rated moderate, with roughly 30min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.