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 a pull request needs one bounded review and CI triage cycle with explicit approval before edits or remote writes.
$ npx -y skills add yeaight7/agent-powerups --skill pr-review-ci-loop --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/pr-review-ci-loopContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when a pull request needs one bounded review and CI triage cycle with explicit approval before edits or remote writes.
name: pr-review-ci-loop description: Use when a pull request needs one bounded review and CI triage cycle with explicit approval before edits or remote writes.
Combine PR review and CI failure triage into one human-controlled loop. Review findings and CI logs are inputs; they are not permission for autonomous remote actions.
Do not use when the user only asked for a review, only asked for CI diagnosis, or has not approved edits.
gh pr view <pr> --json number,title,author,baseRefName,headRefName,mergeStateStatus,reviewDecision,statusCheckRollup gh pr diff <pr> --stat gh pr diff <pr>
Record file count, risky areas, generated files, and public API changes.
Classify findings by severity:
| Category | What to check | | --- | --- | | Correctness | Logic errors, off-by-one, wrong assumptions | | Tests | Missing coverage for changed behavior, broken assertions | | Public API | Breaking changes to exports, signatures, or contracts | | Security | Injection risks, exposed secrets, auth bypass | | Migration / release risk | Schema changes, feature flags, rollback difficulty |
gh pr checks <pr> gh run view <run-id> --log-failed
Extract the first failing assertion or error line. Categorize each failure as code error, flaky, environment, or config.
REVIEW FINDINGS: [blocking] <description> - <file:line or section> [non-blocking] <description> CI FAILURES: <check name>: <first error line> Likely cause: <code error / flaky / env / config> LIKELY FIXES: 1. <specific change> 2. <specific change> VALIDATION PLAN: - Run: <command> - Expected: <outcome>
State the exact operation before running it:
NEXT REMOTE ACTION: git push origin <branch> EFFECT: updates the remote branch, triggering CI re-run Approve?
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,…