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 you have a spec or requirements for a multi-step task, before touching code.
$ npx -y skills add yeaight7/agent-powerups --skill writing-plans --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/writing-plansContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when you have a spec or requirements for a multi-step task, before touching code.
name: writing-plans description: Use when you have a spec or requirements for a multi-step task, before touching code.
Turn a spec into a detailed, executable multi-step implementation plan. Prevents implementation drift and gives any engineer — or agent — enough detail to build without guessing.
If the spec covers multiple independent subsystems, break it into separate plans — one per subsystem. Each plan should produce working, testable software on its own.
1. **Scope check** — Identify all affected subsystems. If multiple independent subsystems, suggest separate plans.
2. **Design file structure** — Before defining tasks, map which files will be created or modified and what each is responsible for. Units should have clear boundaries, focused responsibility, and well-defined interfaces.
3. **Write the plan header:**
# [Feature Name] Implementation Plan **Goal:** [One sentence describing what this builds] **Architecture:** [2-3 sentences about approach] **Tech Stack:** [Key technologies/libraries] ---
4. **Break work into bite-sized tasks** — Each step should take 2–5 minutes:
5. **Write each task** using this structure:
### Task N: [Component Name] **Files:** - Create: `exact/path/to/file.py` - Modify: `exact/path/to/existing.py` - Test: `tests/exact/path/to/test.py` - [ ] **Step 1:** [Action] ```code # Actual code here
Expected: `<exact output>`
6. **No placeholders** — These are plan failures; never write them:
TBD / TODO / implement later / fill in details "Add appropriate error handling" / "handle edge cases" "Write tests for the above" (without actual test code) "Similar to Task N" (repeat the code — engineer may read tasks out of order) Steps that describe without showing how (code blocks required for code steps)
7. **Self-review before saving:** - Spec coverage: Can you point to a task for every requirement? - Placeholder scan: No undefined, deferred, or vague steps? - Type consistency: Do types and method names in later tasks match earlier definitions? 8. **Save to** `docs/plans/YYYY-MM-DD-<feature-name>.md`. ## Output A Markdown plan file with: - Header (goal, architecture, tech stack) - Tasks with checkbox steps, exact file paths, actual code blocks, exact commands with expected output - No placeholders of any kind ## Verification - [ ] All spec requirements covered (point to a task for each) - [ ] No undefined, deferred, or vague steps present - [ ] File paths are exact (not `path/to/file`) - [ ] Tasks are 2–5 minutes each - [ ] Code blocks contain actual code, not descriptions - [ ] Commands include expected output - [ ] Plan saved to `docs/plans/` ## Failure Modes - **Vague tasks** — A reader who cannot execute a step without guessing means the task is incomplete. - **Missing spec coverage** — Implementation diverges from requirements. - **Placeholder content** — Implementation stalls when an engineer hits an undefined or deferred step. - **Stale type references** — Function named `clearLayers()` in Task 3 but `clearFullLayers()` in Task 7 is a bug in the plan.
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,…