prompt-evaluation-runn…
Use when evaluating prompts, LLM outputs, red-team suites, or model behavior with local eval configs and safe provider/cost controls.
Use when open pull requests, stale branches, or review bottlenecks need prioritization from current repository state.
$ npx -y skills add yeaight7/agent-powerups --skill pr-triage --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/pr-triageContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when open pull requests, stale branches, or review bottlenecks need prioritization from current repository state.
name: pr-triage description: Use when open pull requests, stale branches, or review bottlenecks need prioritization from current repository state.
Rank pull requests by urgency, impact, merge risk, and blocking effect so review time goes to the most important work first.
Do not use for deep code review or CI debugging unless explicitly requested.
Preferred tools:
Optional `gh` check:
Get-Command gh -ErrorAction SilentlyContinue gh auth status
1. Use the freshest source available.
git status --short git branch --show-current git log --oneline --decorate -n 20
2. Gather PR metadata when GitHub CLI is available:
gh pr list --state open --json number,title,author,updatedAt,isDraft,reviewDecision,mergeStateStatus,statusCheckRollup,labels gh pr view <pr> --json files,additions,deletions,reviewDecision,mergeStateStatus,statusCheckRollup
3. Rank each PR.
| Signal | Higher priority when | | --- | --- | | Blocking effect | Other work depends on it | | Review age | It is stale but still relevant | | Merge state | It has conflicts or failing required checks | | Blast radius | It touches public API, auth, data, migrations, or shared infra | | Size | It is small enough to unblock quickly or too large to ignore |
4. Separate action types:
5. Report uncertainty when source data is partial or stale.
PR TRIAGE: Top actions: 1. <PR> - <action> - <reason> Blocked: - <PR> - <blocker> Review now: - <PR> - <why now> Stale/defer: - <PR> - <reason> Risks: - <risk needing human judgment>
If `gh` is missing or unauthenticated:
1. Use local git state or connector data instead. 2. Mark GitHub-hosted metadata as partial or stale. 3. Do not present PR status, checks, or review state as current unless verified.
Curated power-ups for coding agents: skills, slash commands, MCP configs, hooks, AGENTS.md templates, and workflows for serious software engineering. Claude Code, Codex, Antigravity CLI, Cursor and more
Repo: yeaight7/agent-powerups
Use when evaluating prompts, LLM outputs, red-team suites, or model behavior with local eval configs and safe provider/cost controls.
Use when creating or reviewing red-team eval plugins, attack templates, grader rubrics, safety fixtures, or model-risk test metadata.
Use when designing, running, debugging, or hardening deterministic eval suites for agent skills, prompts, tool workflows, or MCP-backed cases.
Use when designing tool definitions for a new agent or subagent, an agent shows high retry rates, ambiguous tool invocations, or silent failures, or an…
Use when routing a prompt to a local provider CLI for a second opinion, review, or plan -- you are about to call a provider directly, need the response saved…
Use when starting work in an unfamiliar area of a codebase, spawning a subagent that needs targeted file context, a first search pass missed the relevant file,…