Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计未展示

skill-writer技能作家

Agent Skill

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

总安装

324

周安装

13

GitHub Stars

公开资料未说明

下载量

105
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add kehwar/experiments --skill "skill-writer"

简介

skill-writer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于信息搜索、资料筛选和线索整理等研究类任务。
  • 通过 npx skills add kehwar/experiments --skill "skill-writer" 安装使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 可结合来源仓库和原始 README 继续核验具体用法。

SKILL.md

name
skill-writer
description
Expert guide for creating, structuring, and documenting Agent Skills following the official specification. Use when you need to create a new Agent Skill, understand the Agent Skills format, or improve existing skill documentation.
license
MIT
compatibility
All platforms that support Agent Skills specification
metadata
author
kehwar
version
1.0
category
development

Skill Writer Guide

Overview

This skill provides comprehensive guidance for creating Agent Skills that follow the official Agent Skills specification. Agent Skills are a simple, open format for giving agents new capabilities and expertise through folders of instructions, scripts, and resources.

What are Agent Skills?

Agent Skills are:

  • Portable: Work across different AI platforms (Claude, GPT, Copilot, etc.)
  • Filesystem-based: Simple directory structure with markdown files
  • Modular: Each skill is self-contained and reusable
  • Open format: No vendor lock-in, community-driven standard

Creating a New Agent Skill

1. Directory Structure

Every Agent Skill lives in its own directory:

skill-name/
├── SKILL.md           # Required: Main skill file with metadata and instructions
├── scripts/           # Optional: Helper scripts or tools
├── references/        # Optional: Supporting documentation
└── assets/            # Optional: Images, files, or other resources

2. SKILL.md Format

The SKILL.md file is the heart of every skill. It has two parts:

Part 1: YAML Frontmatter (Required)

At the top of SKILL.md, include YAML frontmatter with metadata:

---
name: skill-name                    # Required: lowercase, max 64 chars, matches folder name
description: Brief description      # Required: max 1024 chars, explain what and when
license: MIT                        # Optional: license identifier or file path
compatibility: Linux, Python 3.10+  # Optional: system requirements
metadata:                           # Optional: custom key-value pairs
  author: your-name
  version: "1.0"
  category: development
allowed-tools: tool1 tool2         # Optional/Experimental: approved tools
---

Required Fields:

  • name: Skill identifier (lowercase, hyphens allowed, no consecutive hyphens)
  • description: Clear explanation of:

- What the skill does - When to use it - Key capabilities

Optional Fields:

  • license: License type (e.g., MIT, Apache-2.0) or path to LICENSE file
  • compatibility: System requirements, dependencies
  • metadata: Any additional info (author, version, tags, etc.)
  • allowed-tools: List of tools the skill can use (experimental feature)

Part 2: Markdown Body (Instructions)

After the frontmatter, write clear instructions in markdown format:

# Skill Name Guide

## Overview
Brief introduction to the skill's purpose and capabilities.

## Quick Start
Simple example to get started quickly.

## Main Instructions
Step-by-step guidance organized by task or feature.

## Common Tasks
Frequent use cases with examples.

## Examples
Real-world examples with input/output.

## Troubleshooting
Common issues and solutions.

## Reference
Additional details, edge cases, advanced usage.

3. Writing Effective Instructions

Best Practices:

  1. Be Clear and Specific

- Use simple, direct language - Provide step-by-step instructions - Include code examples where relevant

  1. Structure for Scannability

- Use headers to organize content - Break long sections into subsections - Use lists, tables, and code blocks

  1. Include Examples

- Show both input and output - Cover common use cases - Demonstrate edge cases

  1. Keep it Focused

- One skill = one capability domain - Aim for under 5000 tokens - Link to references for details

  1. Make it Actionable

- Provide complete, working examples - Include error handling patterns - Show command-line usage when relevant

4. Optional Subdirectories

scripts/

  • Place executable scripts, tools, or programs
  • Include installation instructions in SKILL.md
  • Document each script's purpose and usage

references/

  • Additional documentation
  • API references
  • Detailed guides
  • Link from SKILL.md with relative paths

assets/

  • Images, diagrams, or visual aids
  • Sample files or templates
  • Reference with relative paths from skill root

Complete Example

Here's a minimal but complete skill:

hello-world/
└── SKILL.md

hello-world/SKILL.md:

---
name: hello-world
description: Simple example skill that demonstrates the basic structure of an Agent Skill. Use this as a template when creating new skills.
license: MIT
metadata:
  author: example
  version: "1.0"
---

# Hello World Skill

## Overview

This is a minimal example skill that demonstrates the Agent Skills format.

## Instructions

To use this skill:

1. Create a file called `hello.txt`
2. Write "Hello, World!" to the file
3. Display the contents

## Example

echo "Hello, World!" > hello.txt cat hello.txt


Expected output:

Hello, World!


## Next Steps

Use this template to create more complex skills with additional features.

Skill Creation Checklist

When creating a new skill, verify:

  • [ ] Skill name is lowercase with hyphens only
  • [ ] Folder name matches the name field in frontmatter
  • [ ] YAML frontmatter is valid and complete
  • [ ] name field is present (required)
  • [ ] description field is present and clear (required)
  • [ ] Description explains WHAT the skill does
  • [ ] Description explains WHEN to use it
  • [ ] Description is under 1024 characters
  • [ ] Instructions are clear and actionable
  • [ ] Examples are provided for main use cases
  • [ ] Code examples are complete and tested
  • [ ] Relative paths are used for internal references
  • [ ] Total content is reasonable size (aim for <5000 tokens)
  • [ ] All optional files (scripts, references, assets) are documented

Common Patterns

Task-Oriented Skills

Focus on accomplishing specific tasks:

  • File processing (PDF, Excel, images)
  • System administration
  • Testing and validation
  • Code generation

Domain Expertise Skills

Provide specialized knowledge:

  • Programming languages
  • Frameworks and libraries
  • APIs and protocols
  • Best practices and patterns

Workflow Skills

Guide multi-step processes:

  • Project setup
  • Deployment procedures
  • Review checklists
  • Documentation workflows

Tips for Success

  1. Start Simple: Begin with core functionality, add advanced features later
  2. Test Instructions: Verify examples work as documented
  3. Think Like a User: What would someone need to know to use this skill?
  4. Iterate: Skills can evolve—start with v1.0 and improve over time
  5. Be Consistent: Follow conventions from existing skills in your domain
  6. Document Assumptions: State prerequisites and dependencies clearly
  7. Handle Errors: Include troubleshooting for common issues

Naming Conventions

  • Use lowercase letters
  • Separate words with hyphens (kebab-case)
  • Be descriptive but concise
  • Avoid abbreviations unless widely known
  • Match folder name to skill name

Good names:

  • pdf-processing
  • web-testing
  • api-documentation
  • code-review

Avoid:

  • PDFProcessing (uppercase)
  • pdf_processing (underscores)
  • pdfproc (unclear abbreviation)
  • skill-1 (not descriptive)

Validation

Before finalizing a skill:

  1. Check YAML Syntax

- Use a YAML validator - Ensure proper indentation - Verify no syntax errors

  1. Test Instructions

- Follow your own instructions step-by-step - Verify all examples work - Check all file paths

  1. Review Content

- Proofread for clarity - Remove unnecessary complexity - Ensure completeness

  1. Check Structure

- SKILL.md is at skill root - All referenced files exist - Paths are relative from skill root

Resources

  • Specification: https://agentskills.io/specification
  • Documentation: https://agentskills.io
  • Examples: https://github.com/anthropics/skills
  • Community: https://github.com/agentskills/agentskills
  • Template: See references/template.md for a ready-to-use skill template

Advanced Features

Multi-file Skills

For complex skills, organize content across multiple files:

advanced-skill/
├── SKILL.md           # Main instructions and quick start
├── references/
│   ├── api.md        # Detailed API documentation
│   ├── examples.md   # Extended examples
│   └── troubleshoot.md
├── scripts/
│   ├── setup.sh      # Installation script
│   └── helper.py     # Utility functions
└── assets/
    └── diagram.png   # Visual aids

Reference from SKILL.md:

For detailed API documentation, see [references/api.md](references/api.md).

Using Scripts

When including scripts:

  1. Document clearly in SKILL.md
  2. Make executable (chmod +x script.sh)
  3. Include shebang (#!/bin/bash or #!/usr/bin/env python3)
  4. Add comments explaining key steps
  5. Handle errors gracefully

Example script reference:

## Installation

Run the setup script:

chmod +x scripts/setup.sh ./scripts/setup.sh


The script will:
1. Check system requirements
2. Install dependencies
3. Configure the environment

Tool Restrictions

Use the allowed-tools field (experimental) to specify approved tools:

---
name: secure-skill
description: Skill with restricted tool access
allowed-tools: pdftotext qpdf
---

This helps ensure skills only use vetted, secure tools.

Conclusion

Agent Skills provide a simple, powerful way to give AI agents specialized capabilities. By following this guide and the official specification, you can create high-quality skills that work across platforms and help agents perform better at specific tasks.

Start simple, iterate based on feedback, and share your skills with the community!

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

27.09%
按下载量换算28

windsurf

22.75%
按下载量换算24

trae

16.33%
按下载量换算17

OpenCode

12.95%
按下载量换算14

Codex

8.8%
按下载量换算9

Antigravity

3.79%
按下载量换算4

安全审计

暂无安全审计结果可展示。

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add kehwar/experiments --skill "skill-writer" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills