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 GitHub PR shows failing checks and a clean failure readout is needed before changing any code.
$ npx -y skills add yeaight7/agent-powerups --skill github-ci-failure-triage --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/github-ci-failure-triageContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when a GitHub PR shows failing checks and a clean failure readout is needed before changing any code.
name: github-ci-failure-triage description: Use when a GitHub PR shows failing checks and a clean failure readout is needed before changing any code.
Produce a clean, GitHub-native readout of failing PR checks before any code is edited. Triage first: summarize the breakage and propose a local fix plan; implement only after approval when the task is framed as triage-first.
1. **Resolve the PR:**
gh pr view <number-or-url> --json number,title,headRefName,url gh pr view --json number,title,headRefName,url # from the current branch
2. **Inspect failing checks.** List checks, isolate failing GitHub Actions jobs, and pull only the failing logs:
gh pr checks <number> gh run list --branch <head-branch> --limit 10 gh run view <run-id> --json jobs # job-level status gh run view <run-id> --log-failed # logs from failing steps only
If a check is external (not GitHub Actions), report its URL and keep it out of local log parsing.
3. **Summarize the failure:**
4. **Propose the fix plan:**
5. **Implement only when the user wants the fix.** Keep changes traceable to the failing signal; rerun the narrowest meaningful local validation first.
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,…