Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

claude-promptingClaude prompting 搜索

Agent Skill

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

总安装

416

周安装

17

GitHub Stars

4

下载量

133
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/duyet/claude-plugins --skill claude-prompting

简介

用于优化针对 Claude 模型的提示词设计和系统指令构建。

  • 支持长上下文处理、结构化标签和扩展推理模式。
  • 通过 npx 安装后可用于提示词模板化和工作流标准化。
  • 建议保留真实业务约束,避免将示例提示词当作硬性规则。
  • claude-prompting 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Claude Prompt Engineering

Claude is Anthropic's AI assistant designed to be helpful, harmless, and honest. It excels at long-context tasks, follows complex instructions precisely, and works best with well-structured prompts using XML-style tags.

When to Invoke This Skill

Use this skill when:

  • Crafting prompts specifically for Claude/Anthropic models (default: Claude Sonnet 4.5)
  • Working with long documents or large context (up to 1M tokens with Sonnet 4.5 beta)
  • Using structured prompts with XML-style tags
  • Implementing extended thinking for complex reasoning
  • Requiring precise instruction following
  • Building agentic workflows with parallel tool use

Claude's Identity & Characteristics

AttributeDescription
PersonalityHelpful, harmless, honest
Constitutional AIBuilt-in safety and ethical guidelines
Context WindowUp to 1M tokens (Sonnet 4.5 beta), 200K standard
StrengthsLong-context analysis, instruction following, document understanding, agentic tasks
Prompt StyleStructured, clear, XML-style formatting
Extended ThinkingOptional reasoning trace feature with tool use

Universal Prompting Techniques (Claude-Adapted)

1. Zero-Shot Prompting

Claude responds well to clear, direct zero-shot prompts.

Good Example:

Extract the key dates and events from the following text:

<text>
[paste text]
</text>

Output format: JSON with keys "date", "event", "description"

Less Effective:

Can you tell me what dates are in this text?

2. Few-Shot Prompting (Multishot)

Use well-formatted examples with XML structure.

<examples>
<example>
<input>
The conference is scheduled for March 15, 2025 in San Francisco.
</input>
<output>
{
  "date": "2025-03-15",
  "event": "conference",
  "location": "San Francisco"
}
</output>
</example>

<example>
<input>
Our next board meeting is on June 22nd.
</input>
<output>
{
  "date": "2025-06-22",
  "event": "board meeting"
}
</output>
</examples>

<input>
The product launches on September 1st in New York.
</input>

<output>

3. Chain-of-Thought Prompting

Claude has an Extended Thinking feature that shows reasoning (enabled via API, output in response):

I need to decide between these two job offers. Let me think through this step by step.

<job_offer_a>
[details]
</job_offer_a>

<job_offer_b>
[details]
</job_offer_b>

Please analyze both offers, show your reasoning, and provide a recommendation.

API enables extended thinking; response includes:

<thinking>
First, let me analyze the compensation...
Then consider the growth potential...
The work-life balance factors are...
The company stability differs by...
</thinking>

<answer>
[conclusion]
</answer>

4. Zero-Shot CoT

Simply add "Let's think step by step" or similar:

What's the most efficient route to visit all these cities?

Let's think step by step.

5. Prompt Chaining with XML Tags

Break complex tasks using XML delimiters:

Chain Step 1:

<task>
Extract relevant quotes from this document related to [topic].
</task>

<document>
[paste document]
</document>

<output_format>
<quotes>
<quote>[relevant quote 1]</quote>
<quote>[relevant quote 2]</quote>
</quotes>
</output_format>

Chain Step 2:

<task>
Summarize the extracted quotes and synthesize key insights.
</task>

<quotes>
[from previous response]
</quotes>

<output_format>
<summary>
[executive summary]
</summary>

<key_insights>
<insight>[insight 1]</insight>
<insight>[insight 2]</insight>
</key_insights>
</output_format>

6. ReAct Prompting

Use structured thought-action-observation cycles:

<question>
[research question]
</question>

<thought_1>
[what needs to be done first]
</thought_1>

<action_1>
[tool use or information gathering]
</action_1>

<observation_1>
[result from action]
</observation_1>

<thought_2>
[next step based on observation]
</thought_2>

<final_answer>
[conclusion]
</final_answer>

7. Tree of Thoughts

Use multiple reasoning paths with XML structure:

<problem>
[complex problem]
</problem>

<thought_paths>
<path_1>
<assumption>[approach 1]</assumption>
<reasoning>[step-by-step]</reasoning>
<conclusion>[result]</conclusion>
</path_1>

<path_2>
<assumption>[approach 2]</assumption>
<reasoning>[step-by-step]</reasoning>
<conclusion>[result]</conclusion>
</path_2>

<path_3>
<assumption>[approach 3]</assumption>
<reasoning>[step-by-step]</reasoning>
<conclusion>[result]</conclusion>
</path_3>
</thought_paths>

<synthesis>
[best path and why]
</synthesis>

Claude-Specific Best Practices

1. Use XML-Style Tags for Structure

Claude's official courses extensively use XML tags:

<context>
[background information]
</context>

<task>
[what needs to be done]
</task>

<examples>
[example inputs and outputs]
</examples>

<input>
[the actual input to process]
</input>

<output_format>
[expected format]
</output_format>

2. Structure Long Prompts Hierarchically

From Anthropic's official courses:

[TASK_CONTEXT]
Setting the stage and overall context

[TONE_CONTEXT]
How Claude should approach the task

[INPUT_DATA]
The actual data to work with

[EXAMPLES]
Few-shot examples

[TASK_DESCRIPTION]
Specific task details

[IMMEDIATE_TASK]
The immediate action to take

[OUTPUT_FORMATTING]
Expected output structure

3. Leverage Extended Thinking

For complex reasoning, enable Claude's extended thinking via the API:

API Syntax (Python SDK):

response = client.messages.create(
    model="claude-sonnet-4-5-20250929",
    max_tokens=4096,
    thinking={
        "type": "enabled",
        "budget_tokens": 8192
    },
    messages=[{
        "role": "user",
        "content": "Analyze this complex problem..."
    }]
)

Prompt-Side (XML structure for expected output):

<task>
[complex reasoning task]
</task>

<thinking>
[Claude will show its reasoning here]
</thinking>

<answer>
[final answer]
</answer>

Key Points:

  • budget_tokens sets max tokens for reasoning (must be < max_tokens)
  • Claude 4.5 returns summarized thinking by default
  • First few lines are more verbose (useful for prompt engineering)
  • You're billed for full thinking tokens, not summary tokens

4. Use System Prompts Effectively

System prompts set Claude's behavior:

System: You are a technical writer specializing in API documentation. Your responses are always:
- Clear and concise
- Technically accurate
- Formatted with Markdown
- Focused on developer needs

User: [your actual query]

5. Prefill Claude's Response

Guide the format by starting Claude's response:

<task>
Analyze this document and extract key findings.
</task>

<document>
[paste document]
</document>

<response>
<summary>
[Claude continues from here]

6. Cache Control for Long Prompts

Optimize for repeated prompts:

