/prompt-improver
Rewrite a vague prompt into a rich, structured one, with automatic fallback. Use when the user says 'improve this prompt', 'make this prompt better', or hands over a thin instruction. Not for creating a reusable skill; use `create-skill`.
$ npx -y skills add davekilleen/Dex --skill prompt-improver --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/prompt-improver
Context preview
The summary Claude sees to decide when to auto-load this skill.
Rewrite a vague prompt into a rich, structured one, with automatic fallback. Use when the user says 'improve this prompt', 'make this prompt better', or hands over a thin instruction. Not for creating a reusable skill; use `create-skill`.
SKILL.md
prompt-improver.SKILL.mdname: prompt-improver
description: "Rewrite a vague prompt into a rich, structured one, with automatic fallback. Use when the user says 'improve this prompt', 'make this prompt better', or hands over a thin instruction. Not for creating a reusable skill; use `create-skill`."
Purpose
Transform vague, ambiguous prompts into rich, well-structured prompts. Uses Anthropic's prompt improvement capabilities when available, with graceful fallback to the current LLM.
**How it works:** 1. User provides a vague prompt (e.g., "critique this doc") 2. Skill improves the prompt using best available method 3. Executes the improved prompt and returns results 4. User sees the answer **without seeing the improved prompt** (unless flags are set)
---
Arguments
**$PROMPT** - The prompt to improve (required) **$FEEDBACK** - Optional feedback on what to improve (e.g., "Make it more detailed", "Add examples", "Focus on clarity") **$TARGET_MODEL** - Optional target model for the improved prompt (defaults to current model) **$SYSTEM** - Optional system prompt to improve alongside the user prompt
---
Qualifiers
Check if $PROMPT starts with a flag:
| Flag | Behavior | |------|----------| | `-p` | **Prompt only** - Show the improved prompt, don't execute | | `-v` | **Verbose** - Show the improved prompt, then execute | | (none) | **Quick** - Execute immediately without showing full prompt |
Strip the flag from $PROMPT before processing.
---
Process
Step 1: Parse Flags and Extract Prompt
Check if $PROMPT starts with a flag (`-p`, `-v`) and extract:
- **mode**: `prompt-only`, `verbose`, or `quick` (default)
- **original_prompt**: The actual prompt text (flag removed)
- **feedback**: Optional improvement guidance from $FEEDBACK
Step 2: Determine Improvement Method
**Check in this order:**
1. **Script available?** Check if `.scripts/improve-prompt.cjs` exists
- If yes → Use script (calls Anthropic API directly)
- If no → Check for API key
2. **API key available?** Check if `ANTHROPIC_API_KEY` is set in environment
- If yes → Use Anthropic Messages API inline
- If no → Fall back to current LLM
**The fallback cascade:**
Script (.scripts/improve-prompt.cjs)
↓ (if not available)
Anthropic Messages API (direct call)
↓ (if no API key)
Current LLM (Opus 4.5, Sonnet, etc.)Step 3: Improve the Prompt
**Method A: Script (preferred)**
node .scripts/improve-prompt.cjs "$PROMPT" "$FEEDBACK" "$TARGET_MODEL" "$SYSTEM"
**Method B: Anthropic Messages API (direct)** Make API call with:
- **Model**: `claude-sonnet-4-5-20250929` (optimized for prompt engineering)
- **System Prompt**: Prompt engineering expert persona (see below)
- **User Message**: The original vague prompt
- **Temperature**: 0.3
**Method C: Current LLM Fallback** Use the current session's LLM to improve the prompt inline:
- Notify user: `"💡 Using inline improvement (no API key configured). For best results, add ANTHROPIC_API_KEY to .env"`
- Apply the same prompt engineering system prompt
- Continue with the improved result
Step 4: Handle Based on Mode
**Mode: `prompt-only` (flag: `-p`):** 1. Show: `> **Original:** [original_prompt]` 2. Show the **enhanced_prompt** in a code block 3. Stop. Do NOT execute.
**Mode: `verbose` (flag: `-v`):** 1. Show: `> **Original:** [original_prompt]` 2. Show the **enhanced_prompt** in a collapsible block:
<details>
<summary>📝 Improved Prompt (click to expand)</summary>
[enhanced_prompt]
</details>
3. Add `---` separator 4. **Execute the enhanced_prompt** and return results
**Mode: `quick` (no flag - DEFAULT):** 1. Silently execute the **enhanced_prompt** 2. Return results directly to user 3. **Do NOT show the improved prompt** - user just sees the answer
---
Prompt Engineering System Prompt
Used for both API and fallback methods:
You are an expert prompt engineer trained in Anthropic's best practices. Your job is to transform vague, ambiguous prompts into clear, structured, effective prompts.
Analyze the user's prompt and improve it using these techniques:
1. **Structure**: Add clear sections with XML tags or markdown headers
2. **Clarity**: Be specific about format, length, and success criteria
3. **Context**: Include necessary background and define ambiguous terms
4. **Examples**: Add few-shot examples when helpful
5. **Chain of Thought**: For complex tasks, request step-by-step reasoning
6. **Constraints**: Make implicit constraints explicit
Return ONLY the improved prompt. Do not explain your changes or add meta-commentary.
{if $FEEDBACK exists: "Focus on: {$FEEDBACK}"}---
Examples
/prompt-improver -p critique this strategy doc
→ Shows improved prompt only, doesn't execute
/prompt-improver -v critique this strategy doc
→ Shows improved prompt, then executes it
/prompt-improver critique this strategy doc
→ Just executes the improved prompt
/prompt-improver -v "review this code" "Focus on security issues"
→ Shows improved prompt focused on security, then executes
---
Improvement Template Reference
The improved prompt typically follows this structure:
# Task
[Clear statement of what to do]
# Context
[Background information needed]
# Instructions
1. [Step 1]
2. [Step 2]
3. [Step 3]
# Constraints
- [Constraint 1]
- [Constraint 2]
# Output Format
[Expected format and structure]
# Examples (if helpful)
[Input/output examples]
---
Error Handling
| Situation | Behavior | |-----------|----------| | Script not found | Fall back to API | | No API key | Fall back to current LLM with notification | | API rate limit | Retry with exponential backoff, then fall back | | API error | Fall back to current LLM | | Network issues | Fall back to current LLM |
**Key principle:** The skill should NEVER fail completely. It always has the current LLM as ultimate fallback.
---
Setup (Optional)
For best results, add your Anthropic API key:
1. Create `.e
Read more
name: prompt-improver description: "Rewrite a vague prompt into a rich, structured one, with automatic fallback. Use when the user says 'improve this prompt', 'make this prompt better', or hands over a thin instruction. Not for creating a reusable skill; use `create-skill`."
Purpose
Transform vague, ambiguous prompts into rich, well-structured prompts. Uses Anthropic's prompt improvement capabilities when available, with graceful fallback to the current LLM.
**How it works:** 1. User provides a vague prompt (e.g., "critique this doc") 2. Skill improves the prompt using best available method 3. Executes the improved prompt and returns results 4. User sees the answer **without seeing the improved prompt** (unless flags are set)
---
Arguments
**$PROMPT** - The prompt to improve (required) **$FEEDBACK** - Optional feedback on what to improve (e.g., "Make it more detailed", "Add examples", "Focus on clarity") **$TARGET_MODEL** - Optional target model for the improved prompt (defaults to current model) **$SYSTEM** - Optional system prompt to improve alongside the user prompt
---
Qualifiers
Check if $PROMPT starts with a flag:
| Flag | Behavior | |------|----------| | `-p` | **Prompt only** - Show the improved prompt, don't execute | | `-v` | **Verbose** - Show the improved prompt, then execute | | (none) | **Quick** - Execute immediately without showing full prompt |
Strip the flag from $PROMPT before processing.
---
Process
Step 1: Parse Flags and Extract Prompt
Check if $PROMPT starts with a flag (`-p`, `-v`) and extract:
- **mode**: `prompt-only`, `verbose`, or `quick` (default)
- **original_prompt**: The actual prompt text (flag removed)
- **feedback**: Optional improvement guidance from $FEEDBACK
Step 2: Determine Improvement Method
**Check in this order:**
1. **Script available?** Check if `.scripts/improve-prompt.cjs` exists
- If yes → Use script (calls Anthropic API directly)
- If no → Check for API key
2. **API key available?** Check if `ANTHROPIC_API_KEY` is set in environment
- If yes → Use Anthropic Messages API inline
- If no → Fall back to current LLM
**The fallback cascade:**
Script (.scripts/improve-prompt.cjs)
↓ (if not available)
Anthropic Messages API (direct call)
↓ (if no API key)
Current LLM (Opus 4.5, Sonnet, etc.)Step 3: Improve the Prompt
**Method A: Script (preferred)**
node .scripts/improve-prompt.cjs "$PROMPT" "$FEEDBACK" "$TARGET_MODEL" "$SYSTEM"
**Method B: Anthropic Messages API (direct)** Make API call with:
- **Model**: `claude-sonnet-4-5-20250929` (optimized for prompt engineering)
- **System Prompt**: Prompt engineering expert persona (see below)
- **User Message**: The original vague prompt
- **Temperature**: 0.3
**Method C: Current LLM Fallback** Use the current session's LLM to improve the prompt inline:
- Notify user: `"💡 Using inline improvement (no API key configured). For best results, add ANTHROPIC_API_KEY to .env"`
- Apply the same prompt engineering system prompt
- Continue with the improved result
Step 4: Handle Based on Mode
**Mode: `prompt-only` (flag: `-p`):** 1. Show: `> **Original:** [original_prompt]` 2. Show the **enhanced_prompt** in a code block 3. Stop. Do NOT execute.
**Mode: `verbose` (flag: `-v`):** 1. Show: `> **Original:** [original_prompt]` 2. Show the **enhanced_prompt** in a collapsible block:
<details> <summary>📝 Improved Prompt (click to expand)</summary> [enhanced_prompt] </details>
3. Add `---` separator 4. **Execute the enhanced_prompt** and return results
**Mode: `quick` (no flag - DEFAULT):** 1. Silently execute the **enhanced_prompt** 2. Return results directly to user 3. **Do NOT show the improved prompt** - user just sees the answer
---
Prompt Engineering System Prompt
Used for both API and fallback methods:
You are an expert prompt engineer trained in Anthropic's best practices. Your job is to transform vague, ambiguous prompts into clear, structured, effective prompts.
Analyze the user's prompt and improve it using these techniques:
1. **Structure**: Add clear sections with XML tags or markdown headers
2. **Clarity**: Be specific about format, length, and success criteria
3. **Context**: Include necessary background and define ambiguous terms
4. **Examples**: Add few-shot examples when helpful
5. **Chain of Thought**: For complex tasks, request step-by-step reasoning
6. **Constraints**: Make implicit constraints explicit
Return ONLY the improved prompt. Do not explain your changes or add meta-commentary.
{if $FEEDBACK exists: "Focus on: {$FEEDBACK}"}---
Examples
/prompt-improver -p critique this strategy doc → Shows improved prompt only, doesn't execute /prompt-improver -v critique this strategy doc → Shows improved prompt, then executes it /prompt-improver critique this strategy doc → Just executes the improved prompt /prompt-improver -v "review this code" "Focus on security issues" → Shows improved prompt focused on security, then executes
---
Improvement Template Reference
The improved prompt typically follows this structure:
# Task [Clear statement of what to do] # Context [Background information needed] # Instructions 1. [Step 1] 2. [Step 2] 3. [Step 3] # Constraints - [Constraint 1] - [Constraint 2] # Output Format [Expected format and structure] # Examples (if helpful) [Input/output examples]
---
Error Handling
| Situation | Behavior | |-----------|----------| | Script not found | Fall back to API | | No API key | Fall back to current LLM with notification | | API rate limit | Retry with exponential backoff, then fall back | | API error | Fall back to current LLM | | Network issues | Fall back to current LLM |
**Key principle:** The skill should NEVER fail completely. It always has the current LLM as ultimate fallback.
---
Setup (Optional)
For best results, add your Anthropic API key:
1. Create `.e
A personal operating system powered by Claude. Strategic work management, meeting intelligence, relationship tracking, daily planning — all configured for your specific role. No coding required.
Repo: davekilleen/Dex
Other skills on davekilleen-dex.
- /agent-browser
Browser automation using Vercel's agent-browser CLI. Use when you need to interact with web pages, fill forms, take screenshots, or scrape data. Alternative to Playwright MCP - uses Bash commands with ref-based element selection. Triggers on "browse website", "fill form", "click
Open skill - /agent-native-architecture
Build applications where agents are first-class citizens. Use this skill when designing autonomous agents, creating MCP tools, implementing self-modifying systems, or building apps where features are outcomes achieved by agents operating in a loop.
Open skill - /andrew-kane-gem-writer
This skill should be used when writing Ruby gems following Andrew Kane's proven patterns and philosophy. It applies when creating new Ruby gems, refactoring existing gems, designing gem APIs, or when clean, minimal, production-ready Ruby library code is needed. Triggers on
Open skill - /brainstorming
This skill should be used before implementing features, building components, or making changes. It guides exploring user intent, approaches, and design decisions before planning. Triggers on "let's brainstorm", "help me think through", "what should we build", "explore
Open skill - /compound-docs
Capture solved problems as categorized documentation with YAML frontmatter for fast lookup
Open skill - /create-agent-skills
Expert guidance for creating, writing, and refining Claude Code Skills. Use when working with SKILL.md files, authoring new skills, improving existing skills, or understanding skill structure and best practices.
Open skill

