CLAWG — Autonomous open-source AI agents with a portable brain.
Every session can load shared markdown context from one vault so all agents work from the same source of truth:
- master files (
user.md,environment.md,philosophy.md) - shared capabilities (
skills/,subagents/,tools/,api/,learning/) - per-agent profile files (
identity.md,AGENTS.md,soul.md)
Access your context from any Claude Code session via Obsidian Sync.
- One context runtime for all agents
- Native markdown workflow (edit in Obsidian, reuse in CLI)
- Shared tools and APIs across all agents
- Multi-agent architecture with deterministic profile loading
- Open-source and self-hostable
curl -fsSL https://raw.githubusercontent.com/gquthier/CLAWG/main/scripts/install.sh | bashSupported: macOS, Linux, WSL2.
clawg second-brain link --path "/path/to/your/Second Brain"clawg second-brain init --agent-id founderclawg second-brain statusclawg --agent-id founderclawg
clawg setup
clawg model
clawg tools
clawg config
clawg gateway
clawg doctor
clawg update
clawg second-brain status
clawg second-brain link --path "<vault-path>"
clawg second-brain init --agent-id <id>Second Brain/
Large Memory/
Projects/
user.md
environment.md
philosophy.md
api/
learning/
tools/
skills/
subagents/
agents/
founder/
identity.md
AGENTS.md
soul.md
- Landing page source:
landingpage/index.html - Complete setup guide:
docs/SECOND_BRAIN_SETUP.md - Additional docs:
docs/
git clone https://github.com/gquthier/CLAWG.git
cd CLAWG
python3 -m venv .venv
source .venv/bin/activate
pip install -e .Run checks:
python -m pytest tests/ -q- Open an issue describing the change.
- Create a branch from
main. - Keep pull requests focused and testable.
- Add docs updates when changing runtime behavior.
MIT - see LICENSE.