ソース情報
- リポジトリ
- andrem-sec/psc-comet
- ソースの最終更新活動
- 2026年4月1日 00:39
- 検出された SKILL.md の言語
- 英語
- スター
- 4
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/andrem-sec/psc-comet --skill git-commitコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | git-commit |
| description | Commit with decision context trailers — encodes the why, not just the what |
Write commits that encode the decision context, not just the change. Future developers (including you) will thank you.
Without structure, commit messages describe what was done (which the diff already shows) instead of why it was done. The decisions, constraints, and rejected alternatives that shaped the change are lost. Six months later, when someone asks "why is it done this way?", the answer is gone.
type(scope): description
Examples:
fix(auth): correct typo in error message
chore: bump dependency versions
style: reformat user service to match project conventions
type(scope): description
[Body — what problem this solves, 1-3 sentences]
Constraint: [active constraint that shaped the decision]
Rejected: [alternative considered] | [reason rejected]
Directive: [warning for future modifiers]
Confidence: high | medium | low
Scope-risk: narrow | moderate | broad
Not-tested: [edge case not covered by tests]
fix(auth): prevent silent session drops during long-running ops
Auth service returns inconsistent status codes on token expiry.
Interceptor now catches all 4xx and triggers inline refresh.
Constraint: Auth service does not support token introspection
Constraint: Must not add latency to non-expired-token paths
Rejected: Extend token TTL to 24h | security policy violation
Rejected: Background refresh on timer | race condition with concurrent requests
Directive: Error handling is intentionally broad — do not narrow without verifying upstream behavior
Confidence: high
Scope-risk: narrow
Not-tested: Auth service cold-start latency >500ms
| Trailer | When to Use |
|---|---|
Constraint: | Something you could not change that shaped the solution |
Rejected: | Alternative you considered seriously before rejecting |
Directive: | Instructions for the next person to touch this code |
Confidence: | How certain you are this is the right fix |
Scope-risk: | How broad the blast radius of this change is |
Not-tested: | Edge cases you know exist but did not cover |
| Type | Use For |
|---|---|
feat | New feature or behavior |
fix | Bug fix |
refactor | Code change that neither fixes a bug nor adds a feature |
test | Adding or correcting tests |
docs | Documentation only |
chore | Build process, dependencies, tooling |
perf | Performance improvement |
ci | CI/CD configuration |
Do not write a commit message that just describes what the diff already shows. add null check tells you nothing. add null check to prevent crash when user has no profile (new users created via SSO have no profile until first login) tells you everything.
Do not add trailers to trivial commits. A typo fix does not need a Constraint: trailer.
Do not use past tense. Use imperative: fix, not fixed. add, not added.
Rejected: trailers exist for any alternative that was seriously consideredDirective: is present for any code that will be misunderstood without it