Skip to main content
Qodo Skills bring Qodo’s engineering intelligence into your AI coding agent. Skills are maintained as an open-source project on GitHub and can be installed directly from the repository. Instead of limiting quality checks to pull requests, Skills shift quality and governance left by applying your defined rules, surfacing issues early, and helping address feedback as you write code, directly inside the tools you already use. Skills are compatible with Claude Code, Cursor, Windsurf, Cline, and any agent supporting the Agent Skills standard.

What are Agent Skills

Skills are reusable, agent-agnostic instruction sets that extend what your AI coding agent can do. Each skill is a plain-text file that tells the agent how to complete a specific task, such as fetching rules, resolving review comments, or executing other codified engineering actions. Skills follow the open Agent Skills standard, making them portable across compatible agents.

How Skills are executed

When you install a skill, it is placed in a directory monitored by your agent and becomes available as a named command. Each skill is defined in a plain-text SKILL.md file. When invoked, your agent reads these instructions and executes them, interacting with Qodo services or your Git provider as needed, and returning results in the conversation.

Core Qodo Skills

qodo-get-rules

Fetches your repository-specific coding rules from the Qodo platform so that your agents write code aligned with your standards from the start. Key features:
  • Retrieves only relevant rules using semantic matching.
  • Applies severity levels (ERROR, WARNING, RECOMMENDATION).
  • Combines topic-based and cross-cutting rule retrieval.
  • Designed to run before code generation, editing, or refactoring.
Recommended use: Run before writing or modifying code so rules are already in context, reducing issues before they appear.

qodo-pr-resolver

Fetches open Qodo review findings from your Git providercand helps resolve them interactively or in batch using local Git CLI operations, keeping pull requests clean and up to date. Main features:
  • Works across GitHub, GitLab, Bitbucket, Azure DevOps, enabling consistent PR resolution across providers.
  • Interactive issue review and auto-fix modes.
  • Inline comment handling with automated commits.
  • Severity mapping from Qodo’s action levels.
  • Automatic PR/MR summary comments.
Recommended use: Verify automated summaries before merging. The skill posts fix documentation and replies to inline comments automatically, and a quick review ensures the responses are accurate.

Get started

Install all Qodo skills in your agent:
npx skills add qodo-ai/qodo-skills
For full setup, configuration, and troubleshooting, see the Qodo Skills repository in Github.