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

prompt-optimizer提示优化器

Agent Skill

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

总安装

3,105

周安装

132

GitHub Stars

652

下载量

1,088
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/getsentry/skills --skill prompt-optimizer

简介

prompt-optimizer 用于辅助提示词、系统指令和工作流模板的整理与优化。

  • 适合规范 Agent 的任务边界、统一输出格式或拆分操作步骤时使用。
  • 可提升提示词的可复用性,但需保留真实业务约束,避免将示例当作硬规则。
  • 涉及自动执行或外部工具调用时,应在提示词中明确确认步骤和权限边界。
  • 使用时需注意失败处理方式,确保高风险操作有明确的回退机制。

SKILL.md

Prompt Optimizer

Optimize prompts for agents, system/developer instructions, and reusable prompt templates. Treat prompt work as an eval-driven workflow, not wordsmithing.

Load only the references you need:

TaskRead
Create a new agent promptreferences/core-patterns.md, references/model-family-notes.md, references/transformed-examples.md
Refine an existing promptreferences/meta-optimization-loop.md, references/core-patterns.md, references/model-family-notes.md, references/transformed-examples.md
Port a prompt between model familiesreferences/model-family-notes.md, references/core-patterns.md
Diagnose repeated prompt failuresreferences/meta-optimization-loop.md, references/core-patterns.md
Explain the provenance behind this workflowSOURCES.md

Step 1: Define the prompt contract

  1. Determine whether the task is:
  • creating a new prompt
  • refining an existing prompt
  • porting a prompt between model families
  • debugging prompt failures
  1. Capture the contract before rewriting anything:
  • target model family and snapshot if known
  • prompt surface: system, developer, user, tool descriptions, examples, schemas
  • task objective and non-goals
  • inputs, context, and tools available to the agent
  • required output shape
  • success criteria
  • known failures
  • hard constraints: latency, verbosity, safety, budget, tool use, style
  1. If the user does not provide success criteria or examples, build a small eval set before editing the prompt.
  2. If the real bottleneck is model choice, missing retrieval, weak tool schemas, or a missing eval harness, say so. Do not keep rewriting prompt text when the failure is elsewhere.

Step 2: Choose the model strategy

Read references/model-family-notes.md.

  1. If the target family is known, optimize specifically for that family.
  2. If the target family is unknown, write:
  • a portable base prompt
  • short adapter notes for the likely target families
  1. Do not pretend one prompt is universal when the behavior clearly depends on model family.
  2. Pin model snapshots when the surrounding system supports it.

Step 3: Shape the prompt deliberately

Read references/core-patterns.md.

  1. Separate durable behavior from task-local context:
  • stable policy and behavioral defaults belong in system or developer
  • variable inputs, retrieved context, and task instances belong in templated user-facing sections
  • when the system prompt is assembled at runtime from a platform layer and a deployer-authored persona layer (e.g., SOUL.md, CLAUDE.md, AGENTS.md), see "Layered prompts with multiple owners" in references/core-patterns.md — platform behavior rules must not depend on what the deployer layer contains
  1. Keep one authoritative instruction per behavior:
  • if a rule appears in more than one layer, choose one owner for it
  • stable cross-task rules belong in system or developer
  • examples should teach format, edge-case handling, or tool behavior, not restate the whole policy
  • user payloads should carry task-local facts, not durable policy
  1. Use markers only when they reduce ambiguity:
  • use markdown headings or XML-style tags to separate instructions, context, examples, tool rules, and output contracts
  • keep tag names descriptive and consistent
  • do not wrap every sentence in markup
  1. Make the prompt easy to execute:
  • put one high-value behavior per bullet or line when the task is fragile
  • prefer positive instructions over "do not do X" lists
  • place tool-use rules, escalation boundaries, and stop conditions in explicit sections
  • keep persona light unless it changes behavior in a useful way
  • use the shortest wording that preserves the intended behavioral constraint
  • cut motivational filler, repeated reminders, and examples that do not improve evals
  • for long-context prompts, place evidence before the final query and keep the actual ask in a clear terminal section
  • keep instructions, evidence, and schemas in distinct blocks so the model does not have to infer what is policy versus data
  1. Treat examples as first-class prompt assets:
  • start simple before adding examples
  • add examples only when they improve format control, edge-case handling, or tool behavior
  • keep examples structurally consistent
  • prefer positive demonstrations over anti-pattern-only demonstrations

Step 4: Run the meta optimization loop

Read references/meta-optimization-loop.md.

  1. Start with the current prompt or a simple first draft.
  2. Score it on a representative slice:
  • at least one happy-path case
  • at least one failure replay
  • at least one ambiguous case
  • at least one edge case
  • at least one "should refuse", "should ask", or "should defer" case when relevant
  1. Turn failures into explicit criticisms:
  • identify what the prompt under-specified, over-specified, or contradicted
  • write critiques as actionable edits, not vague complaints
  1. Generate a small beam of candidate prompts:
  • one minimal-diff repair
  • one structure-first rewrite
  • one example- or tool-rule-centered variant when that is the likely bottleneck
  • one provider-specific adapter when cross-model behavior is the issue
  1. Compare candidates on the same eval slice.
  2. Keep the best candidate and log what changed and why.
  3. Preserve the evidence for each round:
  • prompt version
  • eval case
  • model output
  • failure reason
  • relevant scores
  1. Test the winner on a holdout slice before finalizing.
  2. Stop when scores plateau, edits oscillate, cost rises without quality gain, or the remaining issue is outside prompt control.

Keep edits minimal and causal. Record what you removed as well as what you added. If you change everything at once, you learn nothing about what actually helped.

Step 5: Produce a reusable deliverable

Return:

  1. Target
  2. Success Criteria
  3. Optimized Prompt
  4. Adapter Notes
  5. Eval Set
  6. Optimization Log
  7. Residual Risks

If the user supplied an existing prompt, include a concise diff-style explanation of the biggest behavioral changes.

Step 6: Guard against common failure modes

Read references/transformed-examples.md when the task is ambiguous or the first draft is weak.

Do not:

  • optimize wording before defining the eval target
  • mix instructions, examples, and raw context without boundaries
  • keep the same rule in multiple layers unless there is a proven reason
  • let stable rules drift into the user payload just because the current prompt template makes it convenient
  • ask reasoning models to reveal chain-of-thought just because the task is hard
  • keep contradictory legacy instructions in the same prompt
  • overfit to one or two examples
  • keep examples that do not improve measured behavior
  • solve tool-use failures only in the system prompt when the real problem is the tool description or schema
  • add markers everywhere and mistake structure for clarity
  • use a bloated persona as a substitute for concrete behavior rules

Output standard

The final prompt package should be reusable by another engineer without rediscovering:

  • what the prompt is for
  • which model family it targets
  • how success is measured
  • what changed during optimization
  • which risks remain open

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.53%
按下载量换算376

Claude

31.1%
按下载量换算338

Cursor

17.31%
按下载量换算188

Gemini CLI

9.04%
按下载量换算98

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/getsentry/skills --skill prompt-optimizer 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills