commit
Commit workflow for ai-standards repo. Formats all markdown files and previews changes before committing.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
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.