ソース情報
- リポジトリ
- raine/skills
- ソースの最終更新活動
- 2026年4月17日 11:35
- 検出された SKILL.md の言語
- 英語
- スター
- 2
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/raine/skills --skill update-prコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Autonomously create a plan, consult Gemini and Codex for improvements, apply feedback, and implement. No user interaction - uses best judgment throughout.
Turn an idea into a concrete design through structured dialogue.
Gemini and Codex collaboratively brainstorm solutions, building on each other's ideas across rounds. Agent synthesizes the best ideas into a plan.
| name | update-pr |
| description | Update the current PR description based on the latest changes in context. |
| allowed-tools | Read, Bash, Glob, Grep, Edit |
| disable-model-invocation | true |
Update the current PR description to reflect the latest changes made in this session.
Get the current PR body and write to a temp file, stripping Windows line endings:
gh pr view --json body --jq '.body' | tr -d '\r' | tee /tmp/pr-body.md > /dev/null
NOTE: Use tee instead of > to avoid zsh noclobber errors when the
file already exists. The >| operator also doesn't work in the Bash tool's
eval context.
Gather context about recent changes:
git diff origin/main...HEADgit log origin/main...HEAD --format="%s"Use the Edit tool to make incremental changes to the temp file:
Update the PR with the edited description:
gh pr edit --body-file /tmp/pr-body.md
IMPORTANT: Use the context of the current conversation to inform the updates. The discussion, decisions, and work done in this session provide valuable context for explaining what changed and why.
IMPORTANT: Preserve the existing PR template structure. Only update the content within the sections, don't remove or restructure sections unless specifically asked.
CRITICAL: Always use the Edit tool to make changes to the PR description file. Never rewrite the entire file - make incremental edits so the user can see diffs.