Agents

24 public agents from 9 publishers, placed on the delivery lifecycle. These run their own loop — hand one a job and it keeps going without you.

The registry calls everything a skill. That flattens the distinction that matters most when you are deciding what to install. A skill is knowledge the model reads and applies to whatever it was already doing — it loads, it shifts the output, you move on. An agent takes the wheel: it spawns subagents, drives a browser, writes artifacts, and runs a multi-step loop of its own.

That difference is a budget. An agent costs tokens and wall-clock time, and it needs a task actually worth handing over — a test suite to generate, a codebase to audit, a browser flow to exercise. Installing one you never invoke costs you nothing but context; invoking one casually costs real money. The 59 entries on the skills page are the cheap half.

24 agents

Ordered by delivery phase. Anything that spans two phases is listed under both — the phase chips on each card say which.

Plan & specify 2

Turning an intention into something an agent can execute without inventing the requirements as it goes.

Grilling

mattpocock/skills

Interviews you about your own plan, relentlessly, until the assumptions that were never stated are on the table.

Reach for it when You are about to start building and the plan feels fine — which is exactly when it has not been tested.

Planany
npx skills add mattpocock/skills

Installs all of skills, not this one alone.

To PRD

mattpocock/skills

Turns a conversation into a product requirements document somebody else could pick up.

Reach for it when The decision happened in a thread and now needs to exist somewhere a new joiner can read it.

Planany
npx skills add mattpocock/skills

Installs all of skills, not this one alone.

Design & architect 1

Interfaces, module boundaries and domain language — decided before the code sets them in concrete.

Official

Security threat model

openai/skills

Produces a threat model for a feature or system — assets, entry points, trust boundaries, mitigations.

Reach for it when A new externally-reachable surface, before it is built rather than after it is pentested.

SecureDesignany
npx skills add openai/skills

Installs all of skills, not this one alone.

Implement 4

Writing the change: framework-specific conventions, and the discipline that keeps a long agent run on the rails.

Executing plans

obra/superpowers

Works through a written plan step by step, checking off as it goes and stopping when a step does not hold.

Reach for it when You have a plan and want it executed in order, not reinterpreted halfway through.

Buildany
npx skills add obra/superpowers

Installs all of superpowers, not this one alone.

Subagent-driven development

obra/superpowers

Splits work across subagents with their own context windows so a long task does not degrade as the transcript grows.

Reach for it when The job is big enough that quality visibly drops before it finishes.

Buildany
npx skills add obra/superpowers

Installs all of superpowers, not this one alone.

Dispatching parallel agents

obra/superpowers

Runs genuinely independent work concurrently, with the rules for when that is a speedup and when it is a merge conflict.

Reach for it when Several unrelated changes across a repo that do not touch the same files.

Buildany
npx skills add obra/superpowers

Installs all of superpowers, not this one alone.

Official

MCP builder

anthropics/skills

Builds a Model Context Protocol server — tool design, transport, schema, the mistakes that make a server unusable.

Reach for it when You are exposing an internal system to agents and want the tool surface designed rather than generated.

Buildany
npx skills add anthropics/skills

Installs all of skills, not this one alone.

Test 4

Proving the change does what it claims — and finding the assertions that were never written.

Official

Webapp testing

anthropics/skills

Drives a real browser against a running app and reports what it found.

Reach for it when You want the change exercised end to end rather than asserted about in a unit test.

Testweb
npx skills add anthropics/skills

Installs all of skills, not this one alone.

Browser testing with DevTools

addyosmani/agent-skills

Uses the DevTools protocol to inspect, measure and reproduce behaviour in a live page.

Reach for it when A bug that only exists in the browser, and only with the real network and real data.

TestOperateweb
npx skills add addyosmani/agent-skills

Installs all of agent-skills, not this one alone.

Official

Test gap analysis

dotnet/skills

Finds the behaviour that no test currently exercises and reports it as a list.

Reach for it when Inheriting a service with a suite nobody trusts and no idea where the holes are.

Test.net
npx skills add dotnet/skills

