A collection of Agent Skills we use at Cline and want to share with the community.
These skills work with any agent that supports the Agent Skills standard, including Cline, Claude Code, Cursor, OpenCode, OpenAI Codex, and Pi.
Install using the npx skills CLI:
npx skills add https://github.com/cline/skills
Install using the plugin marketplace:
/plugin marketplace add cline/skills
/plugin install cline@cline
Install from the Cursor Marketplace or add manually via Settings > Rules > Add Rule > Remote Rule (Github) with cline/skills.
Clone this repo (with submodules) and copy the skill folders into the appropriate directory for your agent:
git clone --recurse-submodules https://github.com/cline/skills
| Agent | Skill Directory | Docs |
|---|---|---|
| Cline | ~/.cline/skills/ |
docs |
| Claude Code | ~/.claude/skills/ |
docs |
| Cursor | ~/.cursor/skills/ |
docs |
| OpenCode | ~/.config/opencode/skills/ |
docs |
| OpenAI Codex | ~/.codex/skills/ |
docs |
| Pi | ~/.pi/agent/skills/ |
docs |
Skills are contextual and auto-loaded based on your conversation. When a request matches a skill's triggers, the agent loads and applies the relevant skill to provide accurate, up-to-date guidance.
| Skill | Useful for |
|---|---|
| cline-sdk | Building AI agents with the Cline SDK: Agent runtime, ClineCore sessions, custom tools, plugins, events, LLM providers, scheduling, multi-agent teams, and production deployment |
| review-team | Running a fleet of specialized reviewer subagents (correctness, security, architecture, conventions, simplicity, UX, reliability, telemetry, testing, compatibility, docs) against the same change, single-pass or iterate-until-clean |
skills/
cline-sdk/ -> .vendor/sdk-skill/skill/cline-sdk (git submodule, see below)
review-team/ Multi-reviewer code review fleet
.vendor/
sdk-skill/ Submodule of https://github.com/cline/sdk-skill
skills/cline-sdk is a symlink into the cline/sdk-skill submodule, which is maintained in its own repo. To pull the latest:
git submodule update --remote .vendor/sdk-skill
Open a PR. New skills should follow the Agent Skills spec: a SKILL.md at the skill directory root with a frontmatter name and description, plus any supporting reference files.