Skip to main content
Alison Aquinas logoAlison's LLM Skills Marketplace

How to install skills from GitHub

Claude Code can install skill bundles straight from a GitHub repository. This guide walks through the full flow end-to-end using the real bundles published in this marketplace.

Prerequisites

Step 1. Register the marketplace

Tell Claude Code where to find skill bundles. Either command below works — the first references this GitHub repository directly, the second loads the published catalog JSON:

/plugin marketplace add alisonaquinas/llm-skills
/plugin marketplace add https://llm-skills.alisonaquinas.com/marketplace.json

Claude Code stores the marketplace reference in its configuration. You only do this once per machine, not once per bundle.

Step 2. Install a bundle

Once the marketplace is registered, install any bundle by name. For example, to install the Shared Skills bundle:

/plugin install shared-skills@llm-skills

Or the CI/CD bundle:

/plugin install ci-cd@llm-skills

The syntax is /plugin install <pluginName>@llm-skills. You can find the exact install command on every bundle page — there are 5 bundles total. See the home page for the full list.

Step 3. What happens after install

Claude Code downloads the bundle at the version pinned in the marketplace (every bundle on this site is tagged — the catalog records the exact ref), unpacks it into your Claude Code plugin directory, and loads every skill inside the bundle into the trigger table. The next time you start a conversation, the agent sees each skill's trigger description. When your request matches, Claude Code pulls the skill into context automatically — you do not normally call skills by name.

Updating an installed bundle

Bundles are versioned. When a new release is published, re-run /plugin install with the same identifier — Claude Code will fetch the latest pinned version from the marketplace and replace the installed copy. You can also refresh the marketplace first with /plugin marketplace update to pull the newest catalog entries before installing.

Uninstalling a bundle

Remove a bundle with /plugin uninstall <pluginName>@llm-skills. That removes the bundle from Claude Code's plugin directory and drops all skills it contained from the trigger table in new sessions.

Troubleshooting

Where to go next