summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-12 22:23:45 +0200
committerPaul Buetow <paul@buetow.org>2026-02-12 22:23:45 +0200
commit5b40d9312980b1aa6af907b3a3eb4ff51b189c75 (patch)
tree2a5e84314e6b59bbcd3a889de841ae5534a83d1a /docs
parentda160fbdfb30a55a4d617553baeb5b0a5a9d5fb8 (diff)
feat: add design_prompt meta-prompt for implementation planning
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/mcp-prompts.md55
1 files changed, 55 insertions, 0 deletions
diff --git a/docs/mcp-prompts.md b/docs/mcp-prompts.md
index 777af5b..260760b 100644
--- a/docs/mcp-prompts.md
+++ b/docs/mcp-prompts.md
@@ -203,6 +203,61 @@ Claude: (Updates the prompt using MCP prompts/update)
**Tags**: meta, prompt-management, interactive
+### design_prompt
+Interactively design a brand new prompt template from scratch with minimal questions.
+
+**How it works**:
+1) Claude asks what the prompt should do (1-2 sentences)
+2) Claude asks what arguments it needs (if any)
+3) Claude asks for metadata (name, title, tags)
+4) Claude shows a preview of the complete prompt
+5) After you approve, Claude saves it using the MCP prompts/create method
+
+**Arguments**: None (fully interactive)
+
+**Usage Example**:
+```
+You: /design_prompt
+
+Claude: What should this prompt do?
+
+You: Review database schemas and suggest optimizations for performance and best practices
+
+Claude: What arguments does it need?
+
+You: schema (required), db_type (optional)
+
+Claude: Prompt name, title, and tags?
+
+You: Name: review_db_schema
+ Title: Database Schema Review
+ Tags: database, schema, review
+
+Claude: Here's your prompt:
+
+ ```json
+ {
+ "name": "review_db_schema",
+ "title": "Database Schema Review",
+ "description": "Review database schemas and suggest optimizations for performance and best practices",
+ "arguments": [
+ {"name": "schema", "required": true},
+ {"name": "db_type", "required": false}
+ ],
+ "messages": [...],
+ "tags": ["database", "schema", "review"]
+ }
+ ```
+
+ Should I save this?
+
+You: Yes
+
+Claude: (Saves the prompt using MCP prompts/create)
+```
+
+**Tags**: meta, prompt-management, interactive, creation
+
**Note**: Built-in prompts (including these meta-prompts) cannot be modified or deleted. If you need to customize a built-in, create a new prompt with a different name.
## Creating Custom Prompts