Skip to main content
The Investment team is the most ambitious multi-agent demo in the repo. Seven specialist agents collaborate across four distinct team configurations to evaluate stocks, weigh risk, and produce investment memos. All seven share one knowledge base and one learnings store.

Why a team for this

The single-agent failure mode for investment analysis is bullish bias: one model talks itself into a thesis. A multi-agent committee structurally avoids this. The Risk Officer is required to argue against, the Technical Analyst is required to look at chart-level evidence, and the Chair has to weigh both. This is “agents as roles” rather than “agents as task fanout”. Each member has a distinct charter that the Chair must consider.

Four team modes, one set of agents

The demo ships four distinct teams built from the same agent set. Each demonstrates a different multi-agent architecture: Pick the team in the AgentOS UI based on the shape of the request. See Team modes for the underlying mechanics.

Three-layer knowledge

Every agent on the team draws from the same three-layer context: Same “context is everything” pattern Dash uses, applied to financial decision-making instead of SQL.

Shared learnings

Every agent writes to one investment_learnings knowledge store with namespace="global":
After a few decisions the store accumulates patterns like:
  • “Tech stocks with negative free cash flow get downgraded”
  • “Avoid recommending positions during earnings week”
  • “Risk Officer’s concerns weighted 1.5x for crypto exposure”
The Chair retrieves these on every new evaluation. The committee gets sharper over time without anyone manually building the framework.

File output

The Memo Writer uses FileTools to produce a markdown memo per evaluation:
Each memo captures the committee’s full reasoning, the dissents, and the final recommendation. Useful for retrospective analysis: which calls were right, which were wrong, and what the committee learned from each.

Mixing models

The demo runs every agent on the same default model (gpt-5.4 via OpenAIResponses). For real workloads, mixing models per role is a one-line change:
The team coordinates regardless of which model each member uses. The standalone investment-committee repo runs Claude Sonnet 4.6 across the analysts and Claude Opus 4.6 on the Chair, which is the production-grade configuration.

See it in action

Try one prompt against each team:
Each prompt triggers the right shape of work. Expect 30-60 seconds for the parallel analyst teams, faster for route, longer for tasks. Source: teams/investment/. For a standalone version with Claude across the team and a deterministic 5-step pipeline workflow, see the investment-committee repo.