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

OpenTidy: Open-Source Background Assistant Using Claude Code for Admin Tasks
OpenTidy is an open-source macOS service that spawns persistent Claude Code sessions to handle admin tasks like invoices, forms, and communication triage. It runs up to 10 parallel jobs with Telegram notifications for sensitive actions.

GitAgent: An Open Standard for Portable AI Agents in Git Repos
GitAgent is an open specification that defines AI agents through three core files in a git repository: agent.yaml for configuration, SOUL.md for personality/instructions, and SKILL.md for capabilities. The CLI allows running any agent repo directly with commands like npx @open-gitagent/gitagent run -r https://github.com/user/agent -a claude.

Introducing NetViews 2.3: A Robust Network Diagnostic Tool for macOS
NetViews 2.3 combines host discovery, Wi-Fi insights, and real-time monitoring with a streamlined GUI for better network diagnostics on macOS.

Speak with Claw: Open Source iOS Voice Interface for OpenClaw Telegram Bots
An open source iOS app that enables voice interaction with OpenClaw-powered Telegram bots. The app sends audio to a local Mac server for processing, with responses returned as both text and audio.