Skip to main content
Use skills to give Veryfront Agent repeatable workflows and focused reference material. A skill is an instruction file that Agent can load when a task matches the skill description. You can let Agent choose a skill, or start a message with /skillname to request one.

Built-in skills

Veryfront Agent includes built-in platform skills.
SkillPurpose
planCreate structured implementation plans.
buildCreate and edit files for implementation work.
debugDiagnose runtime failures, preview issues, and logs.
reviewReview code, branches, and changes before shipping.
deployManage releases, deployments, domains, and rollout state.
researchCreate source-backed research and durable project artifacts.
knowledgeRetrieve, ingest, audit, and organize project knowledge.
create-agentDesign or improve an AI agent.
manageManage environment variables, members, API keys, and settings.
figmaUse attached Figma designs during implementation.
veryfrontLoad Veryfront platform reference material.
The linked skills have dedicated pages because they need examples, inputs, outputs, or decision guidance.

Add a project skill

Create project skills when the same workflow comes up often. Create skills/{skill-id}.md in your project:
skills/accessibility-review.md
---
name: Accessibility Review
description: Review UI changes for keyboard, screen reader, and contrast issues.
allowed-tools:
  - list_files
  - get_file
  - search_files
---

# Accessibility Review

Use this skill when reviewing UI changes.

Check:

- Keyboard navigation.
- Form labels and error states.
- Focus order and visible focus.
- Color contrast.
- Screen reader names for icon-only controls.

Skill fields

FieldDescription
nameDisplay name.
descriptionShort routing description. Agent uses it to decide when the skill applies.
allowed-toolsOptional tool allowlist for work done through the skill.
modelOptional model override. Use it only when the workflow needs a different model budget.
max-stepsOptional step budget for longer workflows.

Write useful skill descriptions

The description is the routing contract.
WeakBetter
Helps with quality.Review UI changes for keyboard, screen reader, and contrast issues.
Build stuff.Implement scoped frontend changes using existing project patterns.
Research.Compare options using project files and external sources, then write a report.

Use a skill

  • Let the agent load a skill automatically when it matches the task.
  • Type /skillname to trigger a specific skill.
  • Select a skill from the chat interface when you want explicit control.

Keep skills focused

One skill covers one repeatable workflow. Move long reference material into files linked from the skill when the workflow needs supporting context.

Next

GoalPage
Plan project workPlan skill
Build a project changeBuild skill
Set project-wide rulesProject instructions
Understand child runsChild forks