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 Sessions: Lightweight Desktop App for Browsing Claude Code History
Claude Sessions is a new desktop application that lets developers browse their Claude Code session history locally. It reads from ~/.claude/projects, organizes sessions by project, handles large sessions up to 500k+ tokens without lag, and includes search functionality and keyboard navigation.

Rift: A Better Alternative to Git Worktrees with Instant Copy-on-Write Snapshots
Rift uses btrfs or APFS snapshots to create instant, space-efficient copies of Git repositories. Initialization, creation, and listing via CLI or JavaScript FFI.

OpenClaw Codex-GPT5.4 Task Validation Loop Issue
A developer reports Codex-GPT5.4 through OpenClaw gets stuck in a task validation loop during autonomous project work, repeatedly identifying and confirming tasks without executing them. They've implemented workspace controls including TASKS.md, heartbeat rules, and persona files to address the issue.

Stockade: A New Orchestration Tool for Claude Code with Channel Support and Security Layers
Stockade is an orchestration tool built around Anthropic's Agent SDK that provides channel-based session management, RBAC, and fine-grained permissions for AI agents. It addresses limitations in OpenClaw and NanoClaw by offering more control while maintaining security through containerization and credential proxies.