Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计通过

extract-skill提取技能

Agent Skill

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

总安装

504

周安装

21

GitHub Stars

32

下载量

168
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/steveclarke/dotfiles --skill extract-skill

简介

用于从对话中提取工作流程、模式或领域知识,保存为可重用技能。

  • 适合固化有效实践、捕获非显性步骤或最佳做法,提升后续任务效率。
  • 自动识别对话中的可提取内容,支持更新现有技能或创建新技能模块。
  • 安装前建议确认权限范围,注意可能涉及本地文件读写和技能持久化操作。
  • extract-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Extract Skill from Conversation

This skill helps you extract knowledge, patterns, and workflows from the current conversation and persist them as a reusable skill.

When to Use

  • The user says "extract a skill", "extract this as a skill", or "save this for next time"
  • A useful workflow, pattern, or piece of domain knowledge emerged during the conversation
  • The user wants to update an existing skill with new learnings
  • The conversation uncovered non-obvious steps, gotchas, or best practices worth preserving

Extraction Process

Phase 1: Identify What to Extract

Review the conversation for:

  1. Workflows: Multi-step processes that were figured out through trial and error
  2. Domain knowledge: Non-obvious facts, configurations, or constraints discovered
  3. Gotchas and fixes: Problems encountered and their solutions
  4. Patterns: Code patterns, command sequences, or templates that worked well
  5. Decision rationale: Why certain approaches were chosen over alternatives

Summarize what you plan to extract and confirm with the user before proceeding.

Phase 2: Decide Destination

If the user already specified a skill or the destination is obvious from context, just proceed. Otherwise, use the AskQuestion tool (or ask conversationally) to clarify:

  1. New or existing skill?

- If existing: Which skill to update? (list relevant skills from ~/.cursor/skills/ and .cursor/skills/) - If new: What should it be named?

  1. Storage location (for new skills):

- Personal (~/.cursor/skills/) — available across all projects - Project (.cursor/skills/) — shared with the repository

Phase 3: Draft the Skill Content

When extracting into a new skill:

  1. Choose a descriptive name (lowercase, hyphens, max 64 chars)
  2. Write a specific description including WHAT and WHEN (third person)
  3. Distill the conversation into concise, actionable instructions
  4. Include concrete examples drawn from the conversation
  5. Add any utility scripts or commands that were used

When updating an existing skill:

  1. Read the existing SKILL.md
  2. Identify where new learnings fit (new section, updated steps, additional examples)
  3. Integrate without duplicating existing content
  4. Preserve the existing structure and voice

Phase 4: Distillation Guidelines

The goal is to transform a messy conversation into clean, reusable instructions.

Do:

  • Extract the final working approach, not the failed attempts (unless gotchas are instructive)
  • Generalize from the specific case discussed (replace hardcoded values with placeholders)
  • Include the "why" behind non-obvious steps
  • Add context the agent wouldn't know without this conversation
  • Keep it under 500 lines

Don't:

  • Include conversation artifacts ("as we discussed", "you mentioned")
  • Repeat information the agent already knows
  • Include overly specific details that won't transfer to other situations
  • Add verbose explanations where a code example suffices

Phase 5: Write and Verify

  1. Create/update the skill file(s)
  2. Verify the SKILL.md is under 500 lines
  3. Check that the description is specific and includes trigger terms
  4. Confirm with the user that the captured content is accurate

Example: Extracting a Debugging Workflow

If a conversation involved debugging a tricky deployment issue, the captured skill might look like:

---
name: debug-k8s-deployments
description: Debug Kubernetes deployment failures including CrashLoopBackOff, image pull errors, and resource limits. Use when pods are failing to start or deployments are stuck.
---

# Debug K8s Deployments

## Diagnostic Steps

1. Check pod status: `kubectl get pods -n <namespace> | grep -v Running`
2. Get events: `kubectl describe pod <pod> -n <namespace>`
3. Check logs: `kubectl logs <pod> -n <namespace> --previous`

## Common Issues

### CrashLoopBackOff
- Check if the entrypoint command exists in the container
- Verify environment variables are set (especially secrets)
- Look for OOMKilled in `describe` output → increase memory limits

### ImagePullBackOff
- Verify image tag exists: `docker manifest inspect <image>`
- Check imagePullSecrets are configured for private registries

Note how this extracts the diagnostic sequence and common solutions without any conversation artifacts.

Handling Edge Cases

Conversation had multiple topics: Ask which specific learning to extract, or suggest creating separate skills for distinct topics.

Learning is too small for a skill: Suggest creating a Cursor rule (.cursor/rules/) instead, which is better suited for single-line or short guidelines.

Existing skill needs major rewrite: Confirm with the user whether to restructure the existing skill or create a new one that supersedes it.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Cursor

31.1%
按下载量换算52

Claude Code

26.15%
按下载量换算44

windsurf

17.31%
按下载量换算29

OpenCode

12.4%
按下载量换算21

Codex

7.97%
按下载量换算13

Antigravity

3.87%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills