deploy-safely
Build, test, push, deploy, and verify with rollback through Git on failure.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Build, test, push, deploy, and verify with rollback through Git on failure.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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.
Diagnose runtime errors by connecting to dev server via MCP.
| name | deploy-safely |
| description | Build, test, push, deploy, and verify with rollback through Git on failure. |
| metadata | {"version":"1.0.0"} |
Build and test the reviewed Git source, then push it to Veryfront before creating a release and deployment. If verification fails, revert the Git commit and run the normal delivery sequence again.
Build
veryfront build --json
Abort if success: false.
Run tests
veryfront test --json
Abort if any test fails.
Push
veryfront push --branch <branch> --yes
Abort if any file fails to upload.
Deploy
veryfront deploy --env <environment> --branch <branch> --yes --json
Record the project, environment, release, deployment, and commit IDs from the final result record.
Verify health (via MCP)
Use vf_get_errors to check for runtime errors after deploy.
Wait 30 seconds, then check again.
Confirm or rollback
git revert <bad-commit>
git push origin <branch>
vf_get_errors for compilation errors, fix and retry