Quick Start
Open a terminal in the repository where you want to use ag-skill.
1. Install ag-skill
uv tool install ag-skill
2. List available skills
ag-skill list
3. Install a skill
ag-skill install <skill-name>
# Example
ag-skill install testing
4. Install a full agent team (bundle)
The core-agents bundle scaffolds an architect, coder, UI developer, and tester
into your repo — ready for spec-to-ship workflows.
ag-skill add core-agents
# With explicit stack selection
ag-skill add core-agents --backend python --frontend react
5. Validate your install
ag-skill doctor
Common examples
# List all skills
ag-skill list
# List available bundles
ag-skill bundles
# Install multiple skills
ag-skill install testing docs ci
# Install all skills for all targets, overwriting existing ones
ag-skill install --all --target all --force
# Remove a skill
ag-skill remove testing
# Upgrade installed skills
ag-skill upgrade
tip
Run all commands from the root of the repository you want to update.