Team Brain: A Shared Memory Plugin for Claude Code That Stores Team Knowledge in Git

Team Brain is a Claude Code plugin that addresses the problem of AI coding assistants starting from zero each session by creating a shared memory system stored in Git. Instead of each team member's Claude having no knowledge of previous debugging sessions, decisions, or conventions, Team Brain stores this information in a .team-brain/ folder within your repository.
How It Works
Team members record knowledge as they work using specific commands:
/team-brain learn stripe webhooks retry 3x with exponential backoff/team-brain decide use REST over GraphQL for public API/team-brain convention always use async/await never .then()
Each entry saves as an individual markdown file in the .team-brain/ directory. The plugin automatically generates a BRAIN.md file that's capped at 180 lines, based on the observation that Claude applies instructions at 92% accuracy under 200 lines but drops to 71% above 400 lines.
Setup and Features
Installation requires cloning the repository to the Claude plugins directory:
git clone https://github.com/Manavarya09/team-brain.git ~/.claude/plugins/team-brainThen run /team-brain init in your project. On every session start, a hook checks for changes and loads the team brain automatically without manual configuration.
The cross-tool functionality generates .cursorrules for Cursor users and AGENTS.md for Copilot, ensuring team conventions apply regardless of which AI coding tool team members use.
The /team-brain onboard command reads everything and generates an onboarding document. According to the source, this allowed a new developer to become productive in 20 minutes instead of requiring a 2-hour walkthrough.
Technical Implementation
The system uses only files in Git with no servers, cloud services, or accounts required. Individual markdown files enable clean merging—two people can add knowledge on different branches without conflicts. This approach makes team knowledge persistent, version-controlled, and automatically available to all team members' Claude instances.
📖 Read the full source: r/ClaudeAI
👀 See Also

Parallel Agent Orchestrator for Claude Code Using Git Worktrees
A developer built a parallel orchestrator that uses git worktrees to create isolated environments for Claude Code agents, solving the problem of shared working directories causing broken apps and messy git status.

Building a Self-Improving Dream Cycle with Cron Jobs and Claude
A developer built an autonomous dream cycle using two cron jobs: one at 10:30 PM for research and reflection, and another at 11:00 PM for review and planning. The system scans arXiv, GitHub trending, and Reddit, identifies weaknesses, and proposes concrete improvements.

Logseq Brain v0.6.0: Persistent Memory Plugin for Claude Code Adds Journey Log and Section-Targeted Reads
Logseq Brain v0.6.0 adds a journey log for all operations, section-targeted reads for token savings, and progressive disclosure for skill files.

Discord Bridge for Autonomous Claude Code Sessions
A bridge.js script (~50 lines, discord.js v14) creates real-time two-way chat between Discord and Claude Code via WebSocket + local file queue, replacing 2-minute polling with microsecond file reads. Tested on 27K lines analyzed overnight.