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 migrating APIs, libraries, or patterns across a large codebase and a single mega-commit would be too risky to review or merge.
$ npx -y skills add yeaight7/agent-powerups --skill incremental-migration --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/incremental-migrationContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when migrating APIs, libraries, or patterns across a large codebase and a single mega-commit would be too risky to review or merge.
name: incremental-migration description: Use when migrating APIs, libraries, or patterns across a large codebase and a single mega-commit would be too risky to review or merge.
Never attempt to migrate an entire codebase in a single step. Mega-commits are impossible to review and dangerous to merge. Migrate in verified, committed slices, tracking the remaining inventory to zero.
1. **Define the target pattern.** Clearly establish the "Old Way" and the "New Way".
2. **Build the inventory.** Make the migration measurable:
git grep -ln "oldApiCall(" -- "src/" # files still on the Old Way
git grep -c "oldApiCall(" -- "src/" | sort -t: -k2 -nr # hotspots first3. **Implement side-by-side.** Create the "New Way" implementation alongside the old one. Do not delete the old one yet.
4. **Migrate one vertical slice.** Pick exactly one feature, route, or component; update it to use the new pattern. Mechanical rewrites can be scripted per slice:
# codemod sketch — scoped to one slice; review the diff before committing
git grep -l "oldApiCall(" -- "src/feature-x/" | xargs sed -i "s/oldApiCall(/newApiCall(/g"
git diff --stat # confirm the change stayed inside the slice(For syntax-aware rewrites, AST codemod tools such as jscodeshift or comby are safer than sed, when available.)
5. **Test and commit.** Verify the slice works. Commit this step.
6. **Repeat.** Move to the next slice, re-running the inventory to watch the count fall.
7. **Deprecate and remove.** Only once all usages of the "Old Way" are gone (inventory at zero) can you safely delete the old implementation.
If a migration is too large for a single session, leave a clear handoff document summarizing progress and the next files to migrate.
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,…