Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

prompting-pattern-library提示模式库

Agent Skill

用于辅助提示词、系统指令、Agent 行为约束和工作流模板的整理。它适合让 Agent 规范任务边界、统一输出格式、拆分操作步骤或优化提示词可复用性。使用时需要保留真实业务约束,不要把示例当硬规则;涉及自动执行、外部工具或高风险操作时,应在提示词中明确确认步骤、权限边界和失败处理方式。

总安装

245

周安装

10

GitHub Stars

28

下载量

78
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:prompting-pattern-library(提示模式库)
来源仓库:https://github.com/exploration-labs/nates-substack-skills
仓库路径:skills/prompting-pattern-library
安装命令:
npx skills add https://github.com/exploration-labs/nates-substack-skills --skill prompting-pattern-library
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/exploration-labs/nates-substack-skills --skill prompting-pattern-library

简介

用于查找和检索提示词设计模式及相关资源。prompting-pattern-library 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在 Codex、Claude 等宿主中快速获取结构化提示方案。
  • 使用时需结合实际任务场景,避免直接套用未适配的模式。
  • 建议参考原始仓库文档,确认模式的适用性和维护状态。
  • 涉及生产环境使用时应评估模式对输出一致性的影响。

SKILL.md

Prompting Pattern Library

Version 1.0 | October 2025 | Tested with Claude 3.5/4, GPT-4/4o, Gemini 1.5 Pro


Navigation

📖 Full Documentation: See README.md for complete navigation, use case index, and version notes.

Quick access by need:


Overview

This skill provides a comprehensive library of prompting patterns, anti-patterns, and model-specific guidance for effective LLM interactions. Use this when creating educational content about prompting, analyzing prompt quality, or explaining prompting techniques to technical and non-technical audiences.

What's included:

  • 25+ proven prompting patterns with "why it works" analysis
  • Common failure modes with diagnosis and fixes
  • Model-specific guidance (Claude, GPT-4, Gemini)
  • Advanced orchestration patterns for agent systems
  • Cross-references throughout for deep-dive learning

Quick Reference: Common Prompting Patterns

Structural Patterns

Role Prompting: Assign a specific role or persona to frame the response Chain-of-Thought (CoT): Request step-by-step reasoning before final answer Few-Shot Learning: Provide examples of desired input-output pairs Zero-Shot with Instructions: Detailed task description without examples Tree of Thoughts: Explore multiple reasoning paths before choosing best

Output Control Patterns

Structured Output: Request specific formats (JSON, XML, tables, lists) Delimiters: Use clear separators for inputs, examples, and instructions Length Control: Specify desired output length explicitly Style Constraints: Define tone, formality, audience level

Reasoning Enhancement Patterns

Self-Consistency: Generate multiple solutions and select most common Reflection: Ask model to critique its own output Decomposition: Break complex tasks into smaller sub-tasks Analogical Reasoning: Request analogies or comparisons

Retrieval Patterns

Citation Requirements: Demand sources and evidence Fact-Checking: Request verification of claims Knowledge Boundaries: Ask model to acknowledge uncertainty

See references/prompt-patterns.md for comprehensive pattern catalog with examples.

When to Read References

Always Read First

Creating prompting educational content: Read references/prompt-patterns.md for pattern catalog with "why it works" analysis Debugging problematic prompts: Read references/failure-modes.md for common issues and fixes with cross-referenced solutions Cross-model implementation: Read references/model-quirks.md for model-specific considerations and optimization Building agent systems: Read references/orchestration-patterns.md for multi-step workflows and agentic architectures

Read When Needed

Advanced pattern implementation: Review specific patterns in references for detailed guidance and research basis Teaching prompting: Use examples from references as teaching materials with "why it works" explanations Optimizing existing prompts: Consult failure modes to identify weaknesses, then apply patterns from prompt-patterns.md Agent orchestration: Reference orchestration-patterns.md for planner-executor, multi-agent collaboration, and evaluation loops

Core Principles for Effective Prompting

Specificity Over Generality

Vague: "Write about AI" Specific: "Write a 500-word technical explanation of transformer attention mechanisms for software engineers with no ML background"

Provide Context Explicitly

