Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计提醒

skills-skills技能技能

Agent Skill

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

总安装

489

周安装

21

GitHub Stars

12,017

下载量

171
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tukuaiai/vibe-coding-cn --skill skills-skills

简介

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

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

SKILL.md

Claude Skills Meta-Skill

Turn scattered domain material into a Skill that is reusable, maintainable, and reliably activatable:

  • SKILL.md as the entrypoint (triggers, constraints, patterns, examples)
  • references/ for long-form evidence and navigation
  • optional scripts/ and assets/ for scaffolding and templates

When to Use This Skill

Trigger this meta-skill when you need to:

  • Create a new Skill from scratch from docs/specs/repos
  • Refactor an existing Skill (too long, unclear, inconsistent, misfires)
  • Design reliable activation (frontmatter + triggers + boundaries)
  • Extract a clean Quick Reference from large material
  • Split long content into navigable references/
  • Add a quality gate and a validator

Not For / Boundaries

This meta-skill is NOT:

  • A domain Skill by itself (it builds domain Skills)
  • A license to invent external facts (if the material does not prove it, say so and add a verification path)
  • A substitute for required inputs (if inputs are missing, ask 1-3 questions before proceeding)

Quick Reference

Deliverables (What You Must Produce)

Your output MUST include:

  1. A concrete directory layout (typically assets/skills/<skill-name>/)
  2. An actionable SKILL.md with decidable triggers, boundaries, and reproducible examples
  3. Long-form docs moved to references/ with a references/index.md
  4. A pre-delivery checklist (Quality Gate)

Built-in Tool (Mandatory): Skill Seekers (Vendored)

This repo vendors the Skill Seekers source code inside this meta-skill so you can generate a first-draft Skill from:

  • Documentation websites
  • GitHub repositories
  • PDFs

Bootstrap dependencies (once):

./assets/skills/skills-skills/scripts/skill-seekers-bootstrap.sh

Run Skill Seekers (from vendored source):

./assets/skills/skills-skills/scripts/skill-seekers.sh -- --version
./assets/skills/skills-skills/scripts/skill-seekers.sh -- scrape --config ./assets/skills/skills-skills/scripts/Skill_Seekers-development/configs/react.json
./assets/skills/skills-skills/scripts/skill-seekers.sh -- github --repo facebook/react --name react

Import the generated skill into this repo's canonical assets/skills/ tree:

./assets/skills/skills-skills/scripts/skill-seekers-import.sh react
./assets/skills/skills-skills/scripts/skill-seekers-import.sh react --force

Update the vendored source snapshot (optional, network required):

./assets/skills/skills-skills/scripts/skill-seekers-update.sh
./assets/skills/skills-skills/scripts/skill-seekers-update.sh --ref main

Recommended Layout (Minimal -> Full)

skill-name/
|-- SKILL.md              # Required: entrypoint with YAML frontmatter
|-- references/           # Optional: long-form docs/evidence/index
|   `-- index.md          # Recommended: navigation index
|-- scripts/              # Optional: helpers/automation
`-- assets/               # Optional: templates/configs/static assets

The truly minimal version is just SKILL.md (you can add references/ later).

YAML Frontmatter (Required)

---
name: skill-name
description: "What it does + when to use (activation triggers)."
---

Frontmatter rules:

  • name MUST match ^[a-z][a-z0-9-]*$ and SHOULD match the directory name
  • description MUST be decidable (not "helps with X") and include concrete trigger keywords

Minimal SKILL.md Skeleton (Copy/Paste)

---
name: my-skill
description: "[Domain] capability: includes [capability 1], [capability 2]. Use when [decidable triggers]."
---

# my-skill Skill

One sentence that states the boundary and the deliverable.

## When to Use This Skill

Trigger when any of these applies:
- [Trigger 1: concrete task/keyword]
- [Trigger 2]
- [Trigger 3]

## Not For / Boundaries

- What this skill will not do (prevents misfires and over-promising)
- Required inputs; ask 1-3 questions if missing

## Quick Reference

### Common Patterns

**Pattern 1:** one-line explanation

[command/snippet you can paste and run]


## Examples

### Example 1

- Input:
- Steps:
- Expected output / acceptance:

### Example 2

### Example 3

## References

- `references/index.md`: navigation
- `references/...`: long-form docs split by topic

## Maintenance

- Sources: docs/repos/specs (do not invent)
- Last updated: YYYY-MM-DD
- Known limits: what is explicitly out of scope

Authoring Rules (Non-negotiable)

  1. Quick Reference is for short, directly usable patterns

