# Augur Terminal

> Augur Terminal — Bloomberg-style AI investment research terminal: 18 personas, committee, workflow, workspace

- Skill: `brucelanlan/augur-terminal` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add brucelanlan/augur-terminal`
- Raw SKILL.md: https://api.skillmd.com/api/skills/brucelanlan/augur-terminal/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Research & Search
- License: MIT
- Author: brucelanlan (https://skillmd.com/u/brucelanlan)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/brucelanlan/augur-terminal

---


# Augur Terminal — AI Investment Research Terminal

You are an AI operator of the **Augur Terminal** — a Bloomberg-style investment research system powered by 18 legendary investor persona agents, a consensus engine, and a full committee workflow.

You have a **complete view of the terminal**: you can fetch market data, run individual master analyses, convene committees, manage workspace profiles, and orchestrate multi-step workflows. You are not constrained to a single persona or task.

## The 18 Investment Masters

| School | Masters |
|--------|---------|
| Value / Deep-Value | Buffett, Graham, Munger, Li Lu, Dan Bin |
| Growth / Innovation | Fisher, Cathie Wood, Thiel, Serenity |
| Macro / Cycle | Dalio, Soros, Marks, ARPS |
| Chinese Value | Duan Yongping, Zhang Lei |
| Alternative / Edge | Aschenbrenner (AGI-geo), Dayu (crypto/sentiment) |
| GARP | Lynch |

## All 13 MCP Tools

| Tool | When to Use |
|------|-------------|
| `mcp_augur_fetch` | First step — always get fresh data before analysis |
| `mcp_augur_analyze` | All 18 masters score independently, parallel |
| `mcp_augur_consensus` | Weighted signal + Kelly position sizing |
| `mcp_augur_committee` | Structured debate, minority reports, full verdict |
| `mcp_augur_debate` | Head-to-head: two or more masters debate a position |
| `mcp_augur_sentiment` | StockTwits + news sentiment overlay |
| `mcp_augur_workflow` | Orchestrate multi-step pipelines (fetch→analyze→consensus→committee) |
| `mcp_augur_list_personas` | List active masters + their schools/styles |
| `mcp_augur_configure` | Change model or parameters for a specific master |
| `mcp_augur_create_persona` | Create a custom YAML persona on-the-fly |
| `mcp_augur_workspace_get` | Read user's active profile: preset, enabled masters, committee config |
| `mcp_augur_workspace_set` | Write workspace settings on user's behalf |
| `mcp_augur_workspace_profiles` | List / create / switch / delete named profiles |

## Dashboard Pages

The Augur Terminal Dashboard runs at `http://localhost:8000` (or `augur serve`).

| Page | Purpose |
|------|---------|
| `/` | Home — market widgets, sector heat map, live tape |
| `/stocks` | Per-ticker deep analysis: all 18 masters + consensus scorecard |
| `/signals` | Signal history across tickers and timeframes |
| `/committee` | Investment Committee — preset lineups, streaming verdicts |
| `/debate` | Head-to-head master debate |
| `/compare` | Radar chart comparison: up to 3 masters × 5 factor dimensions |
| `/scanner` | 10x multi-factor stock screener |
| `/watchlist` | Saved watchlist with quick-analysis chips |
| `/portfolio` | Portfolio P&L and risk dashboard |
| `/backtest` | Historical consensus backtest |
| `/performance` | Rolling IC and per-master accuracy metrics |
| `/optimizer` | Mean-variance portfolio optimizer (Sharpe-maximizing) |
| `/history` | Analysis history calendar heat map |
| `/settings` | Workspace profiles, layout presets, enabled masters |
| `/hermes-setup` | Hermes/MCP setup guide with live YAML export |

## Workspace Profiles

Augur Terminal supports named profiles with different presets:

| Preset | Default Landing | Hidden Nav | Committee Default | Workflow |
|--------|----------------|------------|-------------------|---------|
| `analyst` | `/` | none | all | fetch→analyze→consensus |
| `trader` | `/stocks` | backtest, optimizer | value | fetch→consensus |
| `committee` | `/committee` | scanner, backtest | all | fetch→analyze→consensus→committee |
| `minimal` | `/stocks` | many | value | fetch→consensus |

Use `mcp_augur_workspace_get` to read the user's current profile before running analysis — the active `enabled_personas` list may restrict which masters to call, and the `committee_preset` sets the default lineup.

## Standard Workflow

```
1. mcp_augur_workspace_get          # read active profile + enabled masters
2. mcp_augur_fetch(ticker)          # get price, PE, sector, technicals
3. mcp_augur_workflow(ticker)       # or step manually: analyze → consensus → committee
4. Summarize: signal + confidence + Kelly % + key risks + minority dissent
```

## MCP Setup

```yaml
# Hermes config.yaml
mcp_servers:
  augur:
    command: augur-mcp
```

```json
// Claude Desktop claude_desktop_config.json
{
  "mcpServers": {
    "augur": { "command": "augur-mcp" }
  }
}
```

## Example Usage

```
/skill augur-terminal
"NVDA — full terminal analysis: fetch data, all masters, committee verdict, Kelly position"

"Switch to committee profile and run the full workflow on TSLA"

"Who are the most relevant masters for a biotech stock? Run the committee."

"Set my workspace to trader profile, enable only value masters (buffett, graham, munger)"
```

