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 CI pipeline has failed and the real error must be extracted from thousands of lines of noisy logs.
$ npx -y skills add yeaight7/agent-powerups --skill ci-failure-readout --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/ci-failure-readoutContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when a CI pipeline has failed and the real error must be extracted from thousands of lines of noisy logs.
name: ci-failure-readout description: Use when a CI pipeline has failed and the real error must be extracted from thousands of lines of noisy logs.
CI logs are notoriously noisy. Extract the one true error, prove it locally, and write a readout — do not dump the entire log into the context window.
1. **Locate the true error.** Find the exact step that failed; ignore setup/teardown noise:
gh run list --limit 10 # find the failing run gh run view <run-id> # failing job and step gh run view <run-id> --log-failed # logs from failing steps only # or, with a downloaded log: grep -n -iE "error|failed|exit code" ci.log | head -20
2. **Extract the trace.** Copy only the stack trace or the specific compiler/linter error message — not the surrounding noise.
3. **Reproduce locally.** The first rule of fixing a CI failure is proving it fails locally. Run the exact command the CI runner used (read it from the workflow/step definition), e.g.:
npm run test:e2e # whatever the failing step actually ran
4. **Draft the readout.** Before fixing it, write a 2-sentence summary: "CI failed during the `build` step because `src/types.ts` is missing an export." This forces you to understand the problem instead of blindly guessing.
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,…