スキル一覧に戻る
hugocxl

commit

by hugocxl

✨ My site built with Next.js, PandaCSS, Notion, and Vercel.

2🍴 1📅 2026年1月18日
GitHubで見るManusで実行

SKILL.md


name: commit description: Create conventional commits for this Electron + React project. Run type checking before committing to ensure no type errors are introduced. user_invocable: true model: haiku tools: Bash, Read

Commit Skill

Create well-formatted conventional commits for the Cleanify project.

Commit Message Format

Use conventional commits format:

<type>(<scope>): <description>

[optional body]

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

Types

TypeWhen to Use
featNew feature or capability
fixBug fix
refactorCode change that neither fixes a bug nor adds a feature
perfPerformance improvement
styleFormatting, missing semicolons, etc.
docsDocumentation only changes
testAdding or correcting tests
choreMaintenance tasks, dependency updates
buildChanges to build system or external dependencies

Scopes

ScopeFiles Affected
mainsrc/main/**
renderersrc/renderer/**
preloadsrc/preload/**
typessrc/shared/types.ts
servicessrc/main/services/**
hookssrc/renderer/hooks/**
ipcIPC handlers and preload bridges
buildBuild configuration, electron-builder
depspackage.json dependency changes

Workflow

  1. Run pnpm typecheck to verify no type errors
  2. Run git status to see changes
  3. Run git diff --staged for staged changes (or git diff for all)
  4. Check recent commits with git log --oneline -5 for style consistency
  5. Create commit with appropriate type, scope, and description

Examples

# Feature in renderer
feat(renderer): add disk usage visualization panel

# Bug fix in main process service
fix(services): handle null path in artifact scanner

# IPC changes spanning main and preload
feat(ipc): add real-time progress events for cleanup

# Type definition update
refactor(types): add discriminated union for scan states

# Dependency update
chore(deps): update electron to v40

Pre-Commit Check

Always run type checking before committing:

pnpm typecheck

If there are errors, fix them before committing. Never commit code with type errors.

スコア

総合スコア

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

レビュー

💬

レビュー機能は近日公開予定です