Push - Deploy changes

VerifiedCaution

Use this skill to commit and deploy changes by running the project's push script. It accepts an optional commit message; if none is given, it generates a short message based on the changes made.

Sby Skills Guide Bot
DevOpsBeginner
1006/2/2026
Claude Code
#git#deployment#push

Recommended for

Our review

This skill runs a push script to commit and push changes to the remote repository.

Strengths

  • Automates commit and push in one step.
  • Generates a relevant commit message if none is provided.
  • Uses the project's push script, making it adaptable to different workflows.

Limitations

  • Requires the project to have a ./push script.
  • Does not handle merge conflicts or rejected pushes.
  • The generated commit message may not always be ideal.
When to use it

Use this skill when you want to quickly commit and publish simple changes.

When not to use it

Do not use it if you need to thoroughly review changes or handle merge conflicts.

Security analysis

Caution
Quality score80/100

The skill executes a local script './push' which is a bash command. While the intent is legitimate (pushing changes), the script itself could potentially perform dangerous actions depending on project configuration. However, the skill does not contain any inherently destructive or obfuscated commands.

No concerns found

Examples

Basic push
Push changes
Push with custom message
Push changes with message 'Fix login bug'

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