Thanks for your interest in improving Team Brain!
- Fork and clone the repo
- Symlink to
~/.claude/plugins/team-brain - Test in a project with
/team-brain init - Open a PR
# Initialize in a test directory
node scripts/store.js init /tmp/test-project
# Add entries
node scripts/store.js add-entry /tmp/test-project lessons "Test lesson" "Some content" tester "tag1,tag2"
node scripts/store.js add-entry /tmp/test-project decisions "Test decision" "Context and decision" tester "arch"
node scripts/store.js add-entry /tmp/test-project conventions "Test convention" "Always do X" tester "style"
# Generate BRAIN.md
node scripts/generator.js generate /tmp/test-project
# Search
node scripts/search.js search /tmp/test-project test
# Stats
node scripts/stats.js /tmp/test-project- Zero external dependencies (Node.js built-ins only)
- Each entry is a standalone markdown file (merge-friendly)
- Hand-rolled YAML frontmatter parsing (no libraries)
- Scripts are both importable modules and CLI tools
- Auto-learn hook: Detect patterns from tool output worth remembering
- Better search: TF-IDF or embedding-based similarity
- Entry deduplication: Detect and merge similar entries
- Team analytics: Who's contributing, topic coverage heatmap
- Jira/Linear integration: Link entries to tickets
- Entry expiry: Auto-deprecate old lessons
- VS Code extension: Browse/search team brain from the editor
- Web dashboard: View team brain in a browser
- Import from Notion/Confluence: Migrate existing team knowledge
By contributing, you agree that your contributions will be licensed under the MIT License.