一键导入
hack-commit
Stage and commit completed implementation work. Use after tests are green, lint is clean, and the Release Trail has been updated.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Stage and commit completed implementation work. Use after tests are green, lint is clean, and the Release Trail has been updated.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Proactive drift-scan cycle. Reads all active OBCs and Issues, identifies divergences, and repairs what can be automated. Runs across the entire active backlog, not for a specific OBC.
Read all active OBCs and compare declared state with backlogs and external tools. Produces a divergence list. Does not repair — only identifies gaps.
Event-driven cycle triggered by a product decision. Captures the decision as an OBC, attaches a Work Item, promotes it through the backlog hierarchy, and closes it when the OBC reaches Operational. Runs for a specific OBC.
Create or update an OBC from the decision that triggered the Diligence Sync cycle. Use when an Assessment decision, Discovery experiment, or Operation signal requires canonical state to be recorded before Work Items are created.
Synchronize OBC state across backlogs and tools. Runs event-driven cycle (diligence-sync) or proactive drift-scan cycle (diligence-async). Never touches product code.
Classify divergences from Scan and register them as pending Diligence items with severity and corrective action. Does not repair — only signals.
| name | hack/commit |
| description | Stage and commit completed implementation work. Use after tests are green, lint is clean, and the Release Trail has been updated. |
Execute only the commit step of the Hack flow.
git status — identify all modified, staged and untracked files.git diff) — confirm scope matches the task; check for
secrets, tokens, local-only paths or unrelated changes.git add -A
or git add ..type(scope): descriptionfeat, fix, docs, test, refactor, perf, build, ci,
style, chore, revert — canonical list in prodops/exec/manifest.yaml
(vocabulary.commit_types), enforced by the commit-msg hookapi, prodops, workbench, etc.)vocabulary.commit_summary_max in the manifest)fix(api): use invoiceId as externalReference to avoid mock collisiongit commit -m "<message>".git status to confirm the working tree is clean for committed files.git add -A, git add . or wildcard patterns..env, credential files or files containing real tokens.--no-verify.