Prompts
Prompts are guided workflows that structure how your AI assistant approaches common tasks. Each enabled framework registers its own prompts.
INFO
Prompt support varies by MCP client. Claude Desktop and Claude Code support prompts natively. Other clients may expose them differently or not at all.
Per-Framework Prompts
Every framework registers three prompts:
| Prompt Pattern | Purpose |
|---|---|
debug_{framework}_issue | Systematic debugging workflow for framework-specific issues |
compare_{framework}_apis | Side-by-side comparison of APIs or patterns |
migrate_{framework}_pattern | Step-by-step migration guide between patterns |
See the framework pages for concrete prompt names, parameters, and examples:
How Prompts Work
Debug Workflow
Given a symptom and optional code snippet, the assistant will:
- Identify the concept involved
- Search the documentation with
{framework}_docs_search - Look up specific APIs using
{framework}_api_lookup - Explore related patterns with
{framework}_get_related - Explain the root cause with documentation references
- Provide a fix and prevention tip
Compare Workflow
Given a comma-separated list of APIs or patterns, the assistant produces a structured comparison covering purpose, reactivity behavior, performance, decision criteria, code examples, and common mistakes.
Migrate Workflow
Given a source and target pattern, the assistant produces a migration guide with: why migrate, concept mapping table, step-by-step before/after code examples, and common gotchas.