by Asklear
Turn your team's AI coding sessions, GitHub code, and docs into one shared, searchable memory — a self-hosted git truth store you query right from your editor over MCP.
# Add to your Claude Code skills
git clone https://github.com/Asklear/Klear-Team-BrainGuides for using ai agents skills like Klear-Team-Brain.
Klear-Team-Brain is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Asklear. Turn your team's AI coding sessions, GitHub code, and docs into one shared, searchable memory — a self-hosted git truth store you query right from your editor over MCP. It has 57 GitHub stars.
Klear-Team-Brain's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/Asklear/Klear-Team-Brain" and add it to your Claude Code skills directory (see the Installation section above).
Klear-Team-Brain is primarily written in JavaScript. It is open-source under Asklear on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh Klear-Team-Brain against similar tools.
No comments yet. Be the first to share your thoughts!
Unlocks once the catalog security scan passes (runs nightly).
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
Your team's collective memory for AI-assisted coding. Self-hosted, ultra-light, zero extra effort for the people doing the work.
English | 中文
Your team codes with Claude Code / Codex — but the context that actually matters (the reasoning, the why-it-changed, the dead ends) is trapped in each person's local AI chat, and it's gone the moment they close the tab. So:
Knowledge depends on "ask the right person." The moment they're busy or gone, the context breaks.
Klear-Team-Brain automatically pools your whole team's AI sessions into one shared memory, fused with live GitHub code state and your team's docs. Then you ask straight from your editor, or browse in a web UI:
"Where did the auth refactor land?" "How was the billing schema decided?" "Who's been touching the ETL this week?"
You get an answer synthesized across the team's sessions + code + docs, with citations. People doing the work do nothing; people who want to understand just ask — or open the dashboard.

git grep with zero server-side LLM calls — the understanding happens in the agent inside your editor.Prerequisites: Node 22+, and an MCP-capable editor/CLI (Claude Code or Codex) to ask from.
No npm/SaaS install — it's self-hosted by design. There's no public package or hosted service: clone this repo to run the server (or to trial it locally), and your teammates pull the client straight from your server with
curl …/get | bash— see Deploy for your team.
Want to kick the tires before standing up a server? Run the whole thing on your own machine as a single user:
git clone https://github.com/Asklear/Klear-Team-Brain.git && cd Klear-Team-Brain
npm install
npm run quickstart # one-time: mint a local identity + token, point the client at localhost, wire up MCP
npm run server # starts the truth store on http://127.0.0.1:8787 — leave this running
Then, in a second terminal, capture your local sessions:
npm run sync -- --once # capture once (or `npm run sync` to keep watching in the background)
Now ask from your editor, or open http://127.0.0.1:8787/ to browse. Everything stays on your machine. Prefer a containerized server? Use docker compose up -d — see DEPLOY.md.
docker compose. See DEPLOY.md — install Node, clone, set TRUTH_DIR, add a roster + tokens, put HTTPS in front, run as a service.curl -fsSL https://your-server.example.com/get | bash # downloads the client + registers the `brain` command
brain join <YOUR_INVITE_TOKEN> # verify + pick workspaces + wire up MCP + first sync + install resident
https://your-server.example.com/ to browse the dashboard.Once onboarded, the collector watches your AI sessions in the background and uploads each one as it stabilizes — no manual steps after that.
With MCP wired up, ask in plain language inside CC / Codex ("where did the auth refactor land?"). The agent treats the memory as a read-only folder and uses a handful of Unix-style primitives to locate, read, and synthesize — all tied together by a truth-store-relative path:
| Tool | What it does |
|---|---|
grep |
Search content (regex full-text via git grep). Defaults to redacted transcripts; raw=true includes raw jsonl. |
find |
Find files by name/glob (complementary to grep: one searches content, one searches names). |
read |
Read any file by path (paginate large files with offset/limit). |
ls |
Inspect structure: which spaces exist, branches, session counts. |
sessions |
Find sessions by person + work time (who did what, in a given window). |
stats |
Aggregate token usage / session counts / turns by day/week/person/repo/tool. |
log |
Activity timeline (the git history; narrow by space/author/since). |
read_github |
Reach out to GitHub / GitLab / Gitea (incl. self-hosted) for live code state or a file's current contents (code itself isn't stored). |
Server-side queries run via git grep / git ls-files / git log / fs — execFile, no shell, locked inside TRUTH_DIR, read-only — with zero server-side LLM calls.
Wiring other editors: the MCP server is a stdio server; the command is always
<node> <install-dir>/mcp/server.mjs(brain mcpprints your exact path). Add that as a stdio MCP server in Claude Code, Codex, or any MCP-capable client (Gemini CLI / Cursor / Cline / opencode…).Remote / cloud agents (HTTP transport): an agent that can't run the local stdio binary can mount the memory over HTTP instead — same tools, no local install. Point any MCP client at
POST https://your-server/mcpwith your member token as aBearerheader.Claude Code:
claude mcp add --transport http team-brain https://your-server/mcp \ --header "Authorization: Bearer <your-member-token>"Cursor / Cline / any
mcp.json:{ "mcpServers": { "team-brain": { "type": "http", "url": "https://your-server/mcp", "headers": { "Authorization": "Bearer <your-member-token>" } } } }Smoke-test from a shell (the endpoint accepts plain JSON-RPC — no special
Acceptheader needed):curl -s https://your-server/mcp -H "Authorization: Bearer <token>" \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'It's a stateless, one-shot endpoint (POST in, JSON out — no session, no server-side LLM); multi-turn context stays on the calling agent's side.
The server hosts a static dashboard at / (nothing extra to deploy) — for people who'd rather scan than type: see overall team progress, filter sessions by person/repo/time, view token-usage and activity stats, and skim mirrored docs.
Browse sessions — filter by person/repo/time, sorted by recent activity:

Usage stats — aggregate tokens, sessions, and turns by day/week/person/repo/tool:

each machine (client) your server (self-hosted)
┌────────────────────────┐ ┌──────────────────────────────────┐
│ ① collector client/sync │ gzip+token │ ② server/server.mjs (HTTP, HTTPS │
│ resident, watches AI │ ──────────▶ │ via a proxy like Caddy) │
│ sessions; gated to the │ │ /ingest → git truth store │
│ allowlisted circle │ │ TRUTH_DIR + 4h repo poll → │
│ │ │ code-state │
│ query A: ask in editor │ search+fetch│ /grep /find /read /ls /log │
│ query B: open the web UI │ ◀────────── │ + static dashboard hosted at / │
└────────────────────────┘ └──────────────────────────────────┘
The memory is a single git repository fusing three sources — each captured where it naturally lives:
| What you want to know | Lives mainly in | How it enters the memory |
|---|---|---|
| Progress · reasoning | CC/Codex sessions | distilled + redacted, stored as full-text transcript |
| Code state | GitHub / GitLab / Gitea (incl. self-hosted) | not stored; fetched on demand + 4h poll into code-state |
| Goals · decisions (human-written) | Team docs (Feishu/Lark wiki · Notion · Google Docs) | one-way mirror of doc bodies; grep/read it, edit at the source |
Design trade-off: only the "truth" (raw material + metadata) is kept clean and complete — because it's expensive and can't be rebuilt; "views" (queries / indexes / the dashboard) are swappable and throwaway. Sessions enter distilled (inline images stripped, giant tool outputs truncated — signal, not bytes); the byte-exact original stays on the producer's machine (
~/.codex/~/.claude).