AXedocs
Install

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
FlagDefaultDescription
`--client autoclaudeagents`
--dest <path>unsetCustom skills directory. Overrides --client.
--forceunsetOverwrite an existing skill.
--uninstallunsetRemove the installed skill.
--printunsetPrint the bundled skill to stdout. Mutually exclusive with install/uninstall flags.

Install paths#

ClientPath
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 agents

What 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.