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

optimize-skills优化技能

Agent Skill

optimize-skills 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1

周安装

12

GitHub Stars

2

下载量

97
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ahgraber/skills --skill optimize-skills

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配和来源线索筛选等研究检索场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • optimize-skills 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Optimizing Skills

Use this skill to create, review, or improve SKILL.md-based skills so they trigger correctly, stay concise, and execute reliably.

Invocation Notice

  • Inform the user when this skill is being invoked by name: optimize-skills.

When to Use

  • Creating a new reusable skill from repeated work patterns.
  • Updating an existing skill that under-triggers, over-triggers, or misfires.
  • Tightening a skill that is too long, redundant, or hard to execute.
  • Converting narrative guidance into concise, imperative instructions.
  • Rebalancing where content should live across SKILL.md, references/, assets/, and scripts/.

Overview

What is a Skill?

A skill is a reference guide for proven techniques, patterns, or tools, typically classed as procedural knowledge or best practices. Skills help future Agent instances find and apply effective approaches.

Skills are: Reusable techniques, patterns, tools, reference guides

Skills are NOT: Narratives about how you solved a problem once

When to Create a Skill

Create when:

  • Technique wasn't intuitively obvious to you or required multiple iterations to get right.
  • You'd reference this again across projects / Others would benefit from knowing this.
  • Pattern applies broadly (not project-specific)
  • Triggerable by specific user intents or common failure modes.

Don't create for:

  • One-off solutions
  • Standard practices well-documented elsewhere
  • Project-specific conventions that aren't broadly applicable

Workflow

Phase 1: Preparation

  1. Choose the path:

- New skill: initialize scaffold and baseline structure. - Existing skill: load current SKILL.md and related resources as baseline.

  1. Define the target workflow first:

- List the execution steps in order, including prerequisites, gates, and outputs. - Keep steps imperative and executable.

  1. Determine trigger scenarios in working notes:

- Capture 2-3 scenarios that must trigger the skill. - Capture up to 2 scenarios that must not trigger the skill.

  1. Decide whether a flowchart is required:

- Use markdown-only workflow when flow is linear and obvious. - Add a small DOT flowchart only when branching/loops are non-obvious.

Phase 2: Draft

  1. Draft metadata and usage guidance from preparation:

- Keep frontmatter to name and description. - Encode trigger scenarios in description and ## When to Use (and ## When Not to Use when helpful).

  1. Draft the skill body in imperative form:

- Keep instructions short, specific, and ordered by execution. - Move deep detail to references/, assets/, or scripts/ and link from SKILL.md.

Phase 3: Review and Optimize

  1. Run scenario and functional checks against realistic prompts.
  2. Review resource fit:

- Confirm references/assets/scripts are sufficient and scoped. - Offload verbose SKILL.md sections into resources where appropriate.

  1. Optimize the draft:

- Tighten triggering (under/over-triggering). - Remove redundancy and improve progressive disclosure. - Re-check whether flowchart usage is still justified.

  1. Iterate until trigger behavior and execution quality both pass.

Core Principles

  • Optimize for triggering: description must emphasize when to use the skill (references/skills-search-optimization.md).
  • Treat trigger scenarios as authoring scaffolding; the final skill should expose triggers through description and ## When to Use.
  • Keep frontmatter metadata small (about 100 tokens combined).
  • Keep main SKILL.md under 500 lines and focused on action.
  • Use progressive disclosure: metadata -> SKILL.md -> references/scripts/assets.
  • Choose the right degree of freedom: text, pseudocode, or scripts depending on fragility.
  • Prefer reusable resources (scripts, templates) over repeated prose.

Progressive Disclosure Targets

  • Metadata (name + description): small startup footprint, ideally ~100 tokens.
  • SKILL.md: keep actionable and concise, target <5000 tokens and <500 lines.
  • scripts/, references/, assets/: loaded only when needed; keep files narrow so agents pull less context.

Flowchart Guidance

digraph when_flowchart {
    "Need to show process guidance?" [shape=diamond];
    "Non-obvious decision or loop?" [shape=diamond];
    "Use markdown (list/table/code)" [shape=box];
    "Use small inline DOT flowchart" [shape=box];

    "Need to show process guidance?" -> "Non-obvious decision or loop?" [label="yes"];
    "Need to show process guidance?" -> "Use markdown (list/table/code)" [label="no"];
    "Non-obvious decision or loop?" -> "Use small inline DOT flowchart" [label="yes"];
    "Non-obvious decision or loop?" -> "Use markdown (list/table/code)" [label="no"];
}
  • Use markdown lists/tables/code blocks by default.
  • Add DOT only when decision logic or loops are easy to misapply.
  • Avoid placeholder node labels; use concrete actions and conditions.
  • Follow references/graphviz-conventions.dot for node shapes and labels.
  • Keep flowcharts small and trigger-based; split large flows into focused subgraphs.

Render DOT to SVG with scripts/render-dot.py. Output SVGs are written to the target skill's assets/ directory.

scripts/render-dot.py skills/optimize-skills/references/skill-workflow.dot
scripts/render-dot.py skills/optimize-skills/SKILL.md
scripts/render-dot.py skills/optimize-skills/SKILL.md --force # overwrite existing SVGs

Output

SKILL.md Structure

skills/
  skill-name/
    SKILL.md      # Main reference (required)
    assets/       # (optional) Static reusable resources such as templates or figures
    references/   # (optional) On-demand documentation, organized by topic or variant
    scripts/      # (optional) Executable helpers for deterministic tasks;
                  # scripts should be self-contained or clearly declare dependencies,
                  # include clear errors, and handle edge cases.

Rules

  • SKILL.md must be named exactly SKILL.md.
  • Folder name must be kebab-case, matching the name in frontmatter.
  • Do not add README.md inside the skill.
  • YAML frontmatter must include name and description fields.
  • name must be kebab-case and match the folder name.
  • description should emphasize when to use the skill and include triggers/symptoms.
  • Avoid workflow summaries in the description.
  • Keep descriptions short and specific.
  • Prefer ## When to Use / ## When Not to Use for trigger cues; do not add a dedicated trigger-scenarios section unless explicitly requested by the repo.
  • Refer to assets/skill-template.md for a suggested (but easily modified) template structure.

Common Mistakes

  • Summarizing workflow in description instead of stating actionable triggers and symptoms.
  • Copying working trigger scenarios directly into the final skill instead of converting them into description and ## When to Use.
  • Keeping workflows as one giant graph instead of splitting into trigger-based subgraphs.
  • Repeating deep reference material in SKILL.md instead of linking to references/.
  • Leaving scripts implicit: deterministic steps should be executable where possible.

References

  • assets/skill-template.md for a suggested SKILL.md structure.
  • references/best-practices.md: checklists, structure guidance, testing, and troubleshooting patterns.
  • references/skills-search-optimization.md: description and trigger optimization rules.
  • references/skill-workflow.dot: canonical workflow for this skill.
  • references/graphviz-conventions.dot: DOT style and semantics for workflow diagrams.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.77%
按下载量换算36

Claude

27.87%
按下载量换算27

Cursor

17.06%
按下载量换算17

Gemini CLI

9.69%
按下载量换算9

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills