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-textSKILL.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.
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.