home/dot_agents/skills/open-pr-files/SKILL.md
PRの変更ファイル一覧を取得しVSCodeで開く。引数省略時は現在のブランチのPRを自動検出。
npx skillsauth add kryota-dev/dotfiles open-pr-filesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
指定された Pull Request の変更ファイル一覧を取得し、すべてのファイルを VSCode で開きます。
$ARGUMENTS(省略可)
9676)https://github.com/<OWNER>/<REPO>/pull/9676)引数からPR特定子を決定してください:
https://github.com/<OWNER>/<REPO>/pull/9676 → 9676)gh pr view --json number --jq '.number'
上記コマンドが失敗した場合(現在のブランチにPRが存在しない場合)、ユーザーにPR番号の入力を求めて終了してください。
以下のコマンドを実行してください。{PR番号} をステップ1で決定した値に置き換えること。
gh api repos/{owner}/{repo}/pulls/{PR番号}/files --jq '.[] | select(.status == "removed" | not) | .filename' | while IFS= read -r file; do code "$file" & done
変更ファイル(削除以外)の一覧を番号付きリストで報告してください。
gh api repos/{owner}/{repo}/pulls/{PR番号}/files --jq '.[] | select(.status == "removed" | not) | .filename' | cat -n
削除されたファイルがある場合は、別途「削除されたファイル」として一覧を報告してください。
gh api repos/{owner}/{repo}/pulls/{PR番号}/files --jq '.[] | select(.status == "removed") | .filename' | cat -n
development
`cc-code-review` エージェントを起動して独立したコンテキストでコードレビューを実行する。 現在のセッションのバイアスのないフレッシュな視点で、プロジェクトの CLAUDE.md を踏まえたレビューを行う。 トリガー: "cc-code-review", "ccでレビュー", "別の視点でレビュー", "セカンドオピニオン" 使用場面: (1) PRのコードレビュー (2) ブランチ差分のレビュー (3) 特定ファイルのレビュー (4) 現在の変更のレビュー
tools
Comprehensive guide for the `wtp` (Worktree Plus) CLI by satococoa — an enhanced Git worktree manager. Use this whenever the user wants to create, list, remove, or navigate Git worktrees with wtp, mentions `wtp add`/`wtp cd`/`wtp list`/`wtp remove`/`wtp exec`, asks about automatic worktree paths from branch names, post-create hooks (copy/symlink/command) in `.wtp.yml`, branch tracking for worktrees, or shell integration (`wtp shell-init`, `wtp hook`, tab completion, auto-cd). Trigger this even when the user just describes the workflow — e.g. 'spin up a worktree for this feature branch', 'jump to my auth worktree', 'clean up the worktree and its branch' — without naming wtp explicitly, as long as wtp is the available tool.
tools
Use when doing ANY task involving Supabase. Triggers: Supabase products (Database, Auth, Edge Functions, Realtime, Storage, Vectors, Cron, Queues); client libraries and SSR integrations (supabase-js, @supabase/ssr) in Next.js, React, SvelteKit, Astro, Remix; auth issues (login, logout, sessions, JWT, cookies, getSession, getUser, getClaims, RLS); Supabase CLI or MCP server; schema changes, migrations, security audits, Postgres extensions (pg_graphql, pg_cron, pg_vector).
data-ai
Postgres performance optimization and best practices from Supabase. Use this skill when writing, reviewing, or optimizing Postgres queries, schema designs, or database configurations.