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 tricky bug, non-obvious workaround, hidden gotcha, or undocumented behavior took real debugging effort to discover and should be captured as a reusable learned skill.
$ npx -y skills add yeaight7/agent-powerups --skill hard-won-skill-extractor --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/hard-won-skill-extractorContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when a tricky bug, non-obvious workaround, hidden gotcha, or undocumented behavior took real debugging effort to discover and should be captured as a reusable learned skill.
name: hard-won-skill-extractor description: Use when a tricky bug, non-obvious workaround, hidden gotcha, or undocumented behavior took real debugging effort to discover and should be captured as a reusable learned skill.
This skill serves to document how to manually extract a useful learned skill into a reusable markdown file.
Reusable skills are not code snippets to copy-paste, but **principles and decision-making heuristics** that teach an agent HOW TO THINK about a class of problems.
**The difference:**
Before extracting a skill manually, ALL three must be true:
Extract ONLY after:
1. **Non-Googleable**: Something you couldn't easily find via search 2. **Context-Specific**: References actual files, error messages, or patterns from THIS codebase 3. **Actionable with Precision**: Tells you exactly WHAT to do and WHERE 4. **Hard-Won**: Took significant debugging effort to discover
Reject skills that are:
If the extracted idea should become a maintained, shareable skill instead of a project-local note, switch to `skill-authoring-guide` and turn it into a proper skill folder with frontmatter, support files, and validation.
Every learned skill file MUST start with YAML frontmatter. Do **not** write plain markdown without frontmatter.
After the frontmatter, use a pure Markdown body with headings. Do not use XML-like tags such as `<Purpose>` or `<Workflow>` as default top-level structure; reserve XML-like delimiters for nested examples, quoted input, external documents, or machine-readable prompt payloads.
Minimum required frontmatter:
--- name: <skill-name> description: <one-line description> triggers: - <trigger-1> - <trigger-2> ---
--- name: <skill-name> description: <one-line description> triggers: - <trigger-1> - <trigger-2> --- # [Skill Name] ## The Insight What is the underlying PRINCIPLE you discovered? Not the code, but the mental model. ## Why This Matters What goes wrong if you don't know this? What symptom led you here? ## Recognition Pattern How do you know when this skill applies? What are the signs? ## The Approach The decision-making heuristic, not just code. How should an agent THINK about this? ## Example (Optional) If code helps, show it - but as illustration of the principle, not copy-paste material.
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,…