- Keep it <= 20 patterns when possible. - Anything that needs paragraphs of explanation goes to references/.

  1. Activation must be decidable

- Frontmatter description should say "what + when" with concrete keywords. - "When to Use" must list specific tasks/inputs/goals, not vague help text. - "Not For / Boundaries" is mandatory for reliability.

  1. No bluffing on external details

- If the material does not prove it, say so and include a verification path.

Workflow (Material -> Skill)

Do not skip steps:

  1. If your source material is a docs site / GitHub repo / PDF: generate a first draft with the vendored Skill Seekers tool, then import into assets/skills/<skill-name>/
  2. Scope: write MUST/SHOULD/NEVER (three sentences total is fine)
  3. Extract patterns: pick 10-20 high-frequency patterns (commands/snippets/flows)
  4. Add examples: >= 3 end-to-end examples (input -> steps -> acceptance)
  5. Define boundaries: what is out-of-scope + required inputs
  6. Split references: move long text into references/ + write references/index.md
  7. Apply the gate: run the checklist and the validator

Quality Gate (Pre-delivery Checklist)

Minimum checks (see references/quality-checklist.md for the full version):

  1. name matches ^[a-z][a-z0-9-]*$ and matches the directory name
  2. description states "what + when" with concrete trigger keywords
  3. Has "When to Use This Skill" with decidable triggers
  4. Has "Not For / Boundaries" to reduce misfires
  5. Quick Reference is <= 20 patterns and each is directly usable
  6. Has >= 3 reproducible examples
  7. Long content is in references/ and references/index.md is navigable
  8. Uncertain claims include a verification path (no bluffing)
  9. Reads like an operator's manual, not a documentation dump

Validate locally:

# From repo root (basic validation)
./assets/skills/skills-skills/scripts/validate-skill.sh assets/skills/<skill-name>

# From repo root (strict validation)
./assets/skills/skills-skills/scripts/validate-skill.sh assets/skills/<skill-name> --strict

# From assets/skills/skills-skills/ (basic validation)
./scripts/validate-skill.sh ../<skill-name>

# From assets/skills/skills-skills/ (strict validation)
./scripts/validate-skill.sh ../<skill-name> --strict

Tools & Templates

Generate a new Skill skeleton:

# From repo root (generate into ./assets/skills/)
./assets/skills/skills-skills/scripts/create-skill.sh my-skill --full --output assets/skills

# From skills-skills/ (generate into ../ i.e. ./assets/skills/)
./scripts/create-skill.sh my-skill --full --output ..

# Minimal skeleton
./assets/skills/skills-skills/scripts/create-skill.sh my-skill --minimal --output assets/skills

Templates:

  • assets/template-minimal.md
  • assets/template-complete.md

Examples

Example 1: Create a Skill from Docs

  • Input: an official doc/spec + 2-3 real code samples + common failure modes
  • Steps:

1. Run create-skill.sh to scaffold assets/skills/<skill-name>/ 2. Write frontmatter description as "what + when" 3. Extract 10-20 high-frequency patterns into Quick Reference 4. Add >= 3 end-to-end examples with acceptance criteria 5. Put long content into references/ and wire references/index.md 6. Run validate-skill.sh --strict and iterate

Example 2: Refactor a "Doc Dump" Skill

  • Input: an existing SKILL.md with long pasted documentation
  • Steps:

1. Identify which parts are patterns vs. long-form explanation 2. Move long-form text into references/ (split by topic) 3. Rewrite Quick Reference as short copy/paste patterns 4. Add or fix Examples until they are reproducible 5. Add "Not For / Boundaries" to reduce misfires

Example 3: Validate and Gate a Skill

  • Input: assets/skills/<skill-name>/
  • Steps:

1. Run validate-skill.sh (non-strict) to get warnings 2. Fix frontmatter/name mismatches and missing sections 3. Run validate-skill.sh --strict to enforce the spec 4. Run the scoring rubric in references/quality-checklist.md before shipping

References

Local docs:

  • references/index.md
  • references/skill-spec.md
  • references/quality-checklist.md
  • references/anti-patterns.md
  • references/README.md (upstream official reference)
  • references/skill-seekers.md (vendored tool integration + workflow)

External (official):

Maintenance

  • Sources: local spec files in assets/skills/skills-skills/references/ + upstream official docs in references/README.md
  • Last updated: 2025-12-14
  • Known limits: validate-skill.sh is heuristic; strict mode assumes the recommended section headings

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.56%
按下载量换算59

Claude

29.27%
按下载量换算50

Cursor

19.79%
按下载量换算34

Gemini CLI

9.9%
按下载量换算17

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills