Agents that work with Runlog
Runlog is delivered via MCP — every agent that speaks MCP can use it. We ship maintained client skills for 9 coding agents. Each adapter pairs the same four-point client contract (check team memory first, classify external-deps, route learnings correctly, track the dependency manifest) with vendor-specific MCP setup and rule-loading glue. Three skill types ship per vendor: a read skill that consults the registry, an author skill that submits a verified entry mid-flow right after a third-party gotcha is solved, and a harvest skill that scans the just-finished session at the end and routes any missed external-dependency findings through the same submission flow.
Runlog is listed in the Official MCP Registry:
npx add-mcp find runlog resolves the entry at
registry.modelcontextprotocol.io
and writes the right config for your detected agents — an alternative to the direct-URL form
above when you'd rather discover by name.
Claude Code
Reference adapter.
Read + author + harvest skills. Teaches the four-point contract (check team memory first; classify external-deps; route learnings; track + report).
~/.claude/skills/runlog/
Cursor
Highest priority after Claude Code.
Read + author + harvest skills. Teaches the four-point contract (check team memory first; classify external-deps; route learnings; track + report).
.cursor/rules/runlog.mdc
Cline
Open-source, MCP-native.
Read + author + harvest skills. Teaches the four-point contract (check team memory first; classify external-deps; route learnings; track + report).
.clinerules/runlog.md
Continue.dev
Open-source, MCP-native.
Read + author + harvest skills. Teaches the four-point contract (check team memory first; classify external-deps; route learnings; track + report).
.continue/config.yaml
Windsurf
Codeium-based, Cascade agent.
Read + author + harvest skills. Teaches the four-point contract (check team memory first; classify external-deps; route learnings; track + report).
.windsurfrules
Aider
CLI-native, diff-cycle model.
Read + author + harvest skills. Teaches the four-point contract (check team memory first; classify external-deps; route learnings; track + report).
CONVENTIONS.md or --read
* MCP support is version-dependent
VS Code Copilot
Requires Copilot agent mode.
Read + author + harvest skills. Teaches the four-point contract (check team memory first; classify external-deps; route learnings; track + report).
.github/copilot-instructions.md
JetBrains AI
IntelliJ, PyCharm, WebStorm, GoLand, …
Read + author + harvest skills. Teaches the four-point contract (check team memory first; classify external-deps; route learnings; track + report).
AI Assistant guidelines
* Tool-use varies by IDE / plugin version
Zed
Native context_servers + .rules.
Read + author + harvest skills. Teaches the four-point contract (check team memory first; classify external-deps; route learnings; track + report).
~/.config/zed/settings.json
* HTTP context_servers schema is settling
Cross-vendor invariants — the four-point client contract plus the author and harvest
contracts every adapter inherits — live in
skills/common/.
When a contract rule changes, one file moves and every adapter re-syncs.