scaffold-app
Scaffold a new Veryfront app with the right structure, config, and conventions.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Scaffold a new Veryfront app with the right structure, config, and conventions.
التثبيت باستخدام 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.
Build Veryfront apps. Use for real-time errors, route preview, HMR control, and scaffolding pages/APIs/components/AI tools.
Onboard to veryfront-code architecture, testing, conventions, and PR process.
Diagnose and fix build failures using structured error output.
| name | scaffold-app |
| description | Scaffold a new Veryfront app with the right structure, config, and conventions. |
| metadata | {"version":"1.0.0"} |
Create a new Veryfront application with proper structure and conventions.
Discover templates
veryfront schema --json | jq '.commands[] | select(.name == "init")'
Create project
veryfront init <name> --template <template> --yes --json
Expected: { "success": true, "command": "init", "data": { "projectDir": "..." } }
Verify project health
cd <name>
veryfront doctor --json
Expected: all checks pass
Start dev server
veryfront dev
Verify MCP is available at the printed dev MCP URL. The default URL is
http://localhost:3002/mcp.
veryfront schema --json, retry with --forceveryfront clean, then retry