Documentation

SKILLS

A docs-style guide to the SKILLS installation flow from `/settings/api-keys`, including global install, per-agent install, verification, and the fetch path for LLM agents.

Overview

The SKILLS flow installs the Codebase skill so Codex, Claude Code, Gemini CLI, and Antigravity can use the same onboarding path. This page repackages the `SKILLS install` and `LLM Agents install` sections from Auto-publishing connection into docs form.

Global install

Global install is the simplest option when you want the same skill available across all projects. It is also the default onboarding path in the settings screen.

Multi-agent global install

The default path for installing Codex, Claude Code, Gemini CLI, and Antigravity in one step.

npx -y skills add beyondeth/codebase-skills --skill codebase-skill -a codex -a claude-code -a gemini-cli -a antigravity -g -y

Per-agent install

If you only want selected agents, use per-agent install. The commands below mirror the `Install by agent` cards from settings.

Codex

CLI install

npx -y skills add beyondeth/codebase-skills --skill codebase-skill -a codex -y

Claude Code

CLI install

npx -y skills add beyondeth/codebase-skills --skill codebase-skill -a claude-code -y

Gemini CLI

CLI install

npx -y skills add beyondeth/codebase-skills --skill codebase-skill -a gemini-cli -y

Antigravity

CLI install

npx -y skills add beyondeth/codebase-skills --skill codebase-skill -a antigravity -y

Verify & maintain

After installation, verify the links and use the same workflow for updates or removal when needed.

Verify agent links

Check that the skill is linked to Codex, Claude Code, Gemini CLI, and Antigravity after a global install.

npx -y skills list -g -a codex -a claude-code -a gemini-cli -a antigravity

Update / remove

Commands for checking updates or removing the installed skill.

npx -y skills check
npx -y skills update
npx -y skills remove codebase-skill -a codex -a claude-code -a gemini-cli -a antigravity -g -y

For LLM Agents

The `LLM Agents install` section in settings is not a separate fourth flow. It is a helper path that hands the SKILLS workflow to an agent through documentation. Send the fetch command below to an agent so it can read the installation guide and follow the steps.

Fetch the install guide

A fetch command you can hand to an agent so it can read and follow the installation guide.

curl -s https://raw.githubusercontent.com/beyondeth/codebase-skills/refs/heads/main/docs/guide/installation.md