Install Gemini CLI
If you don't have it yet:
npm install -g @anthropic-ai/gemini-cliAlready installed? Skip to step 2.
Init your brain
Open a terminal and create the brain. This scaffolds a git repo with GEMINI.md context files (what Gemini reads), plus CLAUDE.md and AGENTS.md for cross-platform support.
npx @antidrift/cli initRequires Node.js 18+. It'll ask for your company name, then scaffold the repo.
Open with Gemini
cd into your new brain and launch Gemini.
cd your-company && geminiGemini reads GEMINI.md files as project context automatically.
Ingest your docs
Feed it your existing company docs - PDFs, markdown, Google Docs exports, whatever you have.
/ingest path/to/your-docsIt reads the files, categorizes them, and builds GEMINI.md files by department.
Push to GitHub optional
Share the brain with your team. This creates a private repo and pushes.
/remoteUses the gh CLI if available. Otherwise gives you manual steps.
Teammates join requires step 5
Anyone on the team can join with one command. Same brain, first session.
npx @antidrift/cli join org/repoStay in sync
Use git to stay current with the team.
git add -A && git commit -m "update" && git pushPush your changesgit pullPull the latest from the teamOr use /push and /refresh in Claude Code / Codex for additive merging.