Back to list
wellcomecollection

commit

by wellcomecollection

0🍴 1📅 Jan 9, 2026

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)

TypeUse for
featNew features or capabilities
fixBug fixes
docsDocumentation only changes
refactorCode changes that neither fix bugs nor add features
choreMaintenance tasks, dependency updates

Scope (optional)

Common scopes in this repo:

  • vlm - VLM embedding pipeline
  • iiif - IIIF manifest processing
  • spark - 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

  1. Run git status to see changes
  2. Run git diff to review what will be committed
  3. Stage files with git add if needed
  4. 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>"

Score

Total Score

50/100

Based on repository quality metrics

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

Reviews

💬

Reviews coming soon