Agent skill
commit.commit_and_push
Verifies changed files, creates commit, and pushes to remote. Use after linting passes to finalize changes.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/commit-commit-and-push-unsupervisedcom-deepwork-34abeb14
SKILL.md
commit.commit_and_push
Step 4/4 in commit workflow
Reviews code, runs tests, lints, and commits changes. Use when ready to commit work with quality checks.
Prerequisites (Verify First)
Before proceeding, confirm these steps are complete:
/commit.lint
Instructions
Goal: Verifies changed files, creates commit, and pushes to remote. Use after linting passes to finalize changes.
Commit and Push
Objective
Review the changed files to verify they match the agent's expectations, create a commit with an appropriate message, and push to the remote repository.
Task
Check the list of changed files against what was modified during this session, ensure they match expectations, then commit and push the changes.
Process
-
Get the list of changed files
bashgit statusAlso run
git diff --statto see a summary of changes. -
Verify changes match expectations
Compare the changed files against what you modified during this session:
- Do the modified files match what you edited?
- Are there any unexpected new files?
- Are there any unexpected deleted files?
- Do the line counts seem reasonable for the changes you made?
If changes match expectations, proceed to commit.
If there are unexpected changes:
- Investigate why (e.g., lint auto-fixes, generated files)
- If they're legitimate side effects of your work, include them
- If they're unrelated or shouldn't be committed, use
git restoreto discard them
-
Stage all appropriate changes
bashgit add -AOr stage specific files if some were excluded.
-
View recent commit messages for style reference
bashgit log --oneline -10 -
Create the commit
Generate an appropriate commit message based on:
- The changes made
- The style of recent commits
- Conventional commit format if the project uses it
bashgit commit -m "commit message here" -
Push to remote
bashgit pushIf the branch has no upstream, use:
bashgit push -u origin HEAD
Quality Criteria
- Changed files list was reviewed by the agent
- Files match what was modified during this session (or unexpected changes were investigated and handled)
- Commit message follows project conventions
- Commit was created successfully
- Changes were pushed to remote
- When all criteria are met, include
<promise>✓ Quality Criteria Met</promise>in your response
Context
This is the final step of the commit workflow. The agent verifies that the changed files match its own expectations from the work done during the session, then commits and pushes. This catches unexpected changes while avoiding unnecessary user interruptions.
Job Context
A workflow for preparing and committing code changes with quality checks.
This job starts with a code review to catch issues early, runs tests until they pass, formats and lints code with ruff, then reviews changed files before committing and pushing. The review and lint steps use sub-agents to reduce context usage.
Steps:
- review - Code review for issues, DRY opportunities, naming, and test coverage (runs in sub-agent)
- test - Pull latest code and run tests until they pass
- lint - Format and lint code with ruff (runs in sub-agent)
- commit_and_push - Review changes and commit/push
Work Branch
Use branch format: deepwork/commit-[instance]-YYYYMMDD
- If on a matching work branch: continue using it
- If on main/master: create new branch with
git checkout -b deepwork/commit-[instance]-$(date +%Y%m%d)
Outputs
Required outputs:
changes_committed
Guardrails
- Do NOT skip prerequisite verification if this step has dependencies
- Do NOT produce partial outputs; complete all required outputs before finishing
- Do NOT proceed without required inputs; ask the user if any are missing
- Do NOT modify files outside the scope of this step's defined outputs
Quality Validation
Stop hooks will automatically validate your work. The loop continues until all criteria pass.
To complete: Include <promise>✓ Quality Criteria Met</promise> in your final response only after verifying ALL criteria are satisfied.
On Completion
- Verify outputs are created
- Inform user: "Step 4/4 complete, outputs: changes_committed"
- Workflow complete: All steps finished. Consider creating a PR to merge the work branch.
Reference files: .deepwork/jobs/commit/job.yml, .deepwork/jobs/commit/steps/commit_and_push.md
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?