> ## Documentation Index
> Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Build skill

> Use the build skill to make scoped project changes.

Use `build` when the requested change is clear enough to implement.

## When to use it

| Use `build` for               | Use another skill for                   |
| ----------------------------- | --------------------------------------- |
| Adding a scoped feature       | Planning an unclear architecture change |
| Editing docs, code, or config | Reviewing an existing branch            |
| Applying an approved plan     | Debugging an unknown failure            |

## What to provide

| Input        | Example                                  |
| ------------ | ---------------------------------------- |
| Outcome      | Add a settings page empty state.         |
| Boundaries   | Do not change account routes.            |
| Patterns     | Use existing card and button components. |
| Verification | Run the affected tests and lint.         |

## Example request

```text theme={null}
/build Add an empty state to the settings page.
Use the existing UI components.
Do not change account routes.
Run the relevant checks after editing.
```

## Expected output

Agent edits the project, runs the available checks, and summarizes the changed files.

## Related

| Page                                 | Use it to                                   |
| ------------------------------------ | ------------------------------------------- |
| [Plan skill](/agent/skills/plan)     | Prepare unclear or broad work before edits. |
| [Debug skill](/agent/skills/debug)   | Find and fix a failure.                     |
| [Review skill](/agent/skills/review) | Review the branch after changes.            |
