Skills add domain expertise to an Agent. A Skill is a structured set of instructions and procedures that makes an Agent more capable and reliable on a specific kind of task.
If you use QoderWork or Qoder desktop, you can install the Cloud Agents skill from the skill marketplace to create and manage Cloud Agents directly from your local conversation — no manual API calls needed.
SKILL.md is the core file, written as YAML frontmatter plus Markdown:
name: code-reviewdescription: Perform structured code reviews and produce improvement suggestionsversion: 1.0.0# Code Review## Steps1. Analyze the structure and architecture of the code.2. Check for common issues (security, performance, maintainability).3. Output a structured review report.## Pitfalls- Don't fixate on formatting — prioritize logic errors.- Provide concrete fixes rather than vague critiques.
version is an auto-incremented integer maintained by the server (starting at 1). Each successful re-upload increments it. The version value in SKILL.md frontmatter (e.g. 1.0.0) is informational only and is not the server-side version.
Re-uploading a skill with the same name creates a new version:
# Bump the version field in SKILL.md, then re-uploadcurl -X POST https://api.qoder.com/api/v1/cloud/skills \ -H "Authorization: Bearer $QODER_PAT" \ -F "file=@my-skill-v2.zip"
Agents linked to the Skill always pick up the latest version.
Q: How are Skills different from the Agent system prompt? A: system is general guidance that applies to every task. A Skill is an on-demand expertise module the Agent activates based on the task at hand.Q: How many Skills can an Agent reference? A: There’s no hard limit, but keep it under 10 to maintain predictable behavior.Q: When will Skills go GA? A: The feature is in M2. Reach out if you want early access; broader rollout is coming in a later release.Q: Is there a size limit on the zip? A: A single Skill zip must be 10 MB or less.