ソース情報
- リポジトリ
- finos/git-proxy
- ソースの最終更新活動
- 2026年4月1日 11:10
- 検出された SKILL.md の言語
- 英語
- スター
- 243
- フォーク
- 174
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/finos/git-proxy --skill commitコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Address review comments on a GitHub pull request
Update existing project documentation to reflect the current state of the branch
Implement a GitHub issue end-to-end: fetch, plan, code with approval, commit incrementally, and generate a PR summary
SOC 職業分類に基づく
SKILL.md を表示中
| name | commit |
| description | Create a conventional commit for the current staged/unstaged changes |
Create a git commit for the current staged/unstaged changes using Conventional Commits.
Read AGENTS.md first. It is the canonical project guide for this repository.
Rules:
git status and git diff to understand what changedgit add -A)--signoff to sign off using the committer's git config (do NOT hardcode any name/email)Commit format:
<type>[optional scope]: <description>
Types: feat, fix, docs, style, refactor, perf, test, build, ci, chore
Scope (optional): a noun describing the affected area in parentheses. Common scopes: config, api, proxy, db, e2e, docker, ci.
Subject line rules:
For breaking changes, add ! after the type/scope:
feat(config)!: rename queue config key
Examples of good messages:
Commit command:
git commit --signoff -m "<type>[scope]: <description>"
Do NOT: