com um clique
verify
Run complete pre-deployment verification checklist
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Run complete pre-deployment verification checklist
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
Scan the codebase and update the codemap in .claude/rules/codemap.md. Use when files are added, removed, renamed, or significantly restructured.
Build and release Tauri v2 desktop app (macOS + Linux installers). Use when building desktop installers, checking desktop release status, or troubleshooting Tauri builds.
Deploy web app to HuggingFace Spaces, check deployment status, verify HF Space logs. Use when deploying the web app, checking HF logs, or troubleshooting HuggingFace Spaces.
Upload ML model weights to GitHub Releases. Use when managing model files, re-uploading weights, or setting up model hosting on GitHub Releases.
Create a new version release — triggers deployment to all targets (HuggingFace Spaces, desktop app, model weights). Use when releasing a new version.
| name | verify |
| description | Run complete pre-deployment verification checklist |
| allowed-tools | Bash, Read |
Run the complete pre-deployment verification checklist.
git status --shortgit branch --show-currentgit log -1 --onelineThis command runs all checks required before deployment. Execute these in order:
cd backend && source venv/bin/activate && ruff check . && ruff format --check .
cd backend && source venv/bin/activate && ty check .
cd frontend && npm run lint
cd frontend && npm run build
docker build -t ccbell-sound-generator .
# Start container in background
docker run -d -p 7860:7860 --name ccbell-test ccbell-sound-generator
# Wait for startup and check health
sleep 10
curl http://localhost:7860/api/health
# Stop and remove container
docker stop ccbell-test && docker rm ccbell-test
Report the status of each step: