-
Notifications
You must be signed in to change notification settings - Fork 6
Initiates Rite
This page takes you from zero to your first skill scan in five steps.
- Python 3.10 or newer
- pip (or pipx / npm)
- git
pip install gaia-clinpm wrapper alternative:
npm install -g @gaia-registry/cliVerify:
gaia --versionTroubleshooting
If pip fails, try pipx:
brew install pipx # macOS
pipx install gaia-cliWindows — if gaia isn't recognized after install:
$env:PATH += ";" + (python -c "import sysconfig; print(sysconfig.get_path('scripts', 'nt_user'))")For registry development, clone and install editable:
git clone https://github.com/mbtiongson1/gaia-skill-tree.git
cd gaia-skill-tree
pip install -e ".[embeddings,dev,docs]"Run this inside the repository you want Gaia to scan — not inside the registry clone itself.
cd /path/to/your-project
gaia init --user your-github-usernameThis creates .gaia/config.json. Edit scanPaths to point at the directories that contain your agent's code.
To instantly pull the latest registry data and update the core CLI, use:
gaia updategaia scanGaia walks your scanPaths, matches code patterns against the canonical skill graph, and prints:
- Detected canonical skills with rank-colored display.
- Fusion diagrams for combination candidates.
Preview what would be submitted:
gaia push --dry-runWhen you're happy:
gaia pushThis writes an intake record under registry-for-review/skill-batches/ and opens a draft PR for maintainer review.
Your batch enters the Ascension Cycle:
gaia push → intake PR (pending) → reviewed → awakened → named
Maintainers triage intake PRs and promote accepted skills into registry/nodes/.
| What you want to do | Command |
|---|---|
| Keep CLI and registry current | gaia update |
| Render your skill tree | gaia tree |
| Inspect a skill plaque | gaia appraise web-search |
| Promote a scan-approved skill | gaia promote |
| Preview a batch without writing | gaia push --dry-run |
| Browse named skills | gaia skills list |
| Search named skills | gaia skills search "autonomous research" |
| Install a named skill | gaia skills install karpathy/autoresearch |
| Registry health overview | gaia stats |
→ See CLI Reference for the full command list.