aiupdate
v0.1.4
Published
Update all your AI agent CLIs and skills concurrently
Downloads
805
Maintainers
Readme
aiupdate
Update all your AI agent CLIs and skills concurrently.
https://github.com/user-attachments/assets/f4bdd8cb-9c70-4858-a6d1-8ca07d0eadb2
Usage
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.
What it updates
| 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 |
| Antigravity | agy update |
| skills | npx skills update -g -p -y |
Tools not installed on your machine are silently skipped.
Contributing
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