Prompt Engineering

Prompt Engineering SKILL

majiayu000 Updated 567 repo stars

File contents

Prompt Engineering SKILL

RAG Prompt Template

template = """
Use the following context to answer the question.
If you don't know, say "I don't know based on the provided context."

Context:
{context}

Question: {question}

Answer:
"""

Few-Shot Template

template = """
Context: {context}

Examples:
Q: What is X?
A: X is...

Q: {question}
A:
"""

majiayu000/claude-skill-registry-data/tree/main/ai-llm/prompt-engineering-skill commit cc582b97ae

Frequently asked questions

npx skillmds@latest add majiayu000/prompt-engineering-24