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

pavlo-agent-skill-creator巴甫洛特工技能创建器

Agent Skill

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

总安装

267

周安装

11

GitHub Stars

公开资料未说明

下载量

87
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pavloglushko/ai-skills --skill pavlo-agent-skill-creator

简介

pavlo-agent-skill-creator 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态或协作事项进行整理。
  • 通过 npx 命令从指定仓库安装,需结合原始 README 确认具体用法。
  • 使用前应核实权限范围、维护状态及是否涉及联网或命令执行。
  • 建议优先参考来源仓库中的 SKILL.md 获取准确功能说明。

SKILL.md

Skill: Agent Skill Creator

Create or edit SKILL.md files for AI coding agent skills in this repository.

File Location & Naming

  • Every skill lives in its own directory: .agents/skills/<skill-name>/SKILL.md
  • Skill directory names follow the pattern pavlo-<kebab-case-topic> (e.g., pavlo-jira-ticket-writer).
  • Ask for the skill name if the user did not specify one.

Examples Directory

Skills that produce output files (tickets, plans, PRs, etc.) should include an examples/ subdirectory with real-world reference files:

.github/skills/<skill-name>/
├── SKILL.md
└── examples/
    └── <real_example_file>.md
  • Place copies of real project files that demonstrate the skill's expected output.
  • The SKILL.md must reference the examples explicitly (e.g., "See examples/M2_PR3_plan.md for a real-world reference.").
  • Examples are snapshots — they do not need to stay in sync with the original files in docs/.
  • Agents should read the examples before generating output to match style and structure.

SKILL.md Structure

Every SKILL.md must follow this exact structure and section order.

1. YAML Metadata Block

A fenced YAML code block at the very top of the file — no content before it:

---
name: <skill-directory-name>
version: "1.0.0"
description: >
  <one or couple sentence description of what the skill does and when to use it.>
  Use when …
metadata:
  author: Pavlo Glushko
  applies_to:
    - "<glob pattern for files this skill produces or edits>"
  triggers:
    - <phrase that should activate this skill>
    - ...
  capabilities:
    - <specific thing the skill can do>
    - ...
---

Field rules:

  • name — must exactly match the directory name.
  • version — top-level document version; start at "1.0.0", increment minor for content additions, patch for corrections.
  • description — one or two sentences; include a "Use when …" clause so agents can decide whether to invoke it.
  • metadata.applies_to — glob(s) for the output or target files (e.g., "docs/ticket_*.md", "**/.agents/skills/**/SKILL.md").
  • metadata.triggers — lower-case phrases a user might say to invoke this skill. Include synonyms.
  • metadata.capabilities — concrete actions the skill can perform, not aspirational qualities.

2. Title

# Skill: <Human-Readable Skill Name>

One sentence immediately after the heading describing what the skill does (no heading needed for this sentence).

3. File Location & Naming *(if the skill produces output files)*

Explain where output files are created and the naming convention. Include concrete examples.

4. Body Sections

The remaining content is skill-specific. Structure it so an agent can follow it as a precise procedure. Common patterns used by existing skills:

  • Structure definition — when the skill produces a document, define every required section with its exact heading, content rules, and ordering (see pavlo-jira-ticket-writer).
  • Rules / conventions — when the skill enforces a coding or formatting standard, list rules grouped by category with explicit do/don't examples (see pavlo-markdown-editor).
  • Workflow — a numbered step-by-step procedure the agent follows when executing the skill.
  • Writing guidelines — tone, specificity level, privacy constraints, and anything else that cannot be inferred from the structure definition alone.

Workflow

Creating a new skill

  1. Determine the skill name: pavlo-<topic> in kebab-case.
  2. Create the file at .agents/skills/<skill-name>/SKILL.md.
  3. Write the YAML front matter block first (between --- delimiters).
  4. Add the # Skill: … title and one-sentence description.
  5. Add a File Location & Naming section if the skill produces output files.
  6. Write the body: structure definitions, rules, workflow, guidelines — whatever the skill needs to work without further clarification.
  7. Keep instructions agent-actionable: avoid vague advice; write steps an agent can execute directly.
  8. Add a row for the new skill to the skills table in .github/copilot-instructions.md — columns: Skill (display name), File (path to SKILL.md), Description (exact text from the description metadata field, collapsed to one line).

Editing an existing skill

  1. Read the existing SKILL.md in full before making any changes.
  2. Identify gaps: missing sections, outdated content, or conventions that changed in the codebase.
  3. Apply surgical updates — do not rewrite sections that are still accurate.
  4. Increment version in the metadata block (minor bump for additions, patch for corrections).
  5. If the description field changed, update the corresponding row in the skills table in .github/copilot-instructions.md to match exactly.
  6. Summarise what was added, modified, or removed so the user is aware of the changes.

Writing Guidelines

  • Be prescriptive, not descriptive. Write "use X" not "X is commonly used".
  • Include examples. Abstract rules are hard to follow; concrete examples eliminate ambiguity.
  • Reference real files. When a convention is grounded in an existing file, cite it by path.
  • One source of truth. If a convention is already in AGENTS.md or copilot-instructions.md, reference it rather than duplicating it.
  • Privacy. Do not expose personal workflow rules from copilot-instructions.md in skill output visible to others.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.55%
按下载量换算31

Claude

29.42%
按下载量换算26

Cursor

18.33%
按下载量换算16

Gemini CLI

9.43%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills