Loading...
Loading...
Chinese Git Commit Skill. Analyze changes and generate Chinese conventional commit messages. Triggered when the user says "submit", "commit", "submit code", "submit changes", or "/commit-zh". Executed entirely by the main agent, no subagents used.
npx skill4agent add liao666brant/agent-tools commit-zh<type>[(scope)]: <Chinese description>
[Optional body]
[Optional footer]| Type | Purpose |
|---|---|
| New feature |
| Bug fix |
| Documentation changes |
| Formatting/style changes |
| Code refactoring |
| Performance optimization |
| Testing-related changes |
| Build system/dependencies |
| CI/configuration changes |
| Maintenance/miscellaneous |
| Revert a previous commit |
git status --porcelain# Use staged diff if there are staged files
git diff --staged
# Use workspace diff if no files are staged
git diffgit add path/to/file1 path/to/file2git add .git add -A- - Closes #123BREAKING CHANGE: <description>!feat(auth): 添加 OAuth2 登录支持
- 实现 Google 和 GitHub 第三方登录
- 添加用户授权回调处理
- 优化登录状态持久化逻辑
Closes #42feat(api)!: 重新设计认证 API
- 从 session 认证迁移到 JWT
- 更新所有端点签名
- 移除已废弃的登录方式
BREAKING CHANGE: 认证 API 已完全重新设计,所有客户端需更新集成git commit -m "$(cat <<'EOF'
<type>[(scope)]: <中文描述>
<body>
<footer>
EOF
)"git log --oneline -1