skillZs
LIVE SKILL TAGS
>>> LIVE SKILLS INDEX <<<
* OPEN SOURCE *
NO LOGIN, NO TRACKING
REAL INSTALL DATA
← back to all skills
zc277584121/mygitplugin1.7k installs

git-commit-push

Commit changes and push to origin without creating a PR

How do I install this agent skill?

npx skills add https://github.com/zc277584121/mygitplugin --skill git-commit-push
view source ↗

Is this agent skill safe to install?

  • Gen Agent Trust Hubpass

    This skill automates Git version control workflows, including branching, staging, committing, and pushing changes to a remote repository. It uses standard Git commands via the Bash tool and contains specific formatting guidelines for commit messages and authorship. No security issues were detected.

  • Socketwarn

    1 alert: gptAnomaly

  • Snykpass

    Risk: LOW · No issues

What does this agent skill do?

Git Commit & Push

提交改动并推送到 origin 远端,不创建 PR。

触发条件

当用户要求提交改动并 push(但不需要提 PR)时使用此 skill。

执行步骤

  1. 创建新分支git checkout -b <branch-name>,分支名由用户指定或根据改动内容自动生成。如果用户希望直接在当前分支提交,则跳过此步。

  2. Review 改动:先用 git statusgit diff 自行检查所有改动,确保没有把临时文件、调试代码或不相关的文件混进来。

  3. 暂存文件git add 相关改动文件。不要使用 git add -Agit add .,而是逐个添加相关文件。

  4. 提交改动

    git commit --signoff --author="Cheney Zhang <chen.zhang@zilliz.com>" -m "<commit message>"
    
    • commit message 用英文编写,简洁描述改动内容。
    • 绝对不要在 commit message 中提及 AI、Claude、LLM 或任何自动生成相关的字样。
  5. 推送分支git push origin <branch-name>

注意事项

  • 提交前检查是否有未暂存的改动需要处理。
  • 所有 commit 都需要 --signoff,作者为 "Cheney Zhang chen.zhang@zilliz.com"。
  • commit message 中不能出现任何 AI 相关字样。

Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.

<a href="https://skillzs.dev/skills/zc277584121/mygitplugin/git-commit-push">View git-commit-push on skillZs</a>