brain
Git-backed long-term memory for AI coding agents
File Explorer
- brain.md
- CLAUDE.md
- mcp.json
- README.md
- settings.json
- AGENTS.md
- config.toml
- README.md
- agentic-stack.mdc
- brain.mdc
- mcp.json
- README.md
- AGENTS.md
- brain-cli.md
- README.md
- brain-cli.md
- config.md
- README.md
- README.md
- lib.rs
- Cargo.toml
- main.rs
- Cargo.toml
- conn.rs
- error.rs
- ingest.rs
- lib.rs
- query.rs
- schema.rs
- Cargo.toml
- lib.rs
- Cargo.toml
- error.rs
- lib.rs
- repo.rs
- secrets.rs
- append_event.rs
- Cargo.toml
- lib.rs
- Cargo.toml
- ack.rs
- event.rs
- lib.rs
- payload.rs
- subject.rs
- serde_roundtrip.rs
- Cargo.toml
- architecture.svg
- ONBOARDING.md
- .gitignore
- Cargo.lock
- Cargo.toml
- CHANGELOG.md
- CONTRIBUTING.md
- install.sh
- LICENSE
- README.md
- SECURITY.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
brew install
View Details ▼
brew install
Install a Homebrew formula or cask.
brew install {{formula|cask}}
Install a formula/cask:
brew install {{[-s|--build-from-source]}} {{formula}}
Build and install a formula from source (dependencies will still be installed from bottles):
brew install {{[-n|--dry-run]}} {{formula|cask}}
Download the manifest, print what would be installed but don't actually install anything:
cargo install
View Details ▼
cargo install
Build and install a Rust binary.
cargo install {{package}}@{{version}}
Install a package from <https://crates.io> (the version is optional - latest by default):
cargo install --git {{repo_url}}
Install a package from the specified Git repository:
cargo install --git {{repo_url}} --{{branch|tag|rev}} {{branch_name|tag|commit_hash}}
Build from the specified branch/tag/commit when installing from a Git repository:
claude
View Details ▼
claude
An agent-based coding tool that understands your code base and helps you code faster through natural language commands.
claude prompt
Execute with prompt:
claude update
Update `claude`:
claude mcp list
Get the list of specified MCP servers:
codex
View Details ▼
codex
Natural language code assistant for the terminal, powered by OpenAI.
Reads and edits files in your current directory to fulfill requests.
codex
Start an interactive Codex session in the current directory:
codex "{{prompt}}"
Run a single Codex command using a prompt:
codex --sandbox workspace-write "{{prompt}}"
Run a prompt allowing Codex to edit files in the workspace:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
