ワンクリックで
authenticated-git-ops
Provides ready-to-use commands for git operations requiring user authentication (commits, push, PR creation).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Provides ready-to-use commands for git operations requiring user authentication (commits, push, PR creation).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Creates a plan to address a Jira issue. Use it when the user wants you to suggest how to address an issue or implement a feature.
Create pull request. Use when the user asks to create a pull request after some refactor.
Executes code quality checks. Use when the user asks to validate changes after a refactor or to report test coverage
SOC 職業分類に基づく
| name | authenticated-git-ops |
| description | Provides ready-to-use commands for git operations requiring user authentication (commits, push, PR creation). |
| disable-model-invocation | true |
Provides copy-paste commands for git operations that require user authentication. Use this skill when the agent cannot execute commands due to:
Call this skill when you need to:
git commit -s -m '<TICKET-ID> | <type>: <short description>
<bullet-list of changes>'
Example:
git commit -s -m 'ECOPROJECT-1234 | fix: Resolve cluster selection bug
- Updated Report.tsx to auto-select first cluster
- Added tests for new behavior
- Fixed lint warnings'
git push -u origin <branch-name>
Example:
git push -u origin ECOPROJECT-1234
gh pr create --repo kubev2v/migration-planner-ui-app \
--title "<TICKET-ID> | <type>: <short description>" \
--body "## Summary
<bullet-list of changes>
## Test plan
- [ ] <test item 1>
- [ ] <test item 2>
Fixes: [<TICKET-ID>](https://issues.redhat.com/browse/<TICKET-ID>)"
Example:
gh pr create --repo kubev2v/migration-planner-ui-app \
--title "ECOPROJECT-1234 | fix: Resolve cluster selection bug" \
--body "## Summary
- Auto-select first cluster on initial load
- Makes recommendations button visible by default
- Preserves user ability to select 'All clusters'
## Test plan
- [x] All tests pass
- [x] Lint checks pass
- [ ] Manual verification of cluster selection
Fixes: [ECOPROJECT-1234](https://issues.redhat.com/browse/ECOPROJECT-1234)"
git add-s flag for commits (sign-off required)kubev2v/migration-planner-ui-app (upstream)ECOPROJECT-1234)