gigio1023/gigio-pack · Archived

commit-and-push

Use when the user explicitly asks to commit, split commits, stage and commit, push, sync a branch, or commit directly to the default branch. Triggers on "commit", "push", "git push", "커밋", "분할 커밋", "push 해줘", "stage and commit", and "direct commit". Keeps unrelated worktree changes untouched and limits the default result to commits plus branch push. NOT for opening or rewriting a PR (use draft-pr), full CI certification, or issue/PR comments and edits unless the user explicitly includes…

First seen Jul 26, 2026

Installation

$ npx skills add gigio1023/gigio-pack --skill commit-and-push

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from gigio1023/gigio-pack · top by installs.

npx skills add gigio1023/gigio-pack

Browse all from gigio1023/gigio-pack

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 5,693 B
  • docs SUMMARY.md 536 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 13 installs

SKILL.md

Commit and Push

Produce logically scoped commits and push the requested branch without absorbing unrelated user changes. Report the commits, pushed ref, verification evidence, and any remaining worktree state.

Workflow

  1. Inspect before mutating:

``bash git rev-parse --show-toplevel git status -sb git branch --show-current git remote -v git diff --stat git diff git diff --cached ``

  1. Read repository instructions such as CONTRIBUTING.md and inspect recent commit style. Repository and user conventions override this skill's fallback.
  2. Lock scope from the request and diff. Preserve unrelated tracked, untracked, staged, and unstaged changes. Stage explicit paths; use git add -A only when the whole worktree clearly belongs to the request.
  3. Run focused, relevant checks before committing. Reuse results already run against the unchanged intended diff; rerun after a relevant edit, conflict resolution, failed check, or repository requirement. Keep required results and failures; do not expand into an unrelated full-CI campaign unless requested or repository policy requires it.
  4. Split changes into independently revertible units. Keep implementation and its tests together; order prerequisite commits before dependents.
  5. When committing is requested, commit each unit and inspect what landed:

``bash git diff --cached --stat git diff --cached git commit -m "<message>" git show --stat --oneline HEAD ``

  1. When pushing is requested, fetch and reconcile the selected upstream (often origin, but do not assume the name):

``bash git fetch <remote> git status -sb ``

If the upstream advanced, rebase the local commits onto it. With a dirty worktree, finish only the intended commits first; do not hide unrelated work in an automatic stash. Resolve conflicts only when repository intent is clear, rerun affected checks, and abort with git rebase --abort if safe resolution needs user or product judgment.

  1. Push the requested branch only when pushing is authorized. Use tracking when needed:

``bash git push -u <remote> HEAD ``

If an already-pushed, clearly user-owned topic branch was rebased, use git push --force-with-lease, never plain --force. Ask before rewriting a shared or ambiguous branch.

  1. Verify the result:

``bash git status -sb git log --oneline -n 5 ``

Confirm the pushed branch/upstream and retain any unrelated worktree changes.

Commit Shape

One commit should represent one logical change that can be reviewed and reverted on its own. Avoid splitting by arbitrary file count or layer when the files implement one behavior.

Use the repository's message convention. If none exists, use:

<type>(<scope>): <imperative subject>

<why this change is needed and any non-obvious consequence>

Fallback types are feat, fix, refactor, docs, test, chore, ci, perf, and style. Default to concise English when the repository and user do not establish another language. Add a body only when rationale, risk, or a reference would otherwise be lost. Do not add agent branding, Co-Authored-By, or author lines unless explicitly requested.

For a direct default-branch commit without a PR, include enough rationale and verification in the commit body for the log to stand alone, but do not generate a ceremonial report or file-by-file inventory.

Side-Effect Boundary

Honor the requested Git actions: commit-only stops after commits, push-only pushes existing commits, and commit-and-push does both. An established session request for both needs no additional approval between them. None covers issue comments, issue/PR body or title edits, releases, tags, or other remote mutations. Perform those only when the same request explicitly includes them, and use the corresponding specialized skill. Publishing the branch as a pull request belongs to draft-pr, entered only on an explicit request to open or update one.

Output Contract

Lead with whether the requested Git actions succeeded. Include applicable items:

  • each new commit hash and subject;
  • the remote and branch pushed, including whether tracking or --force-with-lease was used;
  • checks run and their result, plus anything not run that materially limits confidence;
  • remaining staged, unstaged, or untracked changes;
  • the exact blocker and smallest next action if the push did not complete.

Gotchas

  • Do not run git pull --rebase blindly in a mixed worktree. Inspect, preserve unrelated changes, and reconcile remote history at a safe point.
  • A pre-commit hook failure means the commit did not succeed. Fix only in-scope failures, restage the intended paths, and retry; do not bypass hooks unless the user explicitly accepts that risk.
  • Never amend, squash, rebase, or force-push a shared branch merely to make the history prettier.
  • Do not claim a push succeeded from local commit output. Verify the push and final branch status.
  • If the repository uses jj or another VCS layer, stop before Git mutations and use the repository-specific publish path.