Poor context: "Fix this code" Good context: "Fix this Python function that should validate email addresses. Current issue: it fails on addresses with plus signs. Python 3.11, standard library only."

Use Examples When Precision Matters

For tasks requiring specific formats or styles, provide 2-3 high-quality examples rather than lengthy descriptions. Examples communicate requirements more precisely than instructions alone.

Structure Complex Prompts

For multi-part tasks, use clear sections:

  1. Context and background
  2. Specific task requirements
  3. Output format specifications
  4. Constraints and limitations
  5. Examples (if applicable)

Iterate Based on Output

Prompting is experimental. Start simple, observe failure modes, refine incrementally. Most effective prompts emerge through iteration, not perfect first attempts.

Model-Specific Considerations

Different models respond differently to identical prompts. Key differences:

Claude (Anthropic): Strong with structured output, detailed reasoning, and nuanced tasks. Responds well to polite, conversational prompts. Excellent at maintaining context over long conversations.

GPT-4 (OpenAI): Versatile across domains, strong creative writing, good instruction-following. Benefits from explicit structure. Can be more prone to confident errors.

Gemini (Google): Strong multimodal capabilities, good at analytical tasks. May require more explicit formatting instructions.

See references/model-quirks.md for detailed model-specific patterns and anti-patterns.

Common Failure Modes

The "Too Polite" Problem

Over-apologetic prompts waste tokens and can reduce output quality. Be direct and clear rather than excessively polite.

Implicit Assumptions

Models cannot read your mind. What seems obvious to you must be stated explicitly. Common implicit assumptions that cause failures:

  • Desired output format
  • Audience level
  • Required depth of detail
  • Constraints (time period, geography, etc.)

Conflicting Instructions

When instructions contradict each other, models exhibit unpredictable behavior. Example conflict: "Be concise but include comprehensive detail."

Ambiguous Success Criteria

"Make it better" is not actionable. Define what "better" means: faster, more accurate, more readable, more maintainable, etc.

See references/failure-modes.md for comprehensive failure patterns and fixes.

Using This Skill for Content Creation

Educational Content

When writing prompting guides or tutorials, use patterns from references as examples. Structure content to move from simple (zero-shot) to complex (chain-of-thought, tree-of-thoughts) patterns.

Prompt Analysis

To analyze prompt effectiveness, compare against patterns in references. Identify which patterns are present or absent, check for common failure modes.

Prompt Improvement

To improve existing prompts:

  1. Identify the task type and check appropriate patterns in references
  2. Check against failure modes in references/failure-modes.md
  3. Apply relevant structural improvements
  4. Test and iterate

Bundled References

references/prompt-patterns.md

Comprehensive catalog of 25+ prompting patterns with:

  • Pattern name and description
  • When to use each pattern
  • Concrete examples with "why it works" analysis
  • Variations and combinations
  • Common pitfalls
  • Cross-references to failure modes and model quirks
  • Research basis where applicable

references/failure-modes.md

Common prompting failures organized by:

  • Failure type (ambiguity, contradiction, assumption, etc.)
  • Symptoms and diagnosis
  • Root cause analysis
  • Fixes with examples
  • Cross-references to relevant patterns
  • Prevention checklist

references/model-quirks.md

Model-specific guidance covering:

  • Claude-specific patterns and anti-patterns
  • GPT-specific patterns and anti-patterns
  • Gemini-specific patterns and anti-patterns
  • Cross-model considerations
  • When model choice matters
  • Model selection decision tree
  • Testing strategies across models

references/orchestration-patterns.md

Advanced patterns for multi-step AI workflows:

  • Meta-prompting patterns (prompt generation, optimization loops)
  • Multi-agent orchestration (planner-executor, specialist collaboration)
  • Evaluation and refinement loops (generate-critique-revise, ensemble evaluation)
  • Tool integration patterns (tool selection, function call orchestration)
  • Memory and state management (stateful conversations, context summarization)
  • Pattern composition for production systems
  • Performance optimization strategies

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

40.98%
按下载量换算32

Claude

28.37%
按下载量换算22

Cursor

18.44%
按下载量换算14

Gemini CLI

9.19%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills