Skills teach your agent how to handle specific tasks. For example, the remotion-best-practices skill knows how to create videos with Remotion, and the web-design-guidelines skill knows how to build polished web interfaces.
For more on what skills are and how they work, see agentskills.io.
construct skill install vercel-labs/agent-skills --skill web-design-guidelinesSkills can be installed from GitHub, GitLab, or any URL pointing to a SKILL.md file.
GitHub
# A specific skill from a repository
construct skill install vercel-labs/agent-skills --skill web-design-guidelines
# All skills from a repository
construct skill install vercel-labs/agent-skills
# From a specific branch
construct skill install github.com/vercel-labs/agent-skills/tree/v2/web-design-guidelinesGitLab
construct skill install gitlab.com/group/project/-/tree/main/skillsDirect URL
construct skill install https://example.com/path/to/SKILL.mdList skills
construct skill listUpdate skills
# Update all skills
construct skill update
# Update a specific skill
construct skill update web-design-guidelinesDelete a skill
construct skill delete web-design-guidelinesReinstall a skill
construct skill install vercel-labs/agent-skills --skill web-design-guidelines --forceSkills can live in two places:
- Repository skills in
.construct/skills/— shared with collaborators, only available in that repository - User skills in
~/.config/construct/skills/— available everywhere, just for you
When both exist with the same name, the repository skill wins.
Install commands always install to the user location. To create a repository skill, add it directly to .construct/skills/<skill-name>/.