veryfront
Build Veryfront apps. Use for real-time errors, route preview, HMR control, and scaffolding pages/APIs/components/AI tools.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Build Veryfront apps. Use for real-time errors, route preview, HMR control, and scaffolding pages/APIs/components/AI tools.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Build, test, push, deploy, and verify with rollback through Git on failure.
Build and run AI apps and agents with Veryfront CLI
Development flywheel - autonomous cycle of run, observe, fix, verify. Use for continuous development with browser automation.
Onboard to veryfront-code architecture, testing, conventions, and PR process.
Diagnose and fix build failures using structured error output.
Diagnose runtime errors by connecting to dev server via MCP.
| name | veryfront |
| description | Build Veryfront apps. Use for real-time errors, route preview, HMR control, and scaffolding pages/APIs/components/AI tools. |
| license | Apache-2.0 |
| compatibility | Veryfront dev server (deno task dev) |
| metadata | {"author":"veryfront","version":"1.0"} |
React meta-framework with App Router and AI-native capabilities.
You already have Read/Write/Edit/Bash. The MCP tools give you:
| Tool | What it does |
|---|---|
vf_list_local_projects | Find Veryfront projects on filesystem |
vf_list_templates | Browse project templates |
vf_list_integrations | Browse service integrations |
| Tool | What it does |
|---|---|
vf_create_project | Create a new project from a template |
vf_scaffold | Generate files in an existing project |
| Tool | What it does |
|---|---|
vf_get_errors | Real-time compile/runtime errors from dev server |
vf_preview_route | HTTP response without opening browser |
vf_trigger_hmr | Force browser refresh after edits |
vf_list_routes | Structured route manifest |
vf_scaffold | Generate correct boilerplate |
vf_get_project_context | Project structure at a glance |
vf_run_tests | Run the project's test suite |
vf_run_lint | Run the linter |
1. vf_list_templates()
2. vf_create_project({ name: "research-agent", template: "ai-agent" })
3. cd research-agent && deno task dev
1. vf_bootstrap()
2. vf_get_conventions({ topic: "ai" })
3. vf_scaffold({ type: "agent", name: "research-agent" })
4. vf_scaffold({ type: "tool", name: "search-docs" })
5. vf_scaffold({ type: "skill", name: "research" })
6. vf_get_errors()
7. vf_run_lint()
The research-agent names are examples. Use names that match the app domain.
1. Edit file (use your Edit tool)
2. vf_get_errors() → check if it compiles
3. vf_preview_route({ route: "/path" }) → verify it works
4. vf_trigger_hmr() → update browser if needed
app/
├── page.tsx → /
├── layout.tsx → wraps all pages
├── blog/
│ ├── page.tsx → /blog
│ └── [slug]/
│ └── page.tsx → /blog/:slug
├── api/
│ └── users/
│ └── route.ts → GET/POST /api/users
└── (group)/ → no URL segment
└── about/
└── page.tsx → /about
Generate files with correct conventions:
vf_scaffold({ type: "page", name: "dashboard" })
vf_scaffold({ type: "api", name: "api/users", methods: ["GET", "POST"] })
vf_scaffold({ type: "layout", name: "admin" })
vf_scaffold({ type: "component", name: "UserCard" })
vf_scaffold({ type: "tool", name: "search-docs" })
vf_scaffold({ type: "agent", name: "research-agent" })
vf_scaffold({ type: "skill", name: "research" })
export default function PageName() {
return <div>Content</div>;
}
export default function LayoutName({ children }: { children: React.ReactNode }) {
return <div>{children}</div>;
}
export function GET(req: Request) {
return Response.json({ ok: true });
}
export async function POST(req: Request) {
const body = await req.json();
return Response.json({ received: body });
}
import { defineSchema } from "veryfront/schemas";
export const toolName = {
name: "tool-name",
description: "What it does",
parameters: defineSchema((v) =>
v.object({
input: v.string(),
})
)(),
execute: async ({ input }) => {
return { result: input };
},
};
vf_get_errors() → all errors
vf_get_errors({ type: "compile" }) → compile only
vf_get_errors({ file: "app/page.tsx" }) → specific file
vf_get_logs({ level: "error" }) → error logs
vf_run_lint() → lint the project
vf_run_tests() → run the test suite