<cached_content cache_control="{\"type\":\"ephemeral\"}">
[large context that doesn't change]
</cached_content>

<task>
[specific task that varies]
</task>

7. Claude 4.5 Agent Features

Claude 4.5 introduces powerful agent capabilities:

Parallel Tool Use - Claude can use multiple tools simultaneously:

<task>
Analyze this data and create a visualization.
</task>

<tools>
- Web search for market data
- Code execution for analysis
- File write for chart output
</tools>

Claude will execute these in parallel when possible.

Memory Files - Claude can maintain knowledge across sessions:

<task>
When working on ongoing projects, create a memory file to track:
- Key decisions and rationale
- Project context and constraints
- Preferences and patterns
</task>

Claude will automatically update and reference memory files when given local file access.

Extended Thinking with Tools - Reasoning can pause to use tools:

# API: Enable extended thinking with tool use
response = client.messages.create(
    model="claude-sonnet-4-5-20250929",
    max_tokens=4096,
    thinking={
        "type": "enabled",
        "budget_tokens": 8192
    },
    tools=[web_search_tool],
    messages=[{
        "role": "user",
        "content": "Research [topic] and provide a comprehensive analysis."
    }]
)

# Claude can now use web search DURING extended thinking,
# alternating between reasoning and information gathering.

Anti-Patterns to Avoid

Anti-PatternWhy It FailsBetter Approach
Ambiguous instructionsClaude follows literallyBe explicit about requirements
Missing output formatUnpredictable formattingAlways specify format
No structure in long promptsClaude may lose trackUse XML tags and sections
Ignoring context window limitsTruncation issuesBe mindful of 200K/1M limits
Over-constraining creativityReduces Claude's helpfulnessBalance structure with flexibility

Quick Reference Templates

Document Analysis

<task>
[specific analysis task]
</task>

<document>
[paste document]
</document>

<output_format>
[expected structure]
</output_format>

Code Generation with Examples

<task>
Write a function that [description]
</task>

<requirements>
[specific requirements]
</requirements>

<examples>
<example>
<input>[input example]</input>
<output>[expected output]</output>
</example>
</examples>

<output_format>
[code in specified language]
</output_format>

Data Extraction

<task>
Extract [specific fields] from the following text
</task>

<input_text>
[paste text]
</input_text>

<output_format>
JSON with keys: [list keys]
</output_format>

Extended Thinking

# API: Enable extended thinking
response = client.messages.create(
    model="claude-sonnet-4-5-20250929",
    max_tokens=4096,
    thinking={
        "type": "enabled",
        "budget_tokens": 8192
    },
    messages=[{
        "role": "user",
        "content": """
<task>
[complex reasoning task]
</task>

Please show your reasoning step by step, then provide the final answer.
"""
    }]
)

# Response will include <thinking> block followed by <answer>

Model Capabilities Reference

FeatureClaude Sonnet 4.5Claude Haiku 4.5Claude Opus 4.5Notes
Context Window200K / 1M (beta)200K200KSonnet 4.5: 1M with beta header
Extended Thinking✅ Yes✅ Yes✅ YesWith tool use support
Max Output64K tokens64K tokens64K tokensUnified across 4.5
Vision✅ Yes✅ Yes✅ YesImage analysis
Parallel Tool Use✅ Yes✅ Yes✅ YesClaude 4.5 feature
Memory Files✅ Yes✅ Yes✅ BestLocal file knowledge
Code✅ Excellent✅ Good✅ BestOpus 4.5: SOTA coding
SpeedFastFastestModerateDefault: Sonnet 4.5
Recommendation: Start with Claude Sonnet 4.5 - best balance of intelligence, speed, and cost for most use cases. Use Opus 4.5 for complex coding, Haiku 4.5 for speed-critical tasks.

Migration Notes (Claude 3 → 4.5)

If you're migrating from Claude 3.x to Claude 4.5:

ChangeImpactAction
Default modelSonnet 3.5 → Sonnet 4.5Update model IDs in code
Context window200K → 1M (beta) availableRequires beta header for 1M
Parallel toolsNew capabilityUpdate prompts to leverage parallel execution
Memory filesNew capabilityGrant file access for persistent knowledge
Extended thinking + toolsNew capabilityCan now use tools during reasoning
Max output8K → 64K tokensAdjust output expectations

API Migration:

# Old (Claude 3.5)
model="claude-sonnet-3-5-20240620"

# New (Claude 4.5)
model="claude-sonnet-4-5-20250929"  # or use alias "claude-sonnet-4-5"

Most prompting techniques remain unchanged—XML tags, system prompts, and structured outputs work identically.

Prompt Element Checklist

When creating Claude prompts, consider including:

  • Task Context: Overall purpose and setting
  • Tone Context: How Claude should approach it
  • Input Data: The actual content to process
  • Examples: Few-shot demonstrations (if needed)
  • Task Description: Specific instructions
  • Immediate Task: What to do right now
  • Output Format: Expected structure
  • Prefill: Start of Claude's response (optional)

See Also

  • references/basics.md - Foundational Claude prompting concepts
  • references/techniques.md - Detailed technique explanations
  • references/xml-formatting.md - XML tag patterns and usage
  • references/patterns.md - Reusable Claude prompt patterns
  • references/examples.md - Concrete examples from Anthropic courses
  • grok-prompting skill - For Grok/xAI-specific guidance
  • gemini-prompting skill - For Google Gemini-specific guidance

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.6%
按下载量换算47

Claude

29.53%
按下载量换算39

Cursor

18.68%
按下载量换算25

Gemini CLI

8.52%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills