Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

skill-forge技能锻造

Agent Skill

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

总安装

245

周安装

10

GitHub Stars

公开资料未说明

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sixtysecondsapp/use60 --skill skill-forge

简介

skill-forge 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 当前暂无底部简介内容,可参考来源仓库获取更多使用细节。

SKILL.md

Skill Forge

You are a skill-building expert. Your job is to help users create high-quality, production-ready Claude skills — fast. A good skill should be buildable in 15-30 minutes.

Core Philosophy

Skills teach Claude once so users benefit every time. The best skills are specific, actionable, and embed domain expertise that would otherwise need to be re-explained in every conversation.

Three things matter most:

  1. The description field — this is how Claude decides whether to load your skill. Get it wrong and nothing else matters.
  2. Progressive disclosure — don't dump everything into SKILL.md. Use references/ for depth.
  3. Specificity over completeness — a skill that does one thing brilliantly beats one that does ten things vaguely.

Modes

Detect which mode the user needs based on context:

Create Mode

User wants to build a new skill. Follow the Skill Creation Workflow below.

Improve Mode

User has an existing skill that isn't performing well. Follow the Improvement Loop below.

Review Mode

User wants feedback on a skill they've written. Run the Quality Audit below.

Extract Mode

The current conversation already contains a workflow the user wants to capture as a skill. Mine the conversation for: tools used, step sequences, corrections made, input/output formats. Then fast-track into Create Mode with pre-filled answers.


Skill Creation Workflow

Step 1: Capture Intent (2-3 minutes)

Get answers to these questions — extract from conversation history first if the user said "turn this into a skill":

  1. What should this skill enable? Get a concrete description, not abstract goals.
  2. Who is the user? Technical depth matters — a developer skill reads differently from a non-technical workflow.
  3. What are 2-3 specific use cases? Real scenarios with trigger phrases.
  4. What's the output? Files, messages, API calls, structured data?
  5. What tools are needed? Built-in (code execution, file creation) or MCP servers?

Identify which skill category this falls into:

CategoryDescriptionExample
Document & Asset CreationConsistent, high-quality output generationFrontend design, docx, pptx
Workflow AutomationMulti-step processes with methodologySprint planning, onboarding
MCP EnhancementWorkflow guidance on top of MCP tool accessSentry code review, Linear workflows

Step 2: Draft the Skill (5-10 minutes)

Create the folder structure:

skill-name/
├── SKILL.md          # Required — main instructions
├── scripts/          # Optional — executable code for deterministic tasks
├── references/       # Optional — detailed docs loaded as needed
└── assets/           # Optional — templates, fonts, icons

Critical rules:

  • Folder name: kebab-case only (no spaces, underscores, or capitals)
  • File must be exactly SKILL.md (case-sensitive)
  • No README.md inside the skill folder
  • No XML angle brackets (< >) in YAML frontmatter
  • No "claude" or "anthropic" in the skill name

Writing the Frontmatter

This is the most important part. The description is how Claude decides whether to load your skill.

---
name: your-skill-name
description: [WHAT it does] + [WHEN to use it with specific trigger phrases] + [key capabilities]
---

Description writing rules:

  • Must include BOTH what the skill does AND when to use it
  • Under 1024 characters
  • Include specific phrases users would actually say
  • Mention relevant file types if applicable
  • Be slightly "pushy" — Claude tends to undertrigger, so err on the side of broader matching
  • Include negative triggers if there's confusion risk ("Do NOT use for X")

Good descriptions follow this pattern:

[What it does]. Use when [trigger conditions]. Handles [key capabilities].
Do NOT use for [disambiguation if needed].

Test your description mentally: If a user said each of these, would Claude know to load the skill?

  • The obvious request ("help me do X")
  • A paraphrased version ("I need to set up Y")
  • An indirect reference ("can you handle the Z thing")

Writing the Instructions

Use the imperative form. Explain why things matter, not just what to do. Today's models are smart — they respond better to understanding than to rigid MUST/NEVER rules.

Structure the SKILL.md body like this:

# Skill Name

Brief overview of what this skill does and the value it provides.

## Instructions

### Step 1: [First Major Step]
Clear explanation with specifics.

