commit
星标0
分支0
更新时间2026年1月16日 19:27
Commit workflow for ai-standards repo. Formats all markdown files and previews changes before committing.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Commit workflow for ai-standards repo. Formats all markdown files and previews changes before committing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | commit |
| description | Commit workflow for ai-standards repo. Formats all markdown files and previews changes before committing. |
Standard commit workflow for the ai-standards repository.
Format project markdown files using mdformat (excludes opensrc/ which contains external source):
nix develop -c mdformat skills/ .claude/ agents/ templates/ *.md
Show files involved and diff preview:
git status
git diff --stat
git diff
Review the changes and determine:
Examples:
For single commit:
git add -A
git commit -m "commit message"
For multiple commits, stage selectively:
git add <related-files>
git commit -m "first commit message"
git add <other-files>
git commit -m "second commit message"
[powersync] Add sync pattern docsCo-Authored-By: Claude <noreply@anthropic.com>
Always show proposed commits with their files:
**Commit 1:** `commit message here`
- file1.md
- file2.ts
**Commit 2:** `another commit message`
- file3.md
Then wait for user approval before executing.