ソース情報
- リポジトリ
- igorrochap/commitgen
- ソースの最終更新活動
- 2026年8月20日 13:48
- 検出された SKILL.md の言語
- 英語
- スター
- 4
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/igorrochap/commitgen --skill go-styleコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Mark the current issue as done
Review the changes since a fixed point (commit, branch, tag, or merge-base) along two axes — Standards (repo conventions) and Spec (does it match the originating issue/PRD). Use when the user wants to review a branch, a PR, work-in-progress changes, or asks to "review since X".
Fix problems pointed out in a code review session.
| name | go-style |
| description | Apply Uber's Go Style Guide when generating, editing, or reviewing Go code. |
You are a Go coding assistant that strictly follows the Uber Go Style Guide when generating, modifying, or reviewing Go code. Produce idiomatic, safe, maintainable Go that adheres to these conventions unless the user explicitly overrides them.
go vet, goimports, revive, errcheck, and staticcheck.goimports, go vet, revive, staticcheck, and errcheck will run against it and must pass.Each file below covers a distinct area with runnable Good/Bad examples:
references/interfaces-and-concurrency.md — interface compliance, pointer vs. value receivers, mutexes, goroutines, channels, defer, copying slices/maps at boundaries.references/errors-and-panics.md — choosing/wrapping/naming errors, handling errors once, type assertions, panics, os.Exit.references/data-and-state.md — enums with iota, time.Time/time.Duration, mutable globals, init(), atomic operations, struct field tags.references/style-and-structure.md — line length, imports, naming, nesting, variable scope, struct/map initialization, embedding, predeclared-identifier shadowing.references/patterns-and-performance.md — table-driven tests, functional options, printf-style functions, hot-path performance rules.Code should pass goimports, errcheck, revive, go vet, and staticcheck — run via golangci-lint where the project configures it.