create-prompt
Create a standalone prompt that another Claude can execute. Use when writing reusable prompts for coding, analysis, or research tasks. Saves to `./prompts/` as numbered `.md` files.
<step_0_intake_gate>
<title>Adaptive Requirements Gathering</title><critical_first_action> BEFORE analyzing anything, check if the user provided a task description.
IF no task description was provided (user just invoked the skill without details): -> IMMEDIATELY use AskUserQuestion with:
- header: "Task type"
- question: "What kind of prompt do you need?"
- options:
- "Coding task" - Build, fix, or refactor code
- "Analysis task" - Analyze code, data, or patterns
- "Research task" - Gather information or explore options
After selection, ask: "Describe what you want to accomplish" (they select "Other" to provide free text).
IF the user provided a task description: -> Skip this handler. Proceed directly to adaptive_analysis. </critical_first_action>
<adaptive_analysis> Analyze the user's description to extract and infer:
- Task type: Coding, analysis, or research (from context or explicit mention)
- Complexity: Simple (single file, clear goal) vs complex (multi-file, research needed)
- Prompt structure: Single prompt vs multiple prompts (are there independent sub-tasks?)
- Execution strategy: Parallel (independent) vs sequential (dependencies)
- Depth needed: Concise goal statement vs comprehensive goals-and-constraints
Inference rules:
- Dashboard/feature with multiple components -> likely multiple prompts
- Bug fix with clear location -> single prompt, simple
- "Optimize" or "refactor" -> needs specificity about what/where
- Authentication, payments, complex features -> complex, needs context </adaptive_analysis>
<contextual_questioning> Generate 2-4 questions using AskUserQuestion based ONLY on genuine gaps.
<question_templates>
For ambiguous scope (e.g., "build a dashboard"):
- header: "Dashboard type"
- question: "What kind of dashboard is this?"
- options:
- "Admin dashboard" - Internal tools, user management, system metrics
- "Analytics dashboard" - Data visualization, reports, business metrics
- "User-facing dashboard" - End-user features, personal data, settings
For unclear target (e.g., "fix the bug"):
- header: "Bug location"
- question: "Where does this bug occur?"
- options:
- "Frontend/UI" - Visual issues, user interactions, rendering
- "Backend/API" - Server errors, data processing, endpoints
- "Database" - Queries, migrations, data integrity
For auth/security tasks:
- header: "Auth method"
- question: "What authentication approach?"
- options:
- "JWT tokens" - Stateless, API-friendly
- "Session-based" - Server-side sessions, traditional web
- "OAuth/SSO" - Third-party providers, enterprise
For performance tasks:
- header: "Performance focus"
- question: "What's the main performance concern?"
- options:
- "Load time" - Initial render, bundle size, assets
- "Runtime" - Memory usage, CPU, rendering performance
- "Database" - Query optimization, indexing, caching
For output/deliverable clarity:
- header: "Output purpose"
- question: "What will this be used for?"
- options:
- "Production code" - Ship to users, needs polish
- "Prototype/POC" - Quick validation, can be rough
- "Internal tooling" - Team use, moderate polish
</question_templates>
<question_rules>
- Only ask about genuine gaps - don't ask what's already stated
- Each option needs a description explaining implications
- Prefer options over free-text when choices are knowable
- User can always select "Other" for custom input
- 2-4 questions max per round </question_rules> </contextual_questioning>
<decision_gate> After receiving answers, present decision gate using AskUserQuestion:
- header: "Ready"
- question: "I have enough context to create your prompt. Ready to proceed?"
- options:
- "Proceed" - Create the prompt with current context
- "Ask more questions" - I have more details to clarify
- "Let me add context" - I want to provide additional information
If "Ask more questions" -> generate 2-4 NEW questions based on remaining gaps, then present gate again If "Let me add context" -> receive additional context via "Other" option, then re-evaluate If "Proceed" -> continue to generation step </decision_gate>
<finalization> After "Proceed" selected, state confirmation:"Creating a [simple/moderate/complex] [single/parallel/sequential] prompt for: [brief summary]"
Then proceed to generation. </finalization> </step_0_intake_gate>
<step_1_generate_and_save>
<title>Generate and Save Prompts</title><pre_generation_analysis> Before generating, determine:
-
Single vs Multiple Prompts:
- Single: Clear dependencies, single cohesive goal, sequential steps
- Multiple: Independent sub-tasks that could be parallelized or done separately
-
Execution Strategy (if multiple):
- Parallel: Independent, no shared file modifications
- Sequential: Dependencies, one must finish before next starts
-
Reasoning depth:
- Simple -> Concise prompt with clear goal
- Complex -> State goal and constraints explicitly; let the model decompose
-
Required tools: File references, bash commands, MCP servers
-
Prompt quality needs:
- Enumerate concrete scope additions for ambitious work?
- WHY explanations for constraints?
- Examples for ambiguous requirements? </pre_generation_analysis>
Create the prompt(s) and save to the prompts folder.
For single prompts:
- Generate one prompt file following the patterns below
- Save as
./prompts/[number]-[name].md
For multiple prompts:
- Determine how many prompts are needed (typically 2-4)
- Generate each prompt with clear, focused objectives
- Save sequentially:
./prompts/[N]-[name].md,./prompts/[N+1]-[name].md, etc. - Each prompt should be self-contained and executable independently
Prompt Construction Rules
Always Include:
- XML tag structure with clear, semantic tags like
<objective>,<context>,<requirements>,<constraints>,<output> - Contextual information: Why this task matters, what it's for, who will use it, end goal
- Explicit, specific instructions: Tell Claude exactly what to do with clear, unambiguous language
- Sequential steps: Use numbered lists for clarity
- File output instructions using relative paths:
./filenameor./subfolder/filename - Reference to reading the CLAUDE.md for project conventions
- Explicit success criteria within
<success_criteria>or<verification>tags
Conditionally Include (based on analysis):
- Reasoning depth: For complex tasks, state the goal and constraints clearly rather than injecting reasoning phrases. Avoid "think step by step", "thoroughly analyze", or similar CoT triggers — reasoning models handle decomposition internally and these can over-amplify.
- Scope expansion: When the task warrants ambition, enumerate specific additional capabilities to include (e.g., "also add keyboard shortcuts, undo/redo, and accessibility labels") rather than using vague amplifiers like "go beyond the basics".
- WHY explanations for constraints and requirements:
- In generated prompts, explain WHY constraints matter, not just what they are
- Example: Instead of "Never use ellipses", write "Your response will be read aloud, so never use ellipses since text-to-speech can't pronounce them"
- Parallel tool calling for agentic/multi-step workflows:
- "For maximum efficiency, whenever you need to perform multiple independent operations, invoke all relevant tools simultaneously rather than sequentially."
- Reflection after tool use for complex agentic tasks:
- "After receiving tool results, carefully reflect on their quality and determine optimal next steps before proceeding."
<research>tags when codebase exploration is needed<validation>tags for tasks requiring verification<examples>tags for complex or ambiguous requirements - ensure examples demonstrate desired behavior and avoid undesired patterns- Bash command execution with "!" prefix when system state matters
- MCP server references when specifically requested or obviously beneficial
Output Format:
- Generate prompt content with XML structure
- Save to:
./prompts/[number]-[descriptive-name].md- Number format: 001, 002, 003, etc. (check existing files in ./prompts/ to determine next number)
- Name format: lowercase, hyphen-separated, max 5 words describing the task
- Example:
./prompts/001-implement-user-authentication.md
- File should contain ONLY the prompt, no explanations or metadata
<prompt_patterns> Read the matching pattern file based on task type:
- Coding task -> read
references/prompt-pattern-coding.md - Analysis task -> read
references/prompt-pattern-analysis.md - Research task -> read
references/prompt-pattern-research.md</prompt_patterns> </step_1_generate_and_save>
<intelligence_rules>
-
Clarity First: If anything is unclear, ask before proceeding. Test: Would a colleague with minimal context understand this prompt?
-
Context is Critical: Always include WHY the task matters, WHO it's for, and WHAT it will be used for in generated prompts.
-
Be Explicit: Generate prompts with explicit, specific instructions. For ambitious tasks, enumerate concrete additions rather than using vague amplifiers. For specific formats, state exactly what format is needed.
-
Scope Assessment: Simple tasks get concise prompts. Complex tasks get comprehensive structure with explicit goals and constraints.
-
Context Loading: Only request file reading when the task explicitly requires understanding existing code. Use patterns like:
- "Examine @package.json for dependencies" (when adding new packages)
- "Review @src/database/* for schema" (when modifying data layer)
- Skip file reading for greenfield features
-
Precision vs Brevity: Choose the shortest formulation that preserves specificity. Never sacrifice clarity for brevity, but never add tokens that don't add information.
-
Tool Integration:
- Include MCP servers only when explicitly mentioned or obviously needed
- Use bash commands for environment checking when state matters
- File references should be specific, not broad wildcards
- For multi-step agentic tasks, include parallel tool calling guidance
-
Output Clarity: Every prompt must specify exactly where to save outputs using relative paths
-
Verification Always: Every prompt should include clear success criteria and verification steps </intelligence_rules>
<decision_tree> After saving the prompt(s), present this decision tree to the user:
Prompt(s) created successfully!
<single_prompt_scenario>
If you created ONE prompt (e.g., ./prompts/005-implement-feature.md):
What's next?
- Run prompt now
- Review/edit prompt first
- Save for later
- Other
Choose (1-4): _ </presentation>
<action> If user chooses #1, invoke via SlashCommand tool: `/run-prompt 005` </action> </single_prompt_scenario><parallel_scenario> If you created MULTIPLE prompts that CAN run in parallel (e.g., independent modules, no shared files):
<presentation> Saved prompts: - ./prompts/005-implement-auth.md - ./prompts/006-implement-api.md - ./prompts/007-implement-ui.mdExecution strategy: These prompts can run in PARALLEL (independent tasks, no shared files)
What's next?
- Run all prompts in parallel now (launches 3 sub-agents simultaneously)
- Run prompts sequentially instead
- Review/edit prompts first
- Other
Choose (1-4): _ </presentation>
<actions> If user chooses #1, invoke via SlashCommand tool: `/run-prompt 005 006 007 --parallel` If user chooses #2, invoke via SlashCommand tool: `/run-prompt 005 006 007 --sequential` </actions> </parallel_scenario><sequential_scenario> If you created MULTIPLE prompts that MUST run sequentially (e.g., dependencies, shared files):
<presentation> Saved prompts: - ./prompts/005-setup-database.md - ./prompts/006-create-migrations.md - ./prompts/007-seed-data.mdExecution strategy: These prompts must run SEQUENTIALLY (dependencies: 005 -> 006 -> 007)
What's next?
- Run prompts sequentially now (one completes before next starts)
- Run first prompt only (005-setup-database.md)
- Review/edit prompts first
- Other
Choose (1-4): _ </presentation>
<actions> If user chooses #1, invoke via SlashCommand tool: `/run-prompt 005 006 007 --sequential` If user chooses #2, invoke via SlashCommand tool: `/run-prompt 005` </actions> </sequential_scenario></decision_tree> </process>
<success_criteria>
- Decision tree presented and SlashCommand invoked when user selects run
- Files saved with correct sequential numbering to ./prompts/[number]-[name].md
- Prompt(s) use proper XML structure matching the task type pattern
- Pre-generation analysis documents single-vs-multiple, parallel-vs-sequential, and tool requirements before generating
- Intake gate and decision gate completed before generation </success_criteria>
<meta_instructions>
- Intake first: Complete step_0_intake_gate before generating. Use AskUserQuestion for structured clarification.
- Decision gate loop: Keep asking questions until user selects "Proceed"
- Use Glob tool with
./prompts/*.mdto find existing prompts and determine next number in sequence - If ./prompts/ doesn't exist, use Write tool to create the first prompt (Write will create parent directories)
- Keep prompt filenames descriptive but concise
- Adapt the XML structure to fit the task - not every tag is needed every time
- Consider the user's working directory as the root for all relative paths
- Each prompt file should contain ONLY the prompt content, no preamble or explanation
- After saving, present the decision tree as inline text (not AskUserQuestion)
- Use the SlashCommand tool to invoke /run-prompt when user makes their choice </meta_instructions>