Installs all of skills, not this one alone.

Official

Code testing agent

dotnet/skills

A multi-agent pipeline that researches, plans and then generates a working test suite — language-agnostic despite the publisher.

Reach for it when A module with no tests at all, where the first hour is deciding what is even worth asserting.

Testany
npx skills add dotnet/skills

Installs all of skills, not this one alone.

Review 4

Reading a diff critically, and the far harder skill of acting on what a reviewer said.

Requesting code review

obra/superpowers

Dispatches a reviewer with fresh context, so the review is not done by the model that just wrote the code.

Reach for it when Before you open the PR — a self-review from the authoring context finds almost nothing.

Reviewany
npx skills add obra/superpowers

Installs all of superpowers, not this one alone.

Differential security review

trailofbits/skills

Security-focused review of a PR, commit or diff — risk-first, evidence-backed, with stated coverage limits.

Reach for it when A change touching auth, crypto, value transfer or an external call, where a generic reviewer will not go deep enough.

ReviewSecureany
npx skills add trailofbits/skills

Installs all of skills, not this one alone.

Fix review

trailofbits/skills

Checks that a fix actually closes the reported issue and did not just move it.

Reach for it when Verifying a security patch before you tell the reporter it is resolved.

ReviewSecureany
npx skills add trailofbits/skills

Installs all of skills, not this one alone.

Official

Address PR comments

openai/skills

Works through review comments on a pull request and responds to or resolves each one.

Reach for it when A PR with twenty review threads, most of which are small and unambiguous.

ShipReviewany
npx skills add openai/skills

Installs all of skills, not this one alone.

Secure 6

Threat modelling, scanning, supply chain, and finding the other five copies of the bug you just found.

Differential security review

trailofbits/skills

Security-focused review of a PR, commit or diff — risk-first, evidence-backed, with stated coverage limits.

Reach for it when A change touching auth, crypto, value transfer or an external call, where a generic reviewer will not go deep enough.

ReviewSecureany
npx skills add trailofbits/skills

Installs all of skills, not this one alone.

Fix review

trailofbits/skills

Checks that a fix actually closes the reported issue and did not just move it.

Reach for it when Verifying a security patch before you tell the reporter it is resolved.

ReviewSecureany
npx skills add trailofbits/skills

Installs all of skills, not this one alone.

Official

Security threat model

openai/skills

Produces a threat model for a feature or system — assets, entry points, trust boundaries, mitigations.

Reach for it when A new externally-reachable surface, before it is built rather than after it is pentested.

SecureDesignany
npx skills add openai/skills

Installs all of skills, not this one alone.

Variant analysis

trailofbits/skills

Finds the other instances of a bug you already found — one root cause usually has several manifestations.

Reach for it when The moment a vulnerability is confirmed. Fixing only the reported instance is the most common incomplete fix there is.

Secureany
npx skills add trailofbits/skills

Installs all of skills, not this one alone.

Supply chain risk auditor

trailofbits/skills

Audits dependencies and their provenance for supply-chain risk.

Reach for it when A release with new third-party dependencies, or a periodic sweep of what you already ship.

SecureShipany
npx skills add trailofbits/skills

Installs all of skills, not this one alone.

Agentic actions auditor

trailofbits/skills

Audits CI workflows that invoke AI agents — where prompt injection becomes a repository write.

Reach for it when You just gave an agent a token in CI. This is the review of that decision.

Secureci/cd
npx skills add trailofbits/skills

Installs all of skills, not this one alone.

Ship 5

Branches, pipelines, releases and the deploy itself.

Supply chain risk auditor

trailofbits/skills

Audits dependencies and their provenance for supply-chain risk.

Reach for it when A release with new third-party dependencies, or a periodic sweep of what you already ship.

SecureShipany
npx skills add trailofbits/skills

Installs all of skills, not this one alone.

Official

Fix CI

openai/skills

Reads a failing CI run, reproduces the failure and pushes the fix.

Reach for it when A red pipeline on a PR you already understand, where the loop is mechanical.

Shipci/cd
npx skills add openai/skills

