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

eve-skill-distillation夕技能蒸馏

Agent Skill

eve-skill-distillation 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,645

周安装

240

GitHub Stars

公开资料未说明

下载量

1,978
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/incept5/eve-skillpacks --skill eve-skill-distillation

简介

eve-skill-distillation 用于将重复的工作流模式提炼为可复用的技能,适合在 Codex、Claude、Cursor、Gemini CLI 中需要编码常见失败修复或跨任务标准化流程时使用。

  • 它强调使用编排器模式而非串行执行,以保护上下文预算并提升效率。
  • 使用时应在发现多个作业共享相同逻辑时启动蒸馏流程,并优先捕获可复用的交互模式。
  • 安装前应评估目标工作流的复杂度,确保具备足够的上下文来定义清晰的事件边界与处理规则。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Eve Skill Distillation

Use this workflow to turn repeated patterns into reusable skills.

When to distill

  • A workflow has repeated across two or more jobs.
  • Knowledge would benefit other agents working on the same project.
  • A failure mode keeps recurring and the fix should be encoded.

Workflow: Orchestrate, Don't Serialize

When distilling involves multiple skills (creating several, updating a batch, or a mix), use an orchestrator pattern rather than doing everything sequentially. This protects your context budget and parallelizes independent work.

Step 1: Capture patterns (orchestrator)

Identify all the patterns worth distilling from recent work. For each one:

  • Name the repeated steps, commands, or failure modes.
  • Decide: update an existing skill, or create a new one?
  • Choose the target repo/pack first - is this likely to be

- ./private-skills/ or similar for repo-specific development workflows that are not going to be imported into other projects (private) - ./private-eve-dev-skills/ when working in the eve-horizon repo and the skills relate to internal development of the platform itself (private) - ../eve-skillpacks/eve-se/ for Eve platform work (deploy, auth, manifests, pipelines) - ../eve-skillpacks/eve-work/ for general knowledge work (docs, orchestration, distillation) - ../eve-skillpacks/eve-design/ for architecture and design thinking

Step 2: Plan work items (orchestrator)

Create a tracked work item for each skill to create or update. Each work item description must be self-contained — a worker with no prior context should be able to execute it.

Include in each work item:

  • The target file path (e.g., eve-se/eve-auth-and-secrets/SKILL.md)
  • Whether this is a create or update
  • The pattern being captured: what the skill should teach
  • Any source material the worker should read (existing skills, reference docs, conversation history)
  • The authoring rules (see "Skill Authoring Rules" below)

If there are housekeeping updates (README, ARCHITECTURE.md), add those as a final work item blocked until all skill work items complete.

Step 3: Dispatch workers (parallel)

Spawn one worker per skill work item. Launch them all at once.

Each worker prompt must be self-contained. The worker has no access to the orchestrator's conversation. Include:

  • The target file path to create or edit
  • The pattern to capture, described in enough detail to write from
  • The authoring rules below
  • Existing file content to preserve (for updates)

Step 4: Collect and finalize (orchestrator)

Wait for all workers to complete. Then:

  • Update pack README and ARCHITECTURE.md listings if skills were added or removed.
  • Verify each new/updated skill follows the authoring rules.

Single-skill shortcut

If there's only one skill to distill, skip the orchestrator pattern and do it directly. The overhead of dispatching a single worker isn't worth it.

Skill Authoring Rules

Every worker (or direct author) must follow these:

  • Frontmatter: YAML with name and description only.
  • Voice: Imperative form throughout. ("Run the command", not "You should run the command".)
  • Conciseness: Keep SKILL.md under 5,000 words. Move long details into references/.
  • Teach thinking, not just steps: Skills should help agents understand *why*, not just *what*. Include the reasoning behind workflows so agents can adapt when conditions change.
  • Structure for skimming: Use headers, short paragraphs, and code blocks. Agents scan before they read.
  • Agent-agnostic language: Describe *what* to do, not *which tool to call*. Say "edit the file" not "use the Edit tool". Say "spawn a background worker" not "launch a Task sub-agent".

Recursive distillation

  • Repeat this loop after each significant job.
  • Merge overlapping skills instead of duplicating them.
  • Keep skills current as platform behavior evolves.
  • When a skill's instructions no longer match reality, update or retire it.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.39%
按下载量换算680

Claude

30.65%
按下载量换算606

Cursor

17.26%
按下载量换算341

Gemini CLI

8.22%
按下载量换算163

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills