com um clique
commit-and-push
// Finish local Git work by first using the `commit` skill to split and create Conventional Commits, then push the resulting commits to the remote tracking branch. Use when the user asks to commit and push changes.
// Finish local Git work by first using the `commit` skill to split and create Conventional Commits, then push the resulting commits to the remote tracking branch. Use when the user asks to commit and push changes.
Interview the user relentlessly about a plan or design until reaching shared understanding, resolving each branch of the decision tree. Use when user wants to stress-test a plan, get grilled on their design, or mentions "grill me".
Write or update Shotomatic landing-page blog posts in `shotomatic-landing-page/src/content/blog/` with correct frontmatter, internal intent metadata, supporting links, stock hero images, and publish-readiness QA. Use when asked to draft, revise, or QA Shotomatic blog posts.
Commit all local changes as a single Conventional Commit by using the `commit-all` skill, then push commits to the remote tracking branch. Use when the user explicitly asks to commit everything and push.
Commit all local changes in the current repository, including tracked, untracked, and deletions, as a single Conventional Commit. Use only when the user explicitly wants all changes committed together.
Split only the changes you made into clear, reviewable Git commits grouped by behavior or concern. Use when Codex must avoid pre-existing local edits, stage partial hunks safely, and create Conventional Commits messages for your changes.
Scoped parallel refactor for files Codex changed in the current task. Use when the user says "$refactor" after asking for implementation. Build an explicit allowed file list from your own edits only, then improve code quality and low-risk efficiency in that list while enforcing AGENTS.md rules.
| name | commit-and-push |
| description | Finish local Git work by first using the `commit` skill to split and create Conventional Commits, then push the resulting commits to the remote tracking branch. Use when the user asks to commit and push changes. |
Use the commit skill first to create clean logical commits.
Then push the branch.
commit skill workflow and ensure commits are complete.git branch --show-current
git rev-parse --abbrev-ref --symbolic-full-name @{u}
git push
git status --short