A plugin marketplace distributing agent skills (agentskills.io format) for Claude Code, opencode, and any agent that loads
SKILL.md.
This repository is a plugin marketplace (catalog at
.claude-plugin/marketplace.json). Each
plugin bundles one or more skills in the
agentskills.io format — a
self-describing SKILL.md plus references and scripts that any compatible
agent can load. It currently ships the argo-rollouts plugin and is
structured to grow: adding a plugin is a new directory under plugins/ plus a
catalog entry; nothing else at the root changes.
Each plugin's version is maintained automatically by release-please and shown in its own README (linked below).
| Plugin | Description | Docs |
|---|---|---|
argo-rollouts |
Author, operate, and troubleshoot Argo Rollouts: canary and blue-green strategies, AnalysisTemplate metric gates, traffic routing, and PEP 723 manifest generators. | README |
Option A — plugin marketplace (Claude Code):
claude plugin marketplace add jessegonzalez/skills
claude plugin install argo-rollouts@jessegonzalez-skills…or, once GitHub Pages is live, add the marketplace from its hosted catalog URL:
claude plugin marketplace add https://jessegonzalez.github.io/skills/marketplace.jsonOption B — manual clone (any agent that loads SKILL.md):
git clone https://github.com/jessegonzalez/skills.git
# Point your agent at the skill you want, e.g.:
# plugins/argo-rollouts/skills/argo-rollouts/SKILL.md
# opencode: add the dir to `skills.paths` in opencode.json
# Claude Code: drop under ~/.claude/skills/There is nothing to pip install. The helper scripts declare their
dependencies inline (PEP 723) and run via
uv.
The marketplace is plugin-bundled (per the plugin-marketplaces spec): each
plugin owns its manifest, skills, and docs under plugins/<plugin>/.
.claude-plugin/marketplace.json # the marketplace catalog (name, description, plugin list)
plugins/<plugin>/
.claude-plugin/plugin.json # the plugin manifest (version authority)
README.md # plugin-specific docs (linked from the table above)
skills/<skill>/
SKILL.md # orientation layer (<500 lines)
references/*.md # deep-dive docs
scripts/*.py # PEP 723 manifest generators (uv run)
tests/ # pytest
evals/ # skill eval harness
githooks/ # tracked hooks (core.hooksPath = githooks)
.github/ # CI, templates, validate_skill.py
Contributions are welcome. Before you start:
-
CONTRIBUTING.md— prerequisites, the five rules, commit conventions, and the verification commands. -
AGENTS.md— operating instructions for any agent (human or AI) working in this repo, including the golden rule: documentation travels with the change. -
Enable the tracked hooks once (they enforce ruff, pytest, the agentskills.io spec check, and Conventional Commits on every commit):
git config core.hooksPath githooks
See
githooks/README.mdfor details and bypass instructions.
.github/workflows/ci.yml runs four independent
jobs on every push to main and every PR against main:
| Job | What it checks |
|---|---|
test |
pytest across each plugin's tests/ (Python 3.14 via uv). |
lint |
ruff check across each plugin's skill directory. |
skill-spec |
Each SKILL.md conforms to the agentskills.io spec. |
smoke |
The gen_* → validate pipeline produces valid manifests. |
All four must stay green.
MIT. Copyright 2026 Jesse Gonzalez.