2.4.1-beta.1) — updated automatically on every beta release.Switch to stable →Getting started
Quickstart
Authenticate, install your first kit, and invoke its skills from your coding assistant.
This walks you from a fresh install to invoking a kit skill. It assumes ak is
already on your PATH — if not, start with Installation.
Sign in
Authenticate with your account. The session token is stored under
~/.agentkit/auth/ as a mode-0600 file (not in the system keychain).
ak loginCheck who you are and what you can install:
ak whoami
ak licensesInstall a kit
A kit is a bundle of skills for a coding assistant. Install one and pick the target runtime — here, Claude Code, installed globally:
ak kit init engineer --target claude-code --globalTo install only part of a kit, select or exclude skills:
ak kit install engineer --target codex --global --skills ak-cook,ak-planInvoke a skill
Kit skills are invoked by their slash command inside your assistant, regardless of which kit they came from:
/ak:cook # shared core skill, available in every kit
/ak:agentize # an engineer-kit skillThe kit name you type on the command line stays plain (ak kit init engineer); only the slash invocation uses the ak: prefix.
Next steps
- Installing kits — targets, skill selection, and refresh behavior.
- Updating ak — channels, changelogs, and rollback.
- Onboarding — full first-run setup including backups and feedback.