PromptWizz
    OptimizeLibraryPricingBlogGuides
    Frameworks7 min read

    Prompt Engineering Cheat Sheet 2026 (All Frameworks)

    Quick-reference cheat sheet for RISE, RACE, Chain-of-Thought, Tree-of-Thought & ReAct. Copy-paste templates and decision flowchart included.

    Marcus JohnsonFebruary 4, 2026

    Key Takeaways

    • This cheat sheet covers seven frameworks: RISE, RACE, Chain-of-Thought, Tree-of-Thought, ReAct, Self-Consistency, and Least-to-Most.
    • RISE and RACE are low-complexity frameworks; RISE is for structured content, while RACE is for context-heavy tasks.
    • Chain-of-Thought is the simple step-by-step reasoning option; Tree-of-Thought explores multiple approaches before choosing one.
    • ReAct is for tasks that require actions or information gathering, using a Reason -> Act -> Observe loop.
    • Higher-control frameworks cost more tokens: CoT is listed at about 1.5x, ToT at 3-4x, and Self-Consistency at about 3x relative cost.

    Bookmark this page. Here's every major prompting framework in one placeβ€”what they do, when to use them, and copy-paste templates for each.

    Quick Reference Table

    | Framework | Best For | Complexity | Key Phrase | |-----------|----------|------------|------------| | RISE | Structured content | Low | Role β†’ Instructions β†’ Steps β†’ Expectations | | RACE | Context-heavy tasks | Low | Role β†’ Action β†’ Context β†’ Expectations | | Chain-of-Thought | Reasoning problems | Low | "Let's think step by step" | | Tree-of-Thought | Strategic decisions | Medium | "Explore 3 approaches" | | ReAct | Tasks requiring actions | High | Reason β†’ Act β†’ Observe loop | | Self-Consistency | High-stakes accuracy | Medium | Multiple attempts β†’ consensus | | Least-to-Most | Complex multi-step problems | Medium | Decompose β†’ solve parts β†’ combine |


    RISE Framework

    Purpose: Structured output with clear role and formatting

    Components:

    • Role: Who the AI should be
    • Instructions: The specific task
    • Steps: How to approach it
    • Expectations: Output requirements

    Template:

    Role: You are a [specific expert/professional].
    
    Instructions: [Clear task description].
    
    Steps:
    1. [First action]
    2. [Second action]
    3. [Third action]
    
    Expectations: [Output format, length, style requirements].
    

    Best for: Content creation, expert analysis, formatted outputs


    RACE Framework

    Purpose: Context-rich tasks requiring situational awareness

    Components:

    • Role: Who the AI should be
    • Action: What to do
    • Context: Background and constraints
    • Expectations: Desired outcome

    Template:

    Role: You are a [specific role].
    
    Action: [What you need done].
    
    Context:
    - [Key background point 1]
    - [Key background point 2]
    - [Constraints or special considerations]
    
    Expectations: [What success looks like].
    

    Best for: Business communications, personalized content, nuanced situations


    Chain-of-Thought (CoT)

    Purpose: Improve reasoning accuracy by showing work

    Basic Template:

    [Problem statement]
    
    Let's solve this step by step.
    

    Detailed Template:

    [Problem statement]
    
    Work through this systematically:
    1. First, identify what we know
    2. Then, determine what we need to find
    3. Apply the relevant method
    4. Verify the answer makes sense
    
    Show your reasoning at each step.
    

    Best for: Math, logic, debugging, analysis, any task where accuracy matters


    Tree-of-Thought (ToT)

    Purpose: Explore multiple solutions before committing

    Template:

    [Problem or decision]
    
    Generate 3 different approaches to this:
    
    For each approach:
    1. Describe the strategy
    2. List pros and cons
    3. Identify key risks
    4. Rate confidence (1-10)
    
    Then recommend the best approach or propose a hybrid solution.
    

    Best for: Strategic decisions, creative problems, complex trade-offs


    ReAct (Reason + Act)

    Purpose: Tasks requiring external actions or information gathering

    Template:

    Task: [Description]
    
    Available tools:
    - [tool1](params): [Description]
    - [tool2](params): [Description]
    
    Use the ReAct framework:
    1. Thought: What do I need to do/know?
    2. Action: [tool_name](parameters)
    3. Observation: [wait for result]
    4. Repeat until complete
    
    Final Answer: [Conclusion]
    

    Best for: Research, fact-checking, multi-step workflows, AI agents


    Self-Consistency

    Purpose: Increase accuracy through multiple attempts

    Template:

    [Problem statement]
    
    Solve this problem 3 times using different approaches. Then compare your answers and provide the most likely correct answer with your confidence level.
    

    Alternative Template:

    [Question]
    
    Approach 1: [Solve using method A]
    Approach 2: [Solve using method B]
    Approach 3: [Solve using method C]
    
    Consensus: Compare results and determine the most reliable answer.
    

    Best for: High-stakes decisions, complex calculations, when accuracy is critical


    Least-to-Most

    Purpose: Break complex problems into manageable subproblems

    Template:

    [Complex problem]
    
    First, break this into smaller subproblems:
    1. [Subproblem 1]
    2. [Subproblem 2]
    3. [Subproblem 3]
    
    Now solve each subproblem in order, using previous solutions to inform the next.
    
    Finally, combine the solutions to solve the original problem.
    

    Best for: Multi-step problems, complex projects, learning progressions


    Framework Decision Tree

    START
      β”‚
      β”œβ”€ Need structured content/output?
      β”‚     β”œβ”€ Yes, with heavy context β†’ RACE
      β”‚     └─ Yes, with clear steps β†’ RISE
      β”‚
      β”œβ”€ Need to reason through a problem?
      β”‚     β”œβ”€ Single path solution β†’ Chain-of-Thought
      β”‚     β”œβ”€ Multiple options to explore β†’ Tree-of-Thought
      β”‚     └─ Accuracy is critical β†’ Self-Consistency
      β”‚
      β”œβ”€ Need to take actions/gather info?
      β”‚     └─ Yes β†’ ReAct
      β”‚
      └─ Problem is very complex?
            └─ Yes β†’ Least-to-Most
    

    Quick Combinations

    Strategy + Execution

    Phase 1 (ToT): "Generate 3 approaches to [goal]. Evaluate and select best."
    Phase 2 (RISE): "Now implement the chosen approach with this structure..."
    

    Research + Analysis

    Phase 1 (ReAct): Gather data using available tools
    Phase 2 (CoT): "Analyze this data step by step..."
    

    Context + Reasoning

    RACE setup + "Now work through this step by step" (CoT)
    

    Token Cost Comparison

    | Framework | Relative Cost | When Worth It | |-----------|--------------|---------------| | Basic prompt | 1x | Simple tasks | | RISE/RACE | 1.2x | Most content tasks | | Chain-of-Thought | 1.5x | Accuracy-sensitive tasks | | Tree-of-Thought | 3-4x | Important decisions | | Self-Consistency | 3x | High-stakes accuracy | | ReAct | Variable | Action-based tasks |


    Common Mistakes

    | Framework | Mistake | Fix | |-----------|---------|-----| | RISE | Vague role | Be specific: "senior fintech product manager" not "business expert" | | RACE | Thin context | Add 3-5 bullet points minimum | | CoT | Using for simple tasks | Skip CoT for basic requests | | ToT | Only 2 branches | Always explore 3+ options | | ReAct | Undefined tools | Specify exact tool names and parameters |


    Print-Friendly Summary

    RISE = Role + Instructions + Steps + Expectations β†’ Structured content

    RACE = Role + Action + Context + Expectations β†’ Context-rich tasks

    CoT = "Step by step" β†’ Reasoning problems

    ToT = "3 approaches, evaluate, select" β†’ Decisions

    ReAct = Think β†’ Act β†’ Observe β†’ Repeat β†’ Tasks requiring actions

    Self-Consistency = Multiple attempts β†’ consensus β†’ High accuracy needs

    Least-to-Most = Break down β†’ Solve parts β†’ Combine β†’ Complex problems


    Want these frameworks applied automatically? PromptWizz selects and applies the optimal framework for any prompt.

    Frequently Asked Questions

    What frameworks are included in the prompt engineering cheat sheet?+
    The cheat sheet covers RISE, RACE, Chain-of-Thought, Tree-of-Thought, ReAct, Self-Consistency, and Least-to-Most. Each entry includes what the framework is best for, its complexity, a copy-paste template, and a quick summary phrase.
    How do I choose a prompt engineering framework quickly?+
    Use the decision tree from the article: structured output with clear steps points to RISE; structured output with heavy context points to RACE; single-path reasoning points to Chain-of-Thought; multiple options point to Tree-of-Thought; critical accuracy points to Self-Consistency; action or information-gathering tasks point to ReAct; very complex problems point to Least-to-Most.
    Which prompt engineering frameworks are cheapest to use?+
    The article lists a basic prompt at 1x relative cost, RISE/RACE at about 1.2x, Chain-of-Thought at about 1.5x, Tree-of-Thought at 3-4x, Self-Consistency at about 3x, and ReAct as variable because it depends on how many actions or tool calls the task requires.
    Can prompt engineering frameworks be combined?+
    Yes. The cheat sheet recommends combinations such as Tree-of-Thought for strategy followed by RISE for execution, ReAct for research followed by Chain-of-Thought for analysis, and RACE setup followed by step-by-step reasoning when a task needs both context and reasoning.
    What are the most common framework mistakes?+
    The article flags five common mistakes: using vague roles in RISE, giving thin context in RACE, using Chain-of-Thought for simple tasks, exploring too few branches in Tree-of-Thought, and failing to define exact tool names and parameters for ReAct.
    cheat sheetprompt engineeringframeworksreferenceRISERACEChain-of-Thought

    Ready to Apply These Techniques?

    Try PromptWizz and see your prompts transform instantly with the frameworks discussed above.

    Start Optimizing Free

    Related Articles

    Frameworks

    7 Prompt Engineering Frameworks Compared (2026)

    RISE, RACE, Chain-of-Thought, Tree-of-Thought, ReAct, Self-Consistency & Least-to-Most β€” each explained with examples. Find the best framework for your task in 5 minutes.

    Frameworks

    RISE vs RACE Framework: Which Gets Better Results?

    RISE vs RACE compared side-by-side with real examples. See which prompt engineering framework works best for your specific task type.

    Frameworks

    ReAct vs Chain-of-Thought Prompting: Which Should You Use?

    Side-by-side comparison of ReAct and CoT prompting with real examples. Learn when to use reasoning-only vs tool-assisted AI prompts for better results.

    Previous

    Prompt Engineering Statistics & Research (2026 Data)

    Next

    Best Prompt Framework for Coding: 2026 Comparison

    PromptWizz
    PricingBlogPrivacyTerms
    Β© 2026 PromptWizz. All rights reserved.