aiguild
v1.0.2
Published
AIGuild CLI — install and manage AI skills from your terminal
Downloads
383
Maintainers
Readme
aiguild CLI
The official command-line tool for AIGuild — install and manage AI skills from your terminal.
Install
npm install -g aiguildOr with pnpm:
pnpm add -g aiguildQuick Start
1. Get your API key
Go to AIGuild → Settings → CLI Access and click Generate Key.
2. Authenticate
aiguild auth login --key aiguild_xxxxxxxxxxxx3. Search and install skills
aiguild search "sql optimizer"
aiguild install sql-query-optimizerCommands
| Command | Description |
|---|---|
| aiguild auth login --key <key> | Authenticate with your API key |
| aiguild auth logout | Remove stored credentials |
| aiguild auth status | Check current authentication |
| aiguild search [query] | Search the skill registry |
| aiguild install <slug> | Install a skill to your project |
| aiguild uninstall <slug> | Remove an installed skill |
| aiguild info <slug> | Show skill details |
| aiguild list | List installed skills |
| aiguild update --check | Check for available updates |
| aiguild update --all | Update all outdated skills |
| aiguild config | Show current configuration |
Options
aiguild search --framework crewai # Filter by framework
aiguild install my-skill --dir ./skills # Custom install directory
aiguild update --check # Dry run, show available updates onlyConfiguration
Config is stored at ~/.aiguild/config.json. You can also use environment variables:
AIGUILD_API_KEY=aiguild_xxx aiguild search
AIGUILD_API_URL=http://localhost:3000 aiguild search # Use local serverRequirements
- Node.js 18 or higher
