Push changes

VerifiedSafe

Commits and deploys project changes using the custom push script with a commit message argument.

Sby Skills Guide Bot
DevelopmentBeginner
306/2/2026
Claude CodeCursorWindsurfCopilotCodex
#git#push#deployment#commit#automation

Recommended for

Our review

This skill uses the project's push script to commit and deploy changes to the remote repository.

Strengths

  • Automates the commit and push process in a single command
  • Generates a commit message based on changes if none is provided
  • Leverages existing project conventions and scripts

Limitations

  • Requires the project to have a ./push script
  • Generated commit messages may be generic or inaccurate
  • Does not replace manual code review before pushing
When to use it

Use this skill when you are ready to publish or deploy changes to the remote repository.

When not to use it

Avoid using it if you need to manually review changes or if the project does not have a push script.

Security analysis

Safe
Quality score80/100

The skill runs a local push script with a commit message argument. No destructive or exfiltration actions are indicated. The script is project-specific and presumably under the user's control.

No concerns found

Examples

Push with message
Push my changes to the repository with a commit message about bug fixes.
Deploy to production
Deploy the latest updates to production.
Commit and push all
Commit and push all changes with an appropriate message.

name: push description: Push changes to remote. Use this whenever the user wants to push, deploy, or publish changes. argument-hint: [commit message]

Use the project's push script to commit and deploy changes.

Run: ./push "$ARGUMENTS"

If no commit message argument is provided, generate a short commit message based on the changes made and pass it as the argument.

Related skills