← スキル一覧に戻る

commit
by wellcomecollection
⭐ 0🍴 1📅 2026年1月9日
SKILL.md
name: commit description: Create a git commit following this repo's conventional commit style. Use this skill to commit staged changes or all changes. Invoke with /commit.
Git Commit
Create commits following this repo's conventional commit style.
Commit Message Format
<type>(<scope>): <description>
Types (from repo history)
| Type | Use for |
|---|---|
feat | New features or capabilities |
fix | Bug fixes |
docs | Documentation only changes |
refactor | Code changes that neither fix bugs nor add features |
chore | Maintenance tasks, dependency updates |
Scope (optional)
Common scopes in this repo:
vlm- VLM embedding pipelineiiif- IIIF manifest processingspark- Spark/Hive related
Examples from this repo
feat: add from-hive command for exporting VLM embeddings to NumPy
fix: update shard count and clean output in VLM embedding notebook
docs: add instruction to use script for downloading MySQL JDBC driver
refactor: remove dotenv dependency and ensure MySQL connector JAR path is correctly set
feat(vlm): share spark context between shards
fix: spark oom because of vectorized columns
Instructions
- Run
git statusto see changes - Run
git diffto review what will be committed - Stage files with
git addif needed - Create commit with conventional format
IMPORTANT: Do NOT include any AI attribution, "Generated by", or "Co-Authored-By" lines in commit messages. Keep commits clean and professional.
Quick Commit
To commit all changes:
git add -A && git commit -m "<type>: <description>"
To commit specific files:
git add <files> && git commit -m "<type>: <description>"
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です