agent-management
Create, manage, and orchestrate AI agents using the AI Maestro CLI. Use when the user asks to "create agent", "list agents", "delete agent", "hibernate agent",…
Master advanced prompt engineering techniques to maximize LLM performance, reliability, and controllability.
$ npx -y skills add davila7/claude-code-templates --skill prompt-engineering-patterns --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/prompt-engineering-patternsContext preview
The summary Claude sees to decide when to auto-load this skill.
Master advanced prompt engineering techniques to maximize LLM performance, reliability, and controllability.
name: prompt-engineering-patterns description: "Master advanced prompt engineering techniques to maximize LLM performance, reliability, and controllability." risk: unknown source: community date_added: "2026-02-27"
Master advanced prompt engineering techniques to maximize LLM performance, reliability, and controllability.
from prompt_optimizer import PromptTemplate, FewShotSelector
# Define a structured prompt template
template = PromptTemplate(
system="You are an expert SQL developer. Generate efficient, secure SQL queries.",
instruction="Convert the following natural language query to SQL:\n{query}",
few_shot_examples=True,
output_format="SQL code block with explanatory comments"
)
# Configure few-shot learning
selector = FewShotSelector(
examples_db="sql_examples.jsonl",
selection_strategy="semantic_similarity",
max_examples=3
)
# Generate optimized prompt
prompt = template.render(
query="Find all users who registered in the last 30 days",
examples=selector.select(query="user registration date filter")
)Start with simple prompts, add complexity only when needed:
1. **Level 1**: Direct instruction
2. **Level 2**: Add constraints
3. **Level 3**: Add reasoning
4. **Level 4**: Add examples
[System Context] → [Task Instruction] → [Examples] → [Input Data] → [Output Format]
Build prompts that gracefully handle failures:
1. **Be Specific**: Vague prompts produce inconsistent results 2. **Show, Don't Tell**: Examples are more effective than descriptions 3. **Test Extensively**: Evaluate on diverse, representative inputs 4. **Iterate Rapidly**: Small changes can have large impacts 5. **Monitor Performance**: Track metrics in production 6. **Version Control**: Treat prompts as code with proper versioning 7. **Document Intent**: Explain why prompts are structured as they are
# Combine retrieved context with prompt engineering
prompt = f"""Given the following context:
{retrieved_context}
{few_shot_examples}
Question: {user_question}
Provide a detailed answer based solely on the context above. If the context doesn't contain enough information, explicitly state what's missing."""# Add self-verification step
prompt = f"""{main_task_prompt}
After generating your response, verify it meets these criteria:
1. Answers the question directly
2. Uses only information from provided context
3. Cites specific sources
4. Acknowledges any uncertainty
If verification fails, revise your response."""-
Ready-to-use configurations for Anthropic's Claude Code. A comprehensive collection of AI agents, custom commands, settings, hooks, external integrations (MCPs), and project templates to enhance your development workflow.
Repo: davila7/claude-code-templates
Create, manage, and orchestrate AI agents using the AI Maestro CLI. Use when the user asks to "create agent", "list agents", "delete agent", "hibernate agent",…
Send and receive cryptographically signed messages between AI agents using the Agent Messaging Protocol (AMP). Use when the user asks to "send a message to an…
Search auto-generated codebase documentation for function signatures, API docs, class definitions, and code comments. Use when the user asks to "search docs",…
Query the code graph database to understand component relationships, dependencies, and change impact. Use when the user asks to "find callers", "check…
Search conversation history and semantic memory to recall previous discussions, decisions, and context. Use when the user asks to "search memory", "what did we…