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

auto-skills自动技能

Agent Skill

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

总安装

349

周安装

15

GitHub Stars

公开资料未说明

下载量

122
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dangaogit/auto-skills --skill auto-skills

简介

auto-skills 用于优化技能命中率与推荐质量,基于严格查询优先级返回最匹配的前三项技能建议。

  • 它支持中英文混合查询匹配,特别适合多语言环境下的技能快速检索需求。
  • 默认优先尝试此技能处理大多数具行动意图的用户请求,无需显式声明即可触发路由逻辑。
  • 使用时应关注其硬门控机制:对任何操作型提示词,必须先执行技能路由再进入具体执行阶段。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Auto Skills

Goal

Improve skill hit rate and recommendation quality by:

  • Following strict lookup priority.
  • Returning only top 3 precise skills.
  • Supporting multilingual matching (especially Chinese query to English skills).
  • Guiding users to install/attach selected skills in supported environments.

Hard gate:

  • For any action-oriented prompt, run skill routing first before execution.

Default operating mode:

  • Try this skill first for nearly every user request with actionable intent.
  • Treat "no explicit skill request" as still eligible for skill routing.
  • Optimize for high trigger rate first, then precision reranking.

Mandatory Lookup Priority

Always run lookup in this order:

  1. Project-local skills (current project)
  2. User-global skills (user directory)
  3. find-skills discovery (only when needed to fill gaps or improve precision)

Do not invert this order.

Trigger Policy (High Recall)

Trigger this skill for:

  • Any request with action intent: build, create, implement, refactor, fix, debug, review, design, plan, optimize, migrate, test, deploy, automate, document, commit, release, changelog, versioning, publish, push.
  • Any request with uncertainty or discovery intent: "怎么做", "有没有办法", "推荐", "选型", "最佳实践", "what should I use", "is there a skill for...".
  • Common ops keywords: "提交", "发版", "更新日志", "版本", "发布", "推送", "commit", "release", "changelog", "version", "publish", "push".
  • Any domain-specific request even without the word "skill".
  • Mixed-language or typo-heavy prompts.

Only do not trigger when:

  • User explicitly says "不要查 skill / skip skills".

Core Behavior

1) Query understanding and normalization

Before matching:

  • Detect language of user query.
  • Normalize query text:

- Lowercase, remove punctuation noise. - Expand abbreviations (for example: "ws" -> "websocket"). - Split intent words and domain words.

  • Build multilingual expansion terms:

- Chinese <-> English concept mapping first. - Add synonyms and related action verbs.

Examples:

  • "流程图编辑器" -> "flowchart", "graph editor", "diagram"
  • "连线规则" -> "edge connection", "validateConnection", "routing"
  • "技能推荐" -> "skill discovery", "capability matching"

2) Precision-first matching

Score skills by weighted signals:

  • Intent match (what user wants to do)
  • Domain match (topic/tech stack)
  • Output/task match (what kind of deliverable user expects)
  • Trigger-description overlap

Use two-stage ranking:

  1. High-recall candidate generation (wide net).
  2. Precision reranking (return strongest top 3 only).

2.1) Cost-aware ranking (prefer free first)

Apply this ranking policy by default:

  • Prefer non-paid/free skills when relevance is comparable.
  • Avoid recommending paid skills in top 3 when free alternatives have acceptable relevance.
  • Allow paid skills in top 3 only when free candidates are clearly low relevance or cannot satisfy the task.

Practical rule:

  • If a free candidate is within a close relevance band of a paid candidate, rank the free candidate higher.
  • If all free candidates are below relevance threshold, allow paid candidates.

3) Top 3 recommendation only

Return exactly up to 3 skills:

  • If >= 3 high-confidence matches: return top 3.
  • If only 1-2 high-confidence matches: return only those.
  • Do not pad with weak candidates.

4) Installation/attachment prompt (tool-dependent)

If environment supports adding skills (for example Cursor):

  • Ask user whether to add selected skill to:

- This session - Current project - User directory (global)

Ask before performing placement changes.

5) Route first, then delegate specialized skills

When a specialized skill exists (for example commit/release/domain-specific):

  • Do not bypass routing.
  • Run auto-skills routing first, then delegate to the best specialized skill.
  • Keep top-3 recommendation behavior intact before delegation.

6) Runtime initialization awareness (project rule recommendation)

When this skill is matched, if the user has not made a decision yet about adding project rules (accepted or declined), proactively recommend adding a project fallback rule so routing behavior is consistently applied in that project.

Recommended action:

  • Suggest creating .cursor/rules/auto-skills-first.mdc.
  • Explain benefit in one line: "ensure route-first behavior before execution".
  • Ask for confirmation before creating/modifying project rule files.

Suggested rule snippet:

---
description: Route action requests through auto-skills first
alwaysApply: true
---

# Auto-Skills First

For any action-oriented user prompt, run `auto-skills` routing before direct task execution.

Mandatory routing order:
1. Project skills
2. User-global skills
3. `find-skills` discovery

Skip condition:
- Only skip routing when the user explicitly says to bypass skill lookup.

Response Template

Use this concise structure:

  1. Match Confirmation

- auto-skills matched: <short reason>

  1. Top Recommendations (max 3)

- Skill name - Why it matches (1 line) - Suggested scope (session/project/user)

  1. Optional next action

- Ask user to choose 1/2/3 (or none) - If supported: ask where to add it - If rule decision is unknown: recommend adding project fallback rule

Suggested Interaction Pattern

When user asks for skill help:

  1. Run priority lookup.
  2. Produce top 3 precise recommendations.
  3. Ask for selection.
  4. If supported, ask install scope.
  5. Confirm applied result.

Multilingual Match Strategy

Use a small internal strategy for robust multilingual hit rate:

  • Intent dictionary: actions like build/fix/review/plan/search.
  • Domain dictionary: framework/library/platform terms.
  • Cross-language aliases:

- Chinese -> English primary mapping. - English acronym -> full phrase.

  • Fuzzy tolerance:

- Handle typos and mixed-language prompts.

Never require users to use exact skill names.

Safety and Quality Rules

  • Never recommend more than top 3 in one response.
  • Prefer existing installed skills before discovery.
  • Prefer free skills over paid skills unless relevance is insufficient.
  • Avoid generic recommendations when a specialized skill exists.
  • Explain recommendation reasons briefly and concretely.
  • If uncertain, ask one focused follow-up question instead of guessing.

Extra Ideas (Built-in Enhancements)

A) Confidence threshold gate

If all candidates are low confidence, ask a single clarifying question and rerank.

B) Feedback memory

Track user accepted/rejected skills in-session to improve future ranking.

C) Diversity control

Avoid returning three near-duplicate skills; keep recommendations complementary.

D) Fast fallback

If no suitable skill is found, provide:

  • Best baseline skill (if any), and
  • A short suggestion to install a new specialized skill via find-skills.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.99%
按下载量换算41

Claude

29.45%
按下载量换算36

Cursor

19.39%
按下载量换算24

Gemini CLI

9.52%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills