with one click
busic-git-commit
BuSic Git提交规范。用于整理提交范围、撰写约定式提交信息、选择安全Git操作并对齐当前main分支事实
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
BuSic Git提交规范。用于整理提交范围、撰写约定式提交信息、选择安全Git操作并对齐当前main分支事实
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
BuSic数据层规范。用于Drift表定义、迁移、Repository实现和Domain模型映射时快速确认主真源与联动检查项
BuSic代理执行工作流兼容层。用于自动化代理在当前仓库中执行任务时统一进度同步、风险确认、验证收尾和文档回写节奏
BuSic主开发入口。用于功能开发、bug修复、代码重构时快速定位阅读顺序、执行顺序、最低验证和联动文档
BuSic发布流程规范。用于执行正式发布时快速定位发布真源、推荐脚本、发布前检查项和最容易遗漏的manifest与资产联动
BuSic Skills维护规范。用于维护和重构.agents/skills时统一目录结构、模板、更新时机、自检方式和与docs的职责边界
BuSic状态管理规范。用于Riverpod codegen、Notifier编排、依赖注入和AutoDispose生命周期控制时快速查阅
| name | busic-git-commit |
| description | BuSic Git提交规范。用于整理提交范围、撰写约定式提交信息、选择安全Git操作并对齐当前main分支事实 |
| license | MIT |
| compatibility | opencode |
docs/20-workflows/dev-workflow.mddocs/20-workflows/release-workflow.md.github/workflows/ci.ymlscripts/release.pymain 为准developvX.Y.Zbusic-version-management 与 busic-release<type>(<scope>): <subject>
常用 type:
feat:新增功能fix:Bug 修复refactor:重构docs:文档更新test:测试相关chore:工具、构建、依赖或辅助脚本示例:
feat(playlist): 添加歌单排序
fix(player): 修复播放暂停后进度条不同步
docs(skills): 重构本地skills结构
git status --short 看清楚工作区git add <path>flutter analyze
flutter test
git commit -m "type(scope): subject"
Agent 执行时,本地只读 Git 如 git status、git log、git diff 通常可先在沙箱内尝试;git add、git commit、git push 等写入型或远程 Git 通常需要提权到沙箱外。完整分类见 busic-harness-workflow。
git add . 把无关改动一锅端走git reset --hard、git checkout -- 这类破坏性命令develop -> main 的假流程