forkmind
v0.1.0Local-first LLM branching & debugging. Treat AI context windows like a Git repo — capture, branch, and regression-test LLM calls as a DAG. Teaches Claude when and how to drive ForkMind.
By Medhovarsh BayyapureddiLicense: MIT945 GitHub starsUpdated last month
Directory evidence
- Runtimes
- Claude Code
- Parsed components
- 2 skill or MCP entries
- Source updated
- Aug 12, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install forkmind for Claude Code
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install forkmind@agent-plugin-marketplacePaste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/ccplugins/awesome-claude-code-pluginsClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/forkmind/.
Plugin files
├── .claude-plugin/plugin.json├── skills/forkmind/SKILL.md└── .mcp.json
Included Skills1
Use when debugging, comparing, or regression-testing LLM / agent calls — when the user wants to capture LLM traffic, see a conversation as a branchable DAG, fork an alternative prompt or model from a past turn, or pin good outputs as baselines to catch drift. ForkMind is local-first (no cloud, no account) and proxies any OpenAI-compatible API, defaulting to free Ollama models. Trigger: "debug this prompt", "compare two models", "branch from that turn", "why did the LLM change its answer", "regression test my prompt", "capture LLM calls", "forkmind".
MCP servers1
- command
- npx
- args
- -y github:medhovarsh/forkmind mcp
Plugin manifests1
{
"$schema": "https://anthropic.com/claude-code/plugin.schema.json",
"name": "forkmind",
"version": "0.1.0",
"description": "Local-first LLM branching & debugging. Treat AI context windows like a Git repo — capture, branch, and regression-test LLM calls as a DAG. Teaches Claude when and how to drive ForkMind.",
"author": {
"name": "Medhovarsh Bayyapureddi",
"url": "https://github.com/Medhovarsh"
},
"homepage": "https://medhovarsh.github.io/forkmind/",
"repository": "https://github.com/Medhovarsh/forkmind",
"license": "MIT",
"keywords": [
"llm",
"debugging",
"observability",
"ollama",
"mcp",
"local-first"
],
"mcpServers": {
"forkmind": {
"command": "npx",
"args": [
"-y",
"github:medhovarsh/forkmind",
"mcp"
]
}
}
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[forkmind on Agent Plugins Marketplace](https://pluginsmp.com/plugins/forkmind)