Commits code changes, pushes to remote, and deploys to production. Use when the user wants to commit, push, and deploy their changes in one workflow.
When the user invokes this skill, follow these steps:
Run the build to ensure the code compiles without errors before committing:
cd diffusion-explorer/apps/rectified-flow-explainer && npm run build
If the build fails, stop and report the errors to the user.
git add -A
git status
git diff --staged
Draft a commit message based on the staged changes. Present the commit message to the user and ask for their approval before proceeding. Use the AskUserQuestion tool to get confirmation.
Once approved, commit with the message:
git commit -m "<approved message>"
Push to the remote repository:
git push
Run the deploy script directly (without rebuilding since we already built in step 1):
cd diffusion-explorer/apps/rectified-flow-explainer && node scripts/deploy.js
This deploys the built files to the production website.
node scripts/deploy.js instead of npm run deploy to avoid a redundant rebuildnpx skills add helblazer811/commit-push-deploy下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer