Update all your AI agent CLIs and skills concurrently.
CleanShot.2026-05-31.at.17.04.55.mp4
npx aiupdate # update everything (tools + skills)
npx aiupdate claude # update one tool (skills skipped)
npx aiupdate claude codex opencode # update specific tools (skills skipped)
npx aiupdate skills # update skills only
npx aiupdate claude skills # update one tool + skillsOr install globally:
npm install -g aiupdateEach tool runs concurrently. After updating, aiupdate shows the version change (or "up to date") for each tool.
| Tool | Update command |
|---|---|
| Claude Code | claude update |
| OpenAI Codex | codex update |
| OpenCode | opencode upgrade |
| Cursor Agent | cursor-agent update |
| GitHub Copilot CLI | copilot update |
| pi | pi update pi |
| skills | npx skills update -g -p -y |
Tools not installed on your machine are silently skipped.
To add a new tool, use the /add-agent skill in Claude Code — it walks through verification, adds the entry to AI_TOOLS, builds, and commits.
If adding manually, open src/cli.ts and append one line to AI_TOOLS:
{ name: 'mytool', command: 'mytool', args: ['update'], versioned: true },Then build and test:
pnpm run build
aiupdate mytool