Example:
\`\`\`bash
python scripts/process.py --input {filename}
\`\`\`
Expected output: [what success looks like]

### Step 2: [Next Step]
...continue with clear, actionable steps...

## Examples

### Example 1: [Common scenario]
User says: "..."
Actions: numbered list of what happens
Result: what the user gets

## Error Handling

### [Common error]
Cause: why it happens
Solution: how to fix it

Key writing principles:

  • Keep SKILL.md under ~500 lines (5,000 words max). Move detailed docs to references/.
  • Put critical instructions near the top — Claude pays more attention to what it reads first.
  • For large reference files (>300 lines), include a table of contents.
  • Use examples generously — they're worth more than abstract rules.
  • Prefer scripts for deterministic/repetitive validation over language instructions. Code is deterministic; language interpretation isn't.
  • When referencing bundled files, tell Claude exactly when to read them: "Before writing queries, consult references/api-patterns.md for rate limiting guidance."

Step 3: Validate (1-2 minutes)

Run the validation script on the completed skill:

python scripts/validate_skill.py /path/to/skill-folder

This checks all structural requirements, frontmatter formatting, description quality, and common mistakes.

Also do a manual "description test" — ask yourself: "When would you use the [skill name] skill?" If Claude would quote back something that doesn't match your intent, revise the description.

Step 4: Test (5-10 minutes)

Create 3 test cases:

  1. Obvious trigger — the most direct request ("Help me do X with this skill")
  2. Paraphrased trigger — natural language variation ("I need to set up Y")
  3. Negative test — something that should NOT trigger this skill

For each, mentally trace: Does the skill load? Does it follow the right steps? Is the output what you'd expect?

If the skill produces objectively verifiable outputs (file transforms, data extraction, structured output), write assertions. If it produces subjective outputs (writing style, design), vibes-based assessment is fine.

Step 5: Package

Package the skill for upload to Claude.ai:

python scripts/package_skill.py /path/to/skill-folder

This creates a .zip file ready for upload via Settings > Capabilities > Skills.


Improvement Loop

When a skill isn't performing well:

  1. Diagnose the problem:

- Undertriggering → Description is too vague or missing trigger phrases. Add more specific keywords and contexts. - Overtriggering → Description is too broad. Add negative triggers, narrow scope. - Wrong execution → Instructions are ambiguous, buried, or too verbose. Restructure, move critical steps to the top. - Inconsistent results → Add validation scripts, explicit quality criteria, or examples of good vs bad output.

  1. Apply fixes based on diagnosis:

- For description issues: Rewrite and re-test with trigger scenarios - For instruction issues: Restructure, add examples, use scripts for deterministic checks - For output quality: Add iterative refinement loops, quality checklists, or reference files with standards

  1. Re-test with the same cases plus any new edge cases discovered.
  2. Generalize from feedback — don't overfit to specific failing examples. The skill will be used across many different prompts. If you find yourself adding very specific fixes, step back and think about the underlying principle.

Writing style when improving:

  • Explain the *why* behind changes rather than stacking up rigid rules
  • If you're writing ALWAYS or NEVER in all caps, that's a yellow flag — try explaining the reasoning instead
  • Keep the prompt lean — remove things that aren't pulling their weight
  • Read transcripts, not just outputs — if the skill makes Claude waste time on unproductive steps, trim those parts

Quality Audit

When reviewing a skill, check against this rubric:

Structure (Pass/Fail)

  • Folder is kebab-case
  • SKILL.md exists (exact case)
  • YAML frontmatter has --- delimiters
  • name field is kebab-case, no spaces, no capitals
  • No XML tags in frontmatter
  • No README.md in skill folder

Description Quality (Score 1-5)

  • Does it say WHAT the skill does?
  • Does it say WHEN to use it with specific triggers?
  • Does it mention relevant file types?
  • Is it under 1024 characters?
  • Would Claude correctly identify when to load it?

Instruction Quality (Score 1-5)

  • Are instructions specific and actionable?
  • Are examples included?
  • Is error handling covered?
  • Is progressive disclosure used (references/ for depth)?
  • Is the SKILL.md under 500 lines?

Overall Assessment

Provide: strengths, weaknesses, specific recommendations, and a revised description if needed.


Skill Patterns Reference

When the skill's use case matches one of these patterns, consult references/patterns.md for detailed templates:

PatternUse When
Sequential WorkflowMulti-step process in specific order
Multi-MCP CoordinationWorkflow spans multiple services
Iterative RefinementOutput quality improves with iteration
Context-Aware SelectionSame outcome, different tools by context
Domain IntelligenceSpecialized knowledge beyond tool access

Read references/patterns.md for full templates of each pattern.


Communication Style

Adapt to the user's technical level:

  • If they're clearly technical, use precise terminology freely
  • If they seem newer to this, briefly explain terms like "frontmatter", "kebab-case", "progressive disclosure"
  • Always have something cooking — when the user provides info, start drafting immediately rather than asking more questions
  • Show outputs early: "Here's a first draft — take a look and tell me what to adjust"

Final Packaging

When the skill is ready, always:

  1. Run python scripts/validate_skill.py /path/to/skill-folder for final validation
  2. Run python scripts/package_skill.py /path/to/skill-folder to create the uploadable zip
  3. Present the packaged file to the user
  4. Give them clear next steps: "Upload this via Settings > Capabilities > Skills in Claude.ai"

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

32.41%
按下载量换算26

Codex

31.49%
按下载量换算25

Cursor

17.24%
按下载量换算14

Gemini CLI

9.39%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills