fish_bridge

Session-scoped knowledge graph engine for AI chat context compression.
Converts raw AI chat (40k+ tokens) into a compact typed knowledge graph (~300–800 tokens) and writes it to .github/copilot-instructions.md or CLAUDE.md — automatically included in every AI turn across all modes (ask, edit, agent). No MCP server required for the core workflow.
Raw session (40k tokens) → [fish_bridge] → Compressed graph (350 tokens)
written to copilot-instructions.md
picked up by every AI turn automatically
Install
Don't have uv? Get it first: curl -LsSf https://astral.sh/uv/install.sh | sh (macOS/Linux) or see uv docs. It replaces pip + pipx + pyenv in one tool — no virtualenv management needed.
Recommended — uv tool install (installs both the fish-bridge CLI and fish-bridge-mcp MCP server on your PATH):
uv tool install fish-bridge-mcp
uv tool install "fish-bridge-mcp[gemini]"
export GEMINI_API_KEY=...
uv tool install "fish-bridge-mcp[claude]"
export ANTHROPIC_API_KEY=sk-ant-...
uv tool install "fish-bridge-mcp[openai]"
export OPENAI_API_KEY=sk-...
uv tool install "fish-bridge-mcp[all]"
After install, two commands are available on your PATH:
fish-bridge — the main CLI (ingest, compile, show, serve, ...)
fish-bridge-mcp — the MCP server for VS Code agent mode
MCP config only (no permanent install needed): use uvx directly in your .vscode/mcp.json — it downloads and runs the MCP server on demand:
{ "command": "uvx", "args": ["fish-bridge-mcp"] }
See the MCP server section below for the full config.
Traditional pip install (for embedding fish-bridge as a library in your own Python project)
pip install fish-bridge-mcp
pip install "fish-bridge-mcp[gemini]"
pip install "fish-bridge-mcp[claude]"
pip install "fish-bridge-mcp[all]"
2-minute quickstart
fish-bridge init --tool copilot --project ./
fish-bridge ingest --source copilot
fish-bridge show
fish-bridge compile
That's it. .github/copilot-instructions.md now contains a ~350-token compressed summary of your session, replacing raw history in every future turn.
Backends
local (Ollama) | (none — requires Ollama) | qwen2.5:7b | ~85% | $0 |
gemini | [gemini] | gemini-2.5-flash | ~95% | ~$0.0002 |
openai | [openai] | gpt-4.1-mini | ~93% | ~$0.0003 |
claude | [claude] | claude-opus-4-7 | ~97% | ~$0.002 |
hybrid | [claude] or [openai] | local+cloud | best | mixed |
Configure with:
fish-bridge config --backend gemini
Full CLI reference
fish-bridge init
fish-bridge init --tool claude
fish-bridge ingest --source copilot
fish-bridge ingest --source copilot --session <id>
fish-bridge ingest --source paste
fish-bridge ingest --source file --file export.json
fish-bridge watch --source copilot
fish-bridge merge --source document --file HANDOVER.md
fish-bridge merge --source codebase --path ./
fish-bridge merge --source obsidian --vault ~/notes
fish-bridge merge --source deps --path ./
fish-bridge merge --source testout --file results.json
fish-bridge merge --source iac --path ./
fish-bridge merge --source openapi --file openapi.yaml
fish-bridge merge --source session --file prior.chatgraph.json
fish-bridge compile
fish-bridge compile --mode digest
fish-bridge compile --mode focus --query "Redis caching"
fish-bridge show
fish-bridge show --all
fish-bridge serve
fish-bridge digest
fish-bridge resolve "DNC caching strategy"
fish-bridge defer "v16 index validation"
fish-bridge add "Use Redis for session cache" --type decision
fish-bridge conflict show
fish-bridge conflict resolve <node-id> --keep old
fish-bridge export
fish-bridge import prior-session.chatgraph.json
fish-bridge diff session-a.chatgraph.json session-b.chatgraph.json
fish-bridge config --show
fish-bridge config --backend gemini
MCP server (optional — agent mode only)
The MCP server adds real-time record_turn capture when using VS Code agent mode. It is not required — the file-based workflow above works in all modes without it.
Add to .vscode/mcp.json (uses uvx — no prior install needed):
{
"servers": {
"fish-bridge": {
"command": "uvx",
"args": ["fish-bridge-mcp"],
"env": { "FISH_BRIDGE_BACKEND": "gemini", "GEMINI_API_KEY": "${env:GEMINI_API_KEY}" }
}
}
}
If you used uv tool install fish-bridge-mcp, you can also reference the installed binary directly:
{ "command": "fish-bridge-mcp" }
See examples/ for Claude Desktop, Cursor, and Windsurf configs.
MCP tools: record_turn, get_context, get_focus, mark_resolved, add_node, export_session, import_session, show_active, list_deferred
Ingest sources
| Copilot | ingest --source copilot | VS Code Copilot JSONL transcript (auto-discovered) |
| Paste | ingest --source paste | Any chat text — universal fallback |
| Document | merge --source document | Markdown, JSON, YAML specs and ADRs |
| Codebase | merge --source codebase | Git commits + README + HANDOVER |
| Obsidian | merge --source obsidian | Vault notes with wikilinks and frontmatter |
| Session | merge --source session | Prior .chatgraph.json export |
| Deps | merge --source deps | package.json, pyproject.toml, Cargo.toml, go.mod, Gemfile, pom.xml |
| Test output | merge --source testout | Jest JSON, pytest JSON, JUnit XML — error nodes per failing test |
| IaC | merge --source iac | Terraform, CDK (synth output), CloudFormation, docker-compose |
| OpenAPI | merge --source openapi | OpenAPI 3.x / Swagger 2.0 / AsyncAPI specs |
How it works
- Ingest — reads raw chat turns from JSONL (Copilot), paste, or any file format
- Extract — LLM extracts typed nodes (questions, decisions, errors, tasks, skills, files) and edges
- Dedup — semantic similarity merges near-duplicates; conflict detection flags status reversals
- Compile — graph is compressed to ~300–800 token XML/markdown block
- Write — block is written to
.github/copilot-instructions.md (or CLAUDE.md)
- Deliver — AI tool reads the file automatically on the next turn — no injection, no agent required
Documentation
License
MIT — see LICENSE