Skills Plugins MCP Prompt Model 博客 我的中心
内容创作 #design #ai

prompt-engineering-patterns

This skill should be used when the user asks to "optimize a prompt", "improve prompt performance", "design a prompt template", "write better prompts", "debug prompt issues", "use chain-of-thought", "structured prompting", "few-shot prompting", or wants to apply advanced prompt engineering patterns for production LLM applications.

DeepseekModel 官方收录技能 质量 优秀 · 90 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=wshobson-agents-plugins-llm-application-dev-skills-prompt-engineering-patterns-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name prompt-engineering-patterns description This skill should be used when the user asks to "optimize a prompt", "improve prompt performance", "design a prompt template", "write better prompts", "debug prompt issues", "use chain-of-thought", "structured prompting", "few-shot prompting", or wants to apply advanced prompt engineering patterns for production LLM applications. Prompt Engineering Patterns Master advanced prompt engineering techniques to maximize LLM performance, reliability, and controllability. When to Use This Skill Designing complex prompts for production LLM applications Optimizing prompt performance and consistency Implementing structured reasoning patterns (chain-of-thought, tree-of-thought) Building few-shot learning systems with dynamic example selection Creating reusable prompt templates with variable interpolation Debugging and refining prompts that produce inconsistent outputs Implementing system prompts for specialized AI assistants Using structured outputs (JSON mode) for reliable parsing Core Capabilities 1. Few-Shot Learning Example selection strategies (semantic similarity, diversity sampling) Balancing example count with context window constraints Constructing effective demonstrations with input-output pairs Dynamic example retrieval from knowledge bases Handling edge cases through strategic example selection 2. Chain-of-Thought Prompting Step-by-step reasoning elicitation Zero-shot CoT with "Let's think step by step" Few-shot CoT with reasoning traces Self-consistency techniques (sampling multiple reasoning paths) Verification and validation steps 3. Structured Outputs JSON mode for reliable parsing Pydantic schema enforcement Type-safe response handling Error handling for malformed outputs 4. Prompt Optimization Iterative refinement workflows A/B testing prompt variations Measuring prompt performance metrics (accuracy, consistency, latency) Reducing token usage while maintaining quality Handling edge cases and failure modes 5. Template Systems Variable interpolation and formatting Conditional prompt sections Multi-turn conversation templates Role-based prompt composition Modular prompt components 6. System Prompt Design Setting model behavior and constraints Defining output formats and structure Establishing role and expertise Safety guidelines and content policies Context setting and background information Quick Start from langchain_anthropic import ChatAnthropic from langchain_core.prompts import ChatPromptTemplate from pydantic import BaseModel, Field # Define structured output schema class SQLQuery ( BaseModel ): query: str = Field(description= "The SQL query" ) explanation: str = Field(description= "Brief explanation of what the query does" ) tables_used: list [ str ] = Field(description= "List of tables referenced" ) # Initialize model with structured output llm = ChatAnthropic(model= "claude-sonnet-5" ) structured_llm = llm.with_structured_output(SQLQuery) # Create prompt template prompt = ChatPromptTemplate.from_messages([ ( "system" , """You are an expert SQL developer. Generate efficient, secure SQL queries. Always use parameterized queries to prevent SQL injection. Explain your reasoning briefly.""" ), ( "user" , "Convert this to SQL: {query}" ) ]) # Create chain chain = prompt | structured_llm # Use result = await chain.ainvoke({ "query" : "Find all users who registered in the last 30 days" }) print (result.query) print (result.explanation) Detailed patterns and worked examples Detailed pattern documentation lives in references/details.md . Read that file when the navigation tier above is insufficient. Best Practices Be Specific : Vague prompts produce inconsistent results Show, Don't Tell : Examples are more effective than descriptions Use Structured Outputs : Enforce schemas with Pydantic for reliability Test Extensively : Evaluate on diverse, representative inputs Iterate Rapidly : Small changes can have large impacts Monitor Performance : Track metrics in production Version Control : Treat prompts as code with proper versioning Document Intent : Explain why prompts are structured as they are Common Pitfalls Over-engineering : Starting with complex prompts before trying simple ones Example pollution : Using examples that don't match the target task Context overflow : Exceeding token limits with excessive examples Ambiguous instructions : Leaving room for multiple interpretations Ignoring edge cases : Not testing on unusual or boundary inputs No error handling : Assuming outputs will always be well-formed Hardcoded values : Not parameterizing prompts for reuse Success Metrics Track these KPIs for your prompts: Accuracy : Correctness of outputs Consistency : Reproducibility across similar inputs Latency : Response time (P50, P95, P99) Token Usage : Average tokens per request Success Rate : Percentage of valid, parseable outputs User Satisfaction : Ratings and feedback
Agent 识别该技能的关键词,点击任意一个即可复制。

该技能未提供触发词。

下载的 .skill 包内含以下字段。
字段 说明
format格式标识(skill/v1)
skill_id技能唯一 ID
name技能名称
version版本号
description技能描述
category所属分类(数组)
trigger_words触发词列表
tags标签列表
source来源标识
source_url来源链接(本页地址)
exported_at导出时间(每次下载生成)
system_prompt系统提示词正文
model_config模型参数:provider / model / temperature / max_tokens / top_p
examples示例
install_guide各平台导入说明(Coze / Dify / Claude / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。