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.
Before installation
Section titled “Before installation”You need Node.js 22.20 or later and npx.
node --versionnpm --versionnpx --versionUse --copy so each agent receives a real Skill directory.
npx --yes skills@latest add https://github.com/greedy-co/abto-sdk/tree/main/abto --skill abto --global --agent codex --copy --yesVerify the installation.
npx --yes skills@latest list --global --agent codexThe global installation path is ~/.agents/skills/abto.
Restart the agent session if the Skill does not appear after the first installation.
Claude Code
Section titled “Claude Code”npx --yes skills@latest add https://github.com/greedy-co/abto-sdk/tree/main/abto --skill abto --global --agent claude-code --copy --yesVerify the installation.
npx --yes skills@latest list --global --agent claude-codeThe global installation path is ~/.claude/skills/abto.
Update and remove
Section titled “Update and remove”npx --yes skills@latest update abto --global --yesnpx --yes skills@latest remove abto --global --agent codex --yesnpx --yes skills@latest remove abto --global --agent claude-code --yesIf 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.
Troubleshooting
Section titled “Troubleshooting”npx is missing
Section titled “npx is missing”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”- Confirm that you used
--agent codexor--agent claude-codefor the current agent. - Confirm that
--copyis present. - Inspect the expected global installation path.
- Run the relevant
listcommand again. - Restart the agent session.
Return to Get started after installation to integrate a real project.