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

✍️ OpenClawRadar📅 Published: April 17, 2026🔗 Source
Team Brain: A Shared Memory Plugin for Claude Code That Stores Team Knowledge in Git
Ad

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.

Ad

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-brain

Then 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

Ad

👀 See Also