forkmindlisted
Install: claude install-skill Medhovarsh/forkmind
# ForkMind
ForkMind treats AI context windows like a Git repo. It runs a local proxy that
records every LLM call into `.forkmind/` as a node in a DAG, serves a dashboard,
and lets you branch alternative prompts/models from any historical turn.
## When to reach for it
| Situation | Why ForkMind |
|---|---|
| "This prompt sometimes regresses — catch it" | Pin baselines, re-run, diff drift |
| "Compare llama3 vs gpt-4o on the same turn" | Fork the node, swap model, re-run |
| "Why did the agent change its answer?" | Inspect the DAG: request/response, tokens, lineage |
| "Capture all LLM traffic during this task" | Point client at the proxy; everything is logged |
| Agent needs to recall its own past attempts | ForkMind MCP server exposes the history |
Do NOT use for: production traffic logging at scale, hosted/cloud observability,
or non-LLM HTTP debugging.
## Run it
ForkMind runs straight from the git link — no npm registry needed:
```bash
# starts proxy + dashboard on :4500
npx github:medhovarsh/forkmind start
```
Then point any OpenAI-compatible client at the proxy:
- `baseURL: http://localhost:4500/v1`
- dashboard: `http://localhost:4500`
Free local default: install [Ollama](https://ollama.com), `ollama pull llama3`.
Any provider works (OpenAI, Anthropic, Groq, OpenRouter, Together, vLLM, LM Studio)
by passing that provider's base URL + key through the proxy.
## Core moves
- **Capture** — route calls through `:4500/v1`; each call becomes a DAG node.
- **Branch** —