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

skillifyskillify 搜索

Agent Skill

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

总安装

1,420

周安装

58

GitHub Stars

26

下载量

455
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vesely/skills --skill skillify

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • skillify 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Skillify

Capture this session's repeatable process into a reusable SKILL.md skill file. Call at the end of the process you want to capture, optionally with a description.

Inputs

  • $description: (Optional) Description of the process you want to capture as a skill.

Goal

Create a well-structured, reusable SKILL.md file that captures a repeatable process from the current session so it can be invoked again later.

Steps

1. Analyze the Session

Before asking any questions, analyze the conversation to identify:

  • What repeatable process was performed
  • What the inputs/parameters were
  • The distinct steps (in order)
  • The success artifacts/criteria (e.g. not just "writing code," but "an open PR with CI fully passing") for each step
  • Where the user corrected or steered you
  • What tools and permissions were needed
  • What agents were used
  • What the goals and success artifacts were

Success criteria: You have a clear mental model of the process, its steps, inputs, outputs, and success criteria.

2. Interview the User

Use AskUserQuestion for ALL questions. Never ask questions via plain text. For each round, iterate as much as needed until the user is happy. The user always has a freeform "Other" option to type edits or feedback -- do NOT add your own "Needs tweaking" option. Just offer the substantive choices.

Round 1: High-level confirmation

  • Suggest a name and description for the skill based on your analysis. Ask the user to confirm or rename.
  • Suggest high-level goal(s) and specific success criteria for the skill.

Round 2: More details

  • Present the high-level steps you identified as a numbered list. Tell the user you will dig into the detail in the next round.
  • If you think the skill will require arguments, suggest arguments based on what you observed. Make sure you understand what someone would need to provide.
  • If it's not clear, ask if this skill should run inline (in the current conversation) or forked (as a sub-agent with its own context). Forked is better for self-contained tasks that don't need mid-process user input; inline is better when the user wants to steer mid-process.
  • Ask where the skill should be saved. Suggest a default based on context. Options:

- This repo (.claude/skills/<name>/SKILL.md) -- for workflows specific to this project - Personal (~/.claude/skills/<name>/SKILL.md) -- follows you across all repos

Round 3: Breaking down each step

For each major step, if it's not glaringly obvious, ask:

  • What does this step produce that later steps need? (data, artifacts, IDs)
  • What proves that this step succeeded, and that we can move on?
  • Should the user be asked to confirm before proceeding? (especially for irreversible actions like merging, sending messages, or destructive operations)
  • Are any steps independent and could run in parallel? (e.g., posting to Slack and monitoring CI at the same time)
  • How should the skill be executed? (e.g. always use a Task agent to conduct code review, or invoke an agent team for a set of concurrent steps)
  • What are the hard constraints or hard preferences? Things that must or must not happen?

You may do multiple rounds of AskUserQuestion here, one round per step, especially if there are more than 3 steps or many clarification questions.

IMPORTANT: Pay special attention to places where the user corrected you during the session, to help inform your design.

Round 4: Final questions

  • Confirm when this skill should be invoked, and suggest/confirm trigger phrases too. (e.g. "Use when the user wants to cherry-pick a PR to a release branch. Examples: 'cherry-pick to release', 'CP this PR', 'hotfix'.")
  • Ask for any other gotchas or things to watch out for, if still unclear.

Stop interviewing once you have enough information. Don't over-ask for simple processes!

Success criteria: You have all the information needed to write the SKILL.md file and the user has confirmed the design.

3. Write the SKILL.md

Create the skill directory and file at the location the user chose in Round 2. Use this format:

---
name: {{skill-name}}
description: {{one-line description}}
allowed-tools:
  {{list of tool permission patterns observed during session}}
when_to_use: {{detailed description of when Claude should automatically invoke this skill, including trigger phrases and example user messages}}
argument-hint: "{{hint showing argument placeholders}}"
arguments:
  {{list of argument names}}
context: {{inline or fork -- omit for inline}}
---

# {{Skill Title}}

Description of skill

## Inputs

- `$arg_name`: Description of this input

## Goal

Clearly stated goal for this workflow. Best if you have clearly defined artifacts or criteria for completion.

## Steps

### 1. Step Name

What to do in this step. Be specific and actionable. Include commands when appropriate.

**Success criteria**: ALWAYS include this! This shows that the step is done and we can move on. Can be a list.

Per-step annotations (include where relevant):

  • Success criteria is REQUIRED on every step.
  • Execution: Direct (default), Task agent (straightforward subagents), Teammate (agent with true parallelism and inter-agent communication), or [human] (user does it). Only needs specifying if not Direct.
  • Artifacts: Data this step produces that later steps need (e.g., PR number, commit SHA). Only include if later steps depend on it.
  • Human checkpoint: When to pause and ask the user before proceeding. Include for irreversible actions (merging, sending messages), error judgment (merge conflicts), or output review.
  • Rules: Hard rules for the workflow. User corrections during the reference session can be especially useful here.

Step structure tips:

  • Steps that can run concurrently use sub-numbers: 3a, 3b
  • Steps requiring the user to act get [human] in the title
  • Keep simple skills simple -- a 2-step skill doesn't need annotations on every step

Frontmatter rules:

  • allowed-tools: Minimum permissions needed (use patterns like Bash(gh:*) not Bash)
  • context: Only set context: fork for self-contained skills that don't need mid-process user input.
  • when_to_use is CRITICAL -- tells the model when to auto-invoke. Start with "Use when..." and include trigger phrases.
  • arguments and argument-hint: Only include if the skill takes parameters. Use $name in the body for substitution.

Success criteria: The complete SKILL.md content has been drafted.

4. Review and Save

Before writing the file, output the complete SKILL.md content as a yaml code block in your response so the user can review it with proper syntax highlighting. Then ask for confirmation using AskUserQuestion with a simple question like "Does this SKILL.md look good to save?"

After writing, tell the user:

  • Where the skill was saved
  • How to invoke it: /{{skill-name}} [arguments]
  • That they can edit the SKILL.md directly to refine it

Success criteria: The file is written to disk and the user has been informed how to use it.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.92%
按下载量换算159

Claude

28.03%
按下载量换算128

Cursor

18.16%
按下载量换算83

Gemini CLI

9.36%
按下载量换算43

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills