← スキル一覧に戻る

commit
by guillempuche
Open-source AI coding skills for Claude Code, Cursor, Copilot, and AI agents
⭐ 0🍴 0📅 2026年1月16日
SKILL.md
name: commit description: Commit workflow for ai-standards repo. Formats all markdown files and previews changes before committing.
Commit Workflow
Standard commit workflow for the ai-standards repository.
Before Every Commit
1. Run Markdown Formatter
Format project markdown files using mdformat (excludes opensrc/ which contains external source):
nix develop -c mdformat skills/ .claude/ agents/ templates/ *.md
2. Preview Changes
Show files involved and diff preview:
git status
git diff --stat
git diff
3. Analyze and Group Changes
Review the changes and determine:
- Single commit: All changes are related to one feature/fix
- Multiple commits: Changes are unrelated and should be separate
Examples:
- Docs update + new skill → 2 commits
- Rename agent + update references → 1 commit
- Bug fix + unrelated refactor → 2 commits
4. Stage and Commit
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"
Commit Message Guidelines
- Start with uppercase, imperative mood
- Reference skill/agent names in brackets when applicable:
[powersync] Add sync pattern docs - If AI made the changes, include co-author:
Co-Authored-By: Claude <noreply@anthropic.com>
Output Format
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.
スコア
総合スコア
65/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
1ヶ月以内に更新
+10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
レビュー
💬
レビュー機能は近日公開予定です