Installs all of skills, not this one alone.

Official

Address PR comments

openai/skills

Works through review comments on a pull request and responds to or resolves each one.

Reach for it when A PR with twenty review threads, most of which are small and unambiguous.

ShipReviewany
npx skills add openai/skills

Installs all of skills, not this one alone.

Official

Deploy to Vercel

vercel-labs/agent-skills

Takes a project from local to a live Vercel deployment.

Reach for it when First deploy of a new app, or wiring preview deploys into a workflow.

Shipweb
npx skills add vercel-labs/agent-skills

Installs all of agent-skills, not this one alone.

GitHub triage

trailofbits/skills

Triages issues and pull requests into something a maintainer can work through.

Reach for it when An issue tracker that has stopped being read because it is too long.

ShipOperateany
npx skills add trailofbits/skills

Installs all of skills, not this one alone.

Operate & maintain 3

Production reality: debugging, performance, instrumentation, and writing down why the system is the way it is.

Browser testing with DevTools

addyosmani/agent-skills

Uses the DevTools protocol to inspect, measure and reproduce behaviour in a live page.

Reach for it when A bug that only exists in the browser, and only with the real network and real data.

TestOperateweb
npx skills add addyosmani/agent-skills

Installs all of agent-skills, not this one alone.

GitHub triage

trailofbits/skills

Triages issues and pull requests into something a maintainer can work through.

Reach for it when An issue tracker that has stopped being read because it is too long.

ShipOperateany
npx skills add trailofbits/skills

Installs all of skills, not this one alone.

Diagnose

mattpocock/skills

A diagnosis loop that ends in a regression test, not just a green build.

Reach for it when A production bug where the fix matters less than making sure it cannot come back.

Operateany
npx skills add mattpocock/skills

Installs all of skills, not this one alone.

Working with skills 2

Finding skills, writing your own, and keeping a skill library from turning into a junk drawer.

Official

Find skills

vercel-labs/skills

Searches the registry for a skill that fits what you are doing, and installs it.

Reach for it when The honest answer to 'is there already a skill for this' — there are 20,000 of them.

Metaany
npx skills add vercel-labs/skills

Installs all of skills, not this one alone.

Official

Skill creator

anthropics/skills

Anthropic's own tool for writing a new skill in the format agents actually load.

Reach for it when You have internal knowledge worth encoding and want it to match the house format.

Metaany
npx skills add anthropics/skills

Installs all of skills, not this one alone.

Installing

Same CLI as skills — there is no separate agent installer, because the registry does not distinguish them. The split on this site is ours:

terminal
$ npx skills add obra/superpowers
!

An agent you install is an agent your model can invoke. The unit is the repository, so one command can add several autonomous loops at once. That is fine — they only cost you when something calls them — but it is worth knowing what arrived. Read the entry before you hand it a job, not after.

Before you hand one a job

Agents fail differently from skills. A skill that misses the mark leaves you with a slightly worse diff; an agent that misses the mark can spend twenty minutes and a lot of tokens producing confident, wrong work. Three things worth doing every time:

  • Give it a task with a checkable result. “Write tests for this module” has an obvious pass/fail. “Improve the architecture” does not, and you will not know when it is done.
  • Run it where you can throw the result away. A branch or a worktree, never a dirty main checkout.
  • Read what it wrote before you read its summary. The summary is the agent's own account of its work, and it is the least reliable artifact it produced.

What this page is not

Nothing on this page is ours. Redline does not vendor, fork, host or modify any of these. Each entry links to the publisher's repository, and the install command pulls from them directly. If a publisher changes an agent, you get their change — this is a map, not a mirror.

The skill/agent split is a judgement we made, not a field the registry publishes. An entry is an agent here if it runs a multi-step loop of its own rather than informing one you are already running. Reasonable people would draw a couple of these differently.

Where this stops

An agent writing code is still code arriving in a pull request, and nothing on this page reviews it. That is the half Redline does — see the output contract and the merge gate. The more autonomous the thing writing the diff, the more the gate is the only thing standing between it and main.