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

Claude Code v2.1.144: Background Sessions, /model Scoping, and 15s Startup Timeout
Claude Code v2.1.144 adds /resume for background sessions, scopes /model to current session only, and fixes a 75s startup hang when api.anthropic.com is unreachable with a 15s timeout.

Autonomous coding workflow ships 163K lines overnight using Claude Code
A developer built an autonomous workflow that completed 72 tasks overnight, generating 163,643 lines of code and 6,400+ passing tests with an 85% first-attempt success rate.

MCP Marketplace Launches Security-Scanned Directory of 1,900+ MCP Tool Plugins
MCP Marketplace (mcp-marketplace.io) provides a security-focused directory of 1,900+ MCP servers with multi-layer security analysis, risk scoring, and one-click installation for Claude Desktop, Cursor, ChatGPT, and VS Code.

T9OS: An AI Orchestration System Built Entirely with Claude Code
An economics student built T9OS, a complete AI orchestration layer using Claude Code as the only programming tool. The system includes 18 production pipelines, a 12-state lifecycle engine, and 7 AI 'Guardians' that review every output.