원클릭으로
ai-prs
List all open PRs targeting the Studio AI command with draft status, approval state, and requested reviewers
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
List all open PRs targeting the Studio AI command with draft status, approval state, and requested reviewers
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when the user wants to name or rename something — a product, feature, brand, project, command, or company — or asks to "brainstorm names", "find a better name", "naming ideas", or invokes /brainstorming-names.
Use when a task has a large solution space and a measurable quality signal and the goal is to generate many candidates and select the best — naming/branding, UX/UI variants, marketing copy, code optimization, prompt tuning. Triggers: "brainstorm and pick the best", "explore and exploit", "simulated annealing", "tournament of options", "generate N options and rank them", iterate-until-score loops, or /explore-exploit.
Use when the user asks to rate, score, judge, critique with a number, or "how good is" an artifact — a live website/UI, a markdown draft (blog post, README, plan, docs), or code/a diff — or invokes /score, or sets up an iterate-until-score-N feedback loop (e.g. with /goal "repeat until 9/10").
Start work on a Linear issue end-to-end — create a worktree, fetch issue context from Linear, implement the fix, then commit, push, and open a draft PR. Use when the user says "start issue", "work on STU-1234", "create a worktree and fix <Linear link>", "start a worktree for this ticket", or gives a Linear URL/issue id and wants the whole branch→PR flow.
Use when the user wants to undo, absorb, collapse, or reverse a git worktree — "undo worktree", "absorb worktree", "move worktree branch back to main repo", "remove worktree and checkout in main", "get rid of this worktree", or finish work in a ~/worktrees.nosync worktree and continue it in the main studio checkout.
This skill should be used when the user asks to "clean up my Mac", "free disk space", "my disk is full", "what's taking up space", "reclaim storage", "offload files", or wants to dedupe/archive backups and media to remote storage. Provides a scan → categorize → offload/clean → reclaim workflow with tested scripts and macOS-specific gotchas.
| name | ai-prs |
| description | List all open PRs targeting the Studio AI command with draft status, approval state, and requested reviewers |
| user_invocable | true |
List all open GitHub PRs related to the Studio AI command and display them in a table.
gh pr list --state open --search "ai in:title" --limit 30 --json number,title,author,url,isDraft,reviewDecision,reviewRequests --jq '.[] | "\(.number)\t\(.title)\t\(.author.login)\t\(.isDraft)\t\(.reviewDecision)\t\([.reviewRequests[]? | .login // .name] | join(", "))\t\(.url)"'
| Column | Description |
|---|---|
| # | PR number |
| Title | PR title |
| Author | GitHub username |
| Draft? | "Draft" (bold) if draft, "No" otherwise |
| Approved? | "Approved" if APPROVED, "Changes Requested" if CHANGES_REQUESTED, "Pending" otherwise |
| Reviewers Requested | Comma-separated list of requested reviewers, or "—" if none |
| Link | GitHub PR URL as [PR](url) |