Agent Skills
Install AXe's bundled skill so AI agents use the right commands, flags, and verification habits.
AXe ships a bundled SKILL.md plus CLI and batch references. axe init writes that skill to Claude Code, Agents, a custom skill directory, or stdout.
Install
shell
axe init
axe init --client claude
axe init --client agents
axe init --dest ~/my-skills
axe init --print| Flag | Default | Description |
|---|---|---|
| `--client auto | claude | agents` |
--dest <path> | unset | Custom skills directory. Overrides --client. |
--force | unset | Overwrite an existing skill. |
--uninstall | unset | Remove the installed skill. |
--print | unset | Print the bundled skill to stdout. Mutually exclusive with install/uninstall flags. |
Install paths
| Client | Path |
|---|---|
| Claude Code | ~/.claude/skills/axe/SKILL.md |
| Agents | ~/.agents/skills/axe/SKILL.md |
Custom --dest | <dest>/axe/SKILL.md |
In non-interactive shells, pass --client, --dest, or --print; AXe will not silently guess.
Uninstall
shell
axe init --uninstall --client claude
axe init --uninstall --client agentsWhat the skill teaches
Discover
Find the simulator UDID and inspect UI before interacting.
Target
Prefer selectors over coordinates, then choose the right command for each interaction.
Verify
Treat most HID commands as fire-and-forget, with slider as the verifying exception.
Finish
Verify outcomes with describe-ui or screenshot, and avoid unsupported batch steps.