Skip to content
ABTO Guide

Integration guide

Install the Agent Skill

Install and verify the ABTO Skill for Codex and Claude Code.

The ABTO Agent Skill checks a repository’s runtimes and integrates only the Browser, App, or Server SDKs it needs. The official public path is https://github.com/greedy-co/abto-sdk/tree/main/abto, and the Skill name is abto.

You need Node.js 22.20 or later and npx.

Terminal window
node --version
npm --version
npx --version

Use --copy so each agent receives a real Skill directory.

Terminal window
npx --yes skills@latest add https://github.com/greedy-co/abto-sdk/tree/main/abto --skill abto --global --agent codex --copy --yes

Verify the installation.

Terminal window
npx --yes skills@latest list --global --agent codex

The global installation path is ~/.agents/skills/abto. Restart the agent session if the Skill does not appear after the first installation.

Terminal window
npx --yes skills@latest add https://github.com/greedy-co/abto-sdk/tree/main/abto --skill abto --global --agent claude-code --copy --yes

Verify the installation.

Terminal window
npx --yes skills@latest list --global --agent claude-code

The global installation path is ~/.claude/skills/abto.

Terminal window
npx --yes skills@latest update abto --global --yes
npx --yes skills@latest remove abto --global --agent codex --yes
npx --yes skills@latest remove abto --global --agent claude-code --yes

If a project-local Skill has the same name, inspect both installations before removing either one. Do not overwrite a locally modified Skill before reviewing the diff and getting approval.

Install a supported Node.js version with the version manager the project already uses. Do not introduce a second version manager.

Installation succeeds but the Skill is not listed

Section titled “Installation succeeds but the Skill is not listed”
  1. Confirm that you used --agent codex or --agent claude-code for the current agent.
  2. Confirm that --copy is present.
  3. Inspect the expected global installation path.
  4. Run the relevant list command again.
  5. Restart the agent session.

Return to Get started after installation to integrate a real project.