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

技能概览

先看适用场景、限制条件和安装路径,再决定是否继续深入。

适用场景: 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.

适用 Agent 类型

适用场景: Ideal for AI agents that need git commit + push skill.

赋予的主要能力 · 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

关于来源内容

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.

实验室 Demo

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

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。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

git-commit-push 适用于哪些场景?

典型场景包括:适用任务: Git Commit + Push Skill、适用任务: 部署前最后一步:把本地变更 commit 并 push 到远程。纯粹的 git commit + push,不更新 README、不调外部服务、不判断仓库结构变化。、适用任务: 参考项目 chatlabs-cdev-chopard-bde 的 git log 风格(Conventional Commits 中文版):。

git-commit-push 支持哪些 IDE 或 Agent?

该技能兼容 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。可使用 Killer-Skills CLI 一条命令通用安装。

git-commit-push 有哪些限制?

限制说明: Requires repository-specific context from the skill documentation;限制说明: Works best when the underlying tools and dependencies are already configured。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add dd-xiaozhi/dev-agent-flow。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    git-commit-push 已启用,可立即在当前项目中调用。

! 来源说明

此页面仍可作为安装与查阅参考。继续使用前,请结合上方适用场景、限制条件和上游仓库说明一起判断。

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

安装 git-commit-push,这是一款面向AI agent workflows and automation的 AI Agent Skill。查看功能、使用场景、限制条件与安装命令。

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。

相关技能

寻找 git-commit-push 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

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.

333.8k
0
AI

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, and Windsurf

149.6k
0
AI

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
开发者工具