Updated: - projman: 4 commands + 4 skills + integration snippet - git-flow: 4 commands + 3 skills + integration snippet - pr-review: 1 command cross-reference - cmdb-assistant: 1 command + 1 skill - data-platform: 8 commands + integration snippet - viz-platform: 11 commands + integration snippet - contract-validator: 1 command + 1 skill + 1 agent Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1.1 KiB
1.1 KiB
name, description, agent
| name | description | agent |
|---|---|---|
| git-commit-push | Create a commit and push to remote in one operation | git-assistant |
/git-commit-push - Commit and Push
Skills
- skills/visual-header.md
- skills/commit-conventions.md
- skills/sync-workflow.md
- skills/git-safety.md
- skills/environment-variables.md
Purpose
Create a commit and push to the remote repository in one operation.
Parameters
| Parameter | Description |
|---|---|
--message, -m |
Override auto-generated message |
--force |
Force push (requires confirmation) |
Workflow
- Display header - Show GIT-FLOW Commit & Push header
- Run /git-commit - Execute standard commit workflow
- Check upstream - Set up tracking if needed (
git push -u) - Push - Push to remote
- Handle conflicts - Offer rebase/merge/force if push fails (per sync-workflow.md)
- Verify safety - Warn before push to protected branches (per git-safety.md)
- Report - Show push result
Output
Committed: abc1234
feat(auth): add password reset functionality
Pushed to: origin/feat/password-reset
Remote URL: https://github.com/user/repo