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

What are agent skills?

An agent skill is a small, focused package of instructions and supporting files that teaches a coding agent — like Anthropic's Claude Code or OpenAI's Codex — how to perform a specific task well. Instead of re-explaining "here is how we write a Helm chart" or "here is how we format a PlantUML component diagram" in every chat, you install a skill once and the agent picks it up whenever the task comes up.

How a skill is different from a plain prompt

A prompt lives inside a single conversation. It is gone when the session ends and cannot be shared reliably across projects, teammates, or agents. A skill lives on disk as a versioned bundle. It is:

How a skill triggers

Every skill publishes a short trigger description — a few sentences that tell the agent when to use it. When your request matches, the agent reads the skill's main instructions, pulls in any references it needs, and runs relevant scripts. You normally do not have to invoke a skill by name: just ask the agent to do the task in natural language. For example, installing the PlantUML skill means a request like "draw a sequence diagram for the login flow" starts rendering real UML instead of ASCII art.

What is a skill bundle?

Skills are small, so they are almost always shipped in bundles. A bundle groups related skills under one installable plugin. On this marketplace there are 5 bundles:

You install an entire bundle at once — you do not cherry-pick individual skills. After installation every skill inside the bundle is available to the agent, and the agent picks the right one based on your request.

How installing works

In Claude Code you add this site as a marketplace, then install a bundle with/plugin install. The bundle unpacks into your Claude Code configuration and its skills become available immediately. In Codex you add the same GitHub repository as a plugin marketplace withcodex plugin marketplace add, then install bundles from the Codex plugin directory.

Visit the full skill catalog to browse everything, or read the Claude Code vs Codex comparison to see how the two platforms handle skills differently.

Want the step-by-step install flow? See the install-from-GitHub walkthrough, or browse every long-form guide in the Learn hub.

Official documentation