Skip to main content
Skills are instruction sets that the agent can load autonomously when relevant, or that you can explicitly trigger via /skillname commands.

Default skills

Your project includes four built-in skills:
SkillPurpose
planCreate structured implementation plans
buildGuide feature development and code generation
deployManage deployment workflows
interviewGather requirements through guided questions
These skills are located in .veryfront/skills/ and can be customized or extended.

Creating a skill

Create a SKILL.md file in .veryfront/skills/{skill-id}/:
.veryfront/skills/review/SKILL.md
---
name: Code Review
description: Review code for quality, security, and best practices
allowed-tools:
  - read_file
  - search_files
---

# Code Review Skill

When reviewing code, analyze for:

1. **Security vulnerabilities.** SQL injection, XSS, etc.
2. **Performance issues.** N+1 queries, unnecessary re-renders
3. **Code quality.** Naming, structure, DRY principles

Frontmatter options

FieldDescription
nameDisplay name
descriptionBrief description (shown in skill list)
allowed-toolsRestrict which tools the skill can use

Using skills

  • Automatic. The agent loads skills when it determines they’re relevant
  • Explicit. Type /skillname to trigger a specific skill
  • Via menu. Select from available skills in the chat interface