> ## 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.

# Concepts

> How Veryfront framework primitives, conventions, and runtime fit together.

Concepts explain how Veryfront Code is organized and where each primitive
belongs. Start here when ownership, lifecycle, or framework boundaries are not
clear.

## Contents

| Concept                                                       | Explains                                                   |
| ------------------------------------------------------------- | ---------------------------------------------------------- |
| [Veryfront Code](/code/concepts/framework-overview)           | How the main framework surfaces fit together.              |
| [Framework primitives](/code/concepts/framework-primitives)   | Overview of framework primitives.                          |
| [App](/code/concepts/app)                                     | The user-facing route and rendering boundary.              |
| [Agent](/code/concepts/agent)                                 | The model reasoning loop and output boundary.              |
| [Tool](/code/concepts/tool)                                   | The contract for one callable capability.                  |
| [Skill](/code/concepts/skill)                                 | How skills package reusable agent instructions.            |
| [Prompt](/code/concepts/prompt)                               | Reusable instruction templates for MCP.                    |
| [Resource](/code/concepts/resource)                           | Read-only context exposed through MCP.                     |
| [Work](/code/concepts/work)                                   | Business process outcomes and criteria.                    |
| [Task](/code/concepts/task)                                   | Background work before it becomes a run.                   |
| [Workflow](/code/concepts/workflow)                           | Multi-step work with visible process state.                |
| [Run](/code/concepts/run)                                     | Durable records for background execution.                  |
| [Schedule](/code/concepts/schedule)                           | Triggers that create runs.                                 |
| [Integration](/code/concepts/integration)                     | External service access, auth, and remote tools.           |
| [MCP server](/code/concepts/mcp-server)                       | Tools, prompts, and resources exposed to assistants.       |
| [Sandbox](/code/concepts/sandbox)                             | Isolated command and file execution.                       |
| [Framework conventions](/code/concepts/framework-conventions) | File layout, auto-discovery, shared code, content, config. |
| [Framework extensions](/code/concepts/framework-extensions)   | Replaceable runtime infrastructure.                        |
