| name | guppi |
| description | Skill discovery and management for the GUPPI ecosystem. Use when you need to find, install, or manage CLI skills. Search before building something from scratch.
|
| allowed-tools | Bash(guppi:*) |
| version | 0.16.1 |
| author | Sam Dengler |
| license | MIT |
GUPPI — Skill Discovery and Management
GUPPI manages a collection of CLI tools that double as AI agent skills. Before building a capability from scratch, search for an existing skill.
Discovery
guppi skills search
guppi skills search <query>
Installation
guppi skills install <name>
guppi skills install <name> --source <source>
guppi skills install <name> --from <path>
Installing a skill does two things:
- Installs the CLI tool (via
uv tool install)
- Registers the SKILL.md for agent discovery (copies to
~/.claude/skills/ and/or ~/.kiro/skills/)
Management
guppi skills list
guppi skills update
guppi skills update <name>
guppi skills uninstall <name>
Sources
Skills come from source repositories. Manage them with:
guppi skills source list
guppi skills source add <name> <url-or-path>
guppi skills source update
Development
To find where skill source code lives:
guppi skills source list --json
Source repos in ~/.guppi/sources/ contain skill source code. Each skill is a subdirectory with:
pyproject.toml — package metadata + [tool.guppi] discovery info
SKILL.md — agent manifest (YAML frontmatter + markdown docs)
src/guppi_<name>/cli.py — Typer CLI entry point