Skills are a mechanism in Qoder for packaging domain expertise into reusable capabilities. Each Skill contains a SKILL.md file that defines the skill's description, instructions, and optional auxiliary files. Skills work identically in both Qoder IDE and CLI.Key features:
Intelligent invocation: The model autonomously decides when to use a Skill based on user requests and descriptions
Modular design: Each Skill focuses on solving a specific type of task
Flexible extension: Supports both user-level and project-level custom Skills
Skill UI lets agents render interactive HTML components during execution — forms, charts, config panels, and more. The generated components are embedded directly in the conversation flow, so you can interact without leaving the chat. The first time you use a Skill UI, the agent needs to create the interface for that Skill.In Quest's Agent mode, use the /create-skill-ui command. The agent will create an HTML Widget interface for the specified Skill, which you can preview and iterate on in real time before saving as a template file.
/vercel-deploy is a one-click deployment capability in Quest. It automates the entire workflow of deploying your web project to Vercel — from CLI setup and OAuth login to building and production deployment.Use the /vercel-deploy command in the Quest conversation, and Qoder will automatically start the deployment workflow. On the first deployment, Qoder will guide you through Vercel OAuth login. Follow the prompts to complete account linking in your browser. Once authorized, Qoder will automatically build your project and deploy it to Vercel's production environment. After a successful deployment, you'll receive a live URL.
Vercel account required: Make sure you have a Vercel account before deploying. You can create one during the authorization flow if you don't have one yet.
Project must be a buildable web app: Vercel supports Next.js, React, Vue, Svelte, and other major frameworks. If the project lacks a valid build configuration, deployment may fail. Verify that your project builds successfully locally before deploying.
create-skill is Qoder's built-in skill creation assistant. It guides you step-by-step through an interactive dialogue to create SKILL.md files that conform to specifications.Usage:
Copy
/create-skill <Skill description, e.g., convert Word documents to PDF>
If you're unfamiliar with the SKILL.md file format, we recommend using /create-skill first to generate an initial template, then adjust and optimize it based on your actual needs.
Use case: Quickly create custom skills without needing to understand the detailed skill file format.
Use the skills CLI to install third-party Skills from the skills.sh marketplace or GitHub with one command.Execute the following commands in the Qoder IDE terminal:
Copy
# Install from skills.sh marketplacenpx skills add vercel-labs/agent-browser -a qoder# Install specific skill from GitHub repositorynpx skills add https://github.com/anthropics/skills --skill skill-creator -a qoder
Create a log-analyzer Skill that automatically activates when you say "analyze this log", helping identify errors, performance issues, and anomaly patterns.
For the complete guide on Skills, including how to create them, write SKILL.md files, best practices, and troubleshooting, see Skills Full Documentation.