git-commit-push — for Claude Code git-commit-push, dev-agent-flow, community, for Claude Code, ide skills, chatlabs-cdev-chopard-bde, <type>(<scope>): <中文描述>, refactor, config, 连接。例:

v1.0.0

Об этом навыке

Подходящий сценарий: Ideal for AI agents that need git commit + push skill. Локализованное описание: git-commit-push helps AI agents handle repository-specific developer workflows with documented implementation details.

Возможности

Git Commit + Push Skill
部署前最后一步:把本地变更 commit 并 push 到远程。纯粹的 git commit + push,不更新 README、不调外部服务、不判断仓库结构变化。
参考项目 chatlabs-cdev-chopard-bde 的 git log 风格(Conventional Commits 中文版):
<type (<scope ): <中文描述
refactor 重构(不改外部行为)

# Ключевые темы

dd-xiaozhi dd-xiaozhi
[1]
[0]
Обновлено: 4/30/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Подходящий сценарий: Ideal for AI agents that need git commit + push skill. Локализованное описание: git-commit-push helps AI agents handle repository-specific developer workflows with documented implementation details.

Зачем использовать этот навык

Рекомендация: git-commit-push helps agents git commit + push skill. git-commit-push helps AI agents handle repository-specific developer workflows with documented implementation details.

Подходит лучше всего

Подходящий сценарий: Ideal for AI agents that need git commit + push skill.

Реализуемые кейсы использования for git-commit-push

Сценарий использования: Git Commit + Push Skill
Сценарий использования: 部署前最后一步:把本地变更 commit 并 push 到远程。纯粹的 git commit + push,不更新 README、不调外部服务、不判断仓库结构变化。
Сценарий использования: 参考项目 chatlabs-cdev-chopard-bde 的 git log 风格(Conventional Commits 中文版):

! Безопасность и ограничения

  • Ограничение: Requires repository-specific context from the skill documentation
  • Ограничение: Works best when the underlying tools and dependencies are already configured

About The Source

The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Labs-демо

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ и шаги установки

These questions and steps mirror the structured data on this page for better search understanding.

? Частые вопросы

Что такое git-commit-push?

Подходящий сценарий: Ideal for AI agents that need git commit + push skill. Локализованное описание: git-commit-push helps AI agents handle repository-specific developer workflows with documented implementation details.

Как установить git-commit-push?

Выполните команду: npx killer-skills add dd-xiaozhi/dev-agent-flow/git-commit-push. Она работает с Cursor, Windsurf, VS Code, Claude Code и более чем 19 другими IDE.

Для чего можно использовать git-commit-push?

Ключевые сценарии использования: Сценарий использования: Git Commit + Push Skill, Сценарий использования: 部署前最后一步:把本地变更 commit 并 push 到远程。纯粹的 git commit + push,不更新 README、不调外部服务、不判断仓库结构变化。, Сценарий использования: 参考项目 chatlabs-cdev-chopard-bde 的 git log 风格(Conventional Commits 中文版):.

Какие IDE совместимы с git-commit-push?

Этот навык совместим с Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Для единой установки используйте CLI Killer-Skills.

Есть ли ограничения у git-commit-push?

Ограничение: Requires repository-specific context from the skill documentation. Ограничение: Works best when the underlying tools and dependencies are already configured.

Как установить этот skill

  1. 1. Откройте терминал

    Откройте терминал или командную строку в директории проекта.

  2. 2. Запустите команду установки

    Выполните: npx killer-skills add dd-xiaozhi/dev-agent-flow/git-commit-push. CLI автоматически определит вашу IDE или агента и настроит навык.

  3. 3. Начните использовать skill

    Skill уже активен. Ваш AI-агент может сразу использовать git-commit-push в текущем проекте.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

git-commit-push

Install git-commit-push, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup guidance.

SKILL.md
Readonly
Upstream Repository Material
The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

Git Commit + Push Skill

部署前最后一步:把本地变更 commit 并 push 到远程。纯粹的 git commit + push,不更新 README、不调外部服务、不判断仓库结构变化。

Commit Message 规范

参考项目 chatlabs-cdev-chopard-bde 的 git log 风格(Conventional Commits 中文版):

<type>(<scope>): <中文描述>

type 取值

type含义
feat新功能
fix修复 bug
refactor重构(不改外部行为)
perf性能优化
chore杂项(构建、依赖、配置)
config配置文件变更
docs文档变更
test测试相关
style代码格式(不影响逻辑)

scope

模块名/目录名,简短小写,可用 - 连接。例:

  • daocallbackdata-syncauthclsconfigentitylogging

描述

  • 中文,动词开头
  • 简洁,一行讲清楚做了什么
  • 不带句号

反模式

  • ❌ 英文描述(feat(api): add login)
  • ❌ 带 emoji(✨ feat(api): 新增登录)
  • ❌ 多行 body(项目风格不用)
  • ❌ 无 scope(feat: 新增登录)
  • ❌ 带 Co-authored-by 等 footer

例子

feat(callback): 新增手机号更新和 SF 数据操作功能
fix(callback): 修复渠道账号取消事件的条件判断逻辑
refactor(dao): 移除数据删除记录相关组件
chore(config): 更新阿里云 OSS 访问密钥配置
perf(sync): 优化订单同步服务超时配置
config(auth): 更新认证排除路径配置

流程

1. git status                   # 检查是否有变更,无变更则 skip 整个流程
2. git diff --stat              # 看变更范围,判定 type + scope
3. git diff                     # 看具体内容,生成中文描述
4. 主 Claude 综合 1-3 输出    生成 commit message(单行)
5. git add <相关文件>           # 不用 git add -A,避免误加 .env / 大文件
6. git commit -m "<message>"    # 走预提交 hook,不加 --no-verify
7. git push                     # push 到当前分支对应的 remote
8. 输出 commit hash + push 结果摘要

错误处理

场景行为
无变更可提交输出 noop: no changes to commit,直接成功(不阻塞 flow advance)
pre-commit hook 失败输出 hook 错误,禁止 --no-verify 绕过,要求修复后重跑
push 冲突(remote 有新提交)输出冲突信息,不自动 git pull --rebase,要求人工介入
当前分支无 upstreamgit push -u origin <branch> 建立追踪

输出

json
1{ 2 "ok": true, 3 "noop": false, 4 "commit_hash": "a1b2c3d", 5 "commit_message": "feat(callback): 新增手机号更新功能", 6 "branch": "dev-cpwx-wecom-bot-test", 7 "pushed_to": "origin/dev-cpwx-wecom-bot-test", 8 "files_changed": 5 9}

noop 情形:

json
1{ 2 "ok": true, 3 "noop": true, 4 "reason": "no changes to commit" 5}

何时调用

由 flow 模板的 git-push step(kind=skill, target=git-commit-push)在 deploy 前调用。 完成后主 Claude 调 /flow-advance git-push 推进到 deploy。

Связанные навыки

Looking for an alternative to git-commit-push or another community skill for your workflow? Explore these related open-source skills.

Показать все

openclaw-release-maintainer

Logo of openclaw
openclaw

Локализованное описание: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Локализованное описание: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat. It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor

flags

Logo of vercel
vercel

Локализованное описание: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Браузер

pr-review

Logo of pytorch
pytorch

Локализованное описание: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review. It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Разработчик