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

How to install skills from GitHub

Use npx skills for the direct install path, or use the Claude Code and Codex marketplace flows when you want plugin-managed bundles. The commands below use the real bundles published in this marketplace.

Prerequisites

Option 1. Install directly with npx skills

The direct path uses the npm package named skills. It reads a GitHub repository, selects skill directories, and installs them without first registering this marketplace.

Install every bundle published here:

npx skills add alisonaquinas/llm-shared-skills --skill '*' -g -y
npx skills add alisonaquinas/llm-ci-dev --skill '*' -g -y
npx skills add alisonaquinas/llm-software-design --skill '*' -g -y
npx skills add alisonaquinas/llm-doc-skills --skill '*' -g -y
npx skills add alisonaquinas/llm-web-design-skills --skill '*' -g -y

Install only the Shared Skills bundle:

npx skills add alisonaquinas/llm-shared-skills --skill '*' -g -y

Install one skill from a bundle repository:

npx skills add alisonaquinas/llm-ci-dev --skill 'github-ci' -g -y

To inspect a repository before installing, run npx skills add alisonaquinas/llm-ci-dev --list. Each bundle and skill page on this site includes its exact copyablenpx skills command.

Option 2. Claude Code 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.

Claude Code 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.

Claude Code 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.

Option 3. Install in Codex

Codex uses its own plugin marketplace command. Add this GitHub repository as a marketplace source:

codex plugin marketplace add alisonaquinas/llm-skills

Restart Codex, open the plugin directory, and choose Alison's LLM Skills Marketplace:

codex
/plugins

Install the bundles your project needs from the directory. The generated Codex marketplace JSON is published at https://llm-skills.alisonaquinas.com/codex-marketplace.json, but the supported install command is the GitHub repository command above.

Updating an installed Claude Code 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