A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
devrecall
Your developer activity, aggregated on-device. No cloud sync. No telemetry. Your data never leaves your machine.
DevRecall pulls from Git, Slack, Google Calendar, Jira, Linear, Confluence, and GitHub/GitLab/Bitbucket; stores it in a local SQLite database; and turns it into standups, weekly reports, brag docs, and a chat that actually knows what you worked on.
Also ships an MCP server —
any MCP-compatible coding tool (Claude Code, Cursor, Codex, Continue, Zed)
can spawn it as a stdio subprocess and gain memory of everything you've
shipped. /devrecall:recall what auth bug did I fix in February returns
cited commits, PRs, and tickets inline.
📚 docs.devrecall.dev — install, configure, integrations, CLI reference.
~/.devrecall/tokens/ (0600). The Cloudflare Worker relay is a pass-through for OAuth callbacks only — it never sees your data.all-MiniLM-L6-v2). Use local Ollama for chat, or bring your own OpenAI/Anthropic key.| Source | What gets collected |
|---|---|
| Git (local) | Commits, branch activity, files changed |
| GitHub / GitLab / Bitbucket | PRs/MRs, reviews, issues, comments |
| Slack | Your messages, threads you participated in |
| Google Calendar | Meetings attended, organized, declined |
| Jira / Linear | Issue transitions, comments, sprint membership |
| Confluence | Pages, blogposts, and comments you authored |
Homebrew ships with the first tagged release. Until then:
git clone https://github.com/pavelpilyak/devrecall.git
cd devrecall
make build # → bin/devrecall
Requires Go 1.22+ with CGO enabled (for SQLite FTS5).
Full install + setup walkthrough at docs.devrecall.dev/install.
┌─────────────┐ ┌─────────────┐ ┌─────────────────┐
│ Collectors │ → │ SQLite │ → │ Summarizer / │
│ (OAuth + │ │ + FTS5 + │ │ RAG (vector │
│ APIs) │ │ embeddings │ │ + FTS + LLM) │
└─────────────┘ └─────────────┘ └─────────────────┘
↑ ↑ ↓
~/.devrecall/ ~/.devrecall/ standup,
tokens/ devrecall.db brag, chat,
perf review
Module overview: CLAUDE.md. Architecture deep-dive: docs.devrecall.dev/architecture.
make build # bin/devrecall
make test # tests with race detector
make lint # golangci-lint
Build tags: fts5 enables SQLite full-text search; GO enables hugot's pure
Go ONNX backend for embeddings.
The desktop app (Tauri + Svelte) lives in desktop/;
the OAuth callback relay (Cloudflare Worker) in relay/.
Bug reports and collector contributions are especially welcome. See CONTRIBUTING.md.
SECURITY.md for responsible disclosure.
A Jetbrains IDE IntelliJ plugin aimed to provide coding agents the ability to leverage intelliJ's indexing of the codeba
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots