Our review
Commits all current changes and pushes to the remote repository after automatic pre-push checks.
Strengths
- Automates pre-commit checks with auto-fix
- Follows project commit message conventions
- Combines staging, commit, and push in one step
- Reports commit hash and branch to the user
Limitations
- Requires a configured remote repository
- May fail if pre-push checks do not pass
- Does not handle merge conflicts or multiple branches
Use this skill when the user asks to save progress, commit changes, or push to remote.
Do not use it if the user only wants to run checks without committing, or if untested changes need manual review.
Security analysis
CautionThe skill executes a local pre-push script and multiple git commands, including git push. While legitimate for its purpose, running project-specific scripts and pushing changes is powerful and could be misused. No obfuscated or destructive payloads are present.
No concerns found
Examples
Commit and push my current changes to the remote.Save my progress and push it.Ship the current changes to the repository.name: cp description: Commit all current changes and push to the remote. Use when the user asks to commit, push, save progress, or ship changes. user_invocable: true
commit-and-push
Commit all current changes and push to the remote. All pre-push checks must pass before committing.
Instructions
-
Run pre-push checks with auto-fix (quiet mode suppresses output on success):
tools/pre-push --fix -qIf this fails, fix the issues and re-run until it passes. Do NOT skip this step — it is the project's only gate against broken code.
-
Check for changes:
git status git diff --stat git log --oneline -5 -
Stage all changes (including any fixes from step 1):
git add -A -
Write a commit message following the project convention:
- Prefix with
synq:(lowercase) - Concise summary line describing the "why"
- Add detail in the body for non-trivial changes
- Prefix with
-
Commit using a HEREDOC:
git commit -m "$(cat <<'EOF' synq: <summary> <optional body> EOF )" -
Push to remote:
git push -
Report the commit hash and branch to the user.
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.