Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

crafting-readme-filescrafting README files 搜索

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

648

周安装

27

GitHub Stars

157

下载量

216
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dicklesworthstone/meta_skill --skill crafting-readme-files

简介

crafting-readme-files 提供 GitHub README 写作指南,强调价值前置与示例驱动。

  • 适用于提升 README 转化率,使其在 60 秒内吸引扫描者转为使用者。
  • 指出常见失败原因:价值隐藏、功能描述替代问题解决、缺乏 curl 一链式入口。
  • 建议包含快速开始、对比优势与逃生通道,降低用户入门门槛。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Crafting README.md Files for GitHub

Core insight: A README is a sales pitch, onboarding guide, and reference manual compressed into one document. Lead with value, prove with examples, document with precision.

Why This Matters

Most READMEs fail because they:

  • Bury the value proposition under installation steps
  • Explain what the tool IS instead of what problem it SOLVES
  • Lack concrete examples (abstract descriptions don't sell)
  • Miss the "quick escape hatch" for impatient users (curl one-liner)
  • Don't show how it compares to alternatives

Great READMEs convert scanners into users in under 60 seconds.


THE EXACT PROMPT — README Revision

Read the current README.md and dramatically revise it following this structure:

1. Hero section: illustration + badges + one-liner description + curl install
2. TL;DR: "The Problem" + "The Solution" + "Why Use X?" feature table
3. Quick example showing the tool in action (5-10 commands)
4. Design philosophy (3-5 principles with explanations)
5. Comparison table vs alternatives
6. Installation (curl one-liner, package managers, from source)
7. Quick start (numbered steps, copy-paste ready)
8. Command reference (every command with examples)
9. Configuration (full config file example with comments)
10. Architecture diagram (ASCII art showing data flow)
11. Troubleshooting (common errors with fixes)
12. Limitations (honest about what it doesn't do)
13. FAQ (anticipate user questions)

Make it comprehensive but scannable. Use tables for comparisons.
Show, don't tell. Every claim should have a concrete example.
Use ultrathink.

Golden Structure

1. HERO SECTION (above the fold)
   ├─ Illustration/logo (centered)
   ├─ Badges (CI, license, version)
   ├─ One-liner description
   └─ Quick install (curl | bash)

2. TL;DR (sell the value)
   ├─ The Problem (pain point)
   ├─ The Solution (what this does)
   └─ Why Use X? (feature table)

3. QUICK EXAMPLE (prove it works)
   └─ 5-10 commands showing core workflow

4. REFERENCE SECTIONS
   ├─ Design Philosophy
   ├─ Comparison vs Alternatives
   ├─ Installation (multiple paths)
   ├─ Quick Start
   ├─ Commands
   ├─ Configuration
   └─ Architecture

5. SUPPORT SECTIONS
   ├─ Troubleshooting
   ├─ Limitations
   ├─ FAQ
   ├─ Contributing
   └─ License

Section Templates

Hero Section

# tool-name

<div align="center">
  <img src="illustration.webp" alt="tool-name - One-line description">
</div>

<div align="center">

[![CI](https://github.com/user/repo/actions/workflows/ci.yml/badge.svg)](https://github.com/user/repo/actions/workflows/ci.yml)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

</div>

One-sentence description of what this tool does and its key differentiator.

<div align="center">
<h3>Quick Install</h3>

curl -fsSL https://raw.githubusercontent.com/user/repo/main/install.sh | bash


**Or build from source:**

cargo install --git https://github.com/user/repo.git


### TL;DR Section

TL;DR

The Problem: [Specific pain point in 1-2 sentences. Be concrete.]

The Solution: [What this tool does to solve it. Action-oriented.]

Why Use tool-name?

FeatureWhat It Does
Feature 1Concrete benefit, not abstract capability
Feature 2Another specific value proposition
Feature 3Quantify when possible (e.g., "<10ms search")

### Quick Example

Quick Example

# Initialize (one-time setup)
$ tool init

# Core operation
$ tool do-thing --flag value

# See results
$ tool show results

# The killer feature
$ tool magic --auto
### Comparison Table

How tool-name Compares

Featuretool-nameAlternative AAlternative BManual
Feature 1✅ Full support⚠️ Partial❌ None
Feature 2✅ <10ms🐢 ~500ms✅ FastN/A
Setup time✅ ~10 seconds❌ Hours⚠️ Minutes

When to use tool-name:

  • Bullet point of ideal use case
  • Another use case

When tool-name might not be ideal:

  • Honest limitation
  • Another case where alternatives win

### Installation Section

Installation

Quick Install (Recommended)

curl -fsSL https://raw.githubusercontent.com/user/repo/main/install.sh | bash

With options:

# Auto-update PATH
curl -fsSL https://... | bash -s -- --easy-mode

# Specific version
curl -fsSL https://... | bash -s -- --version v1.0.0

# System-wide (requires sudo)
curl -fsSL https://... | sudo bash -s -- --system

Package Managers

# macOS/Linux (Homebrew)
brew install user/tap/tool

# Windows (Scoop)
scoop bucket add user https://github.com/user/scoop-bucket
scoop install tool

From Source

git clone https://github.com/user/repo.git
cd repo
cargo build --release
cp target/release/tool ~/.local/bin/
### Command Reference Pattern

Commands

Global flags available on all commands:

--verbose       # Increase logging
--quiet         # Suppress non-error output
--format json   # Machine-readable output

tool command

Brief description of what this command does.

tool command                    # Basic usage
tool command --flag value       # With options
tool command --help             # See all options
### Architecture Diagram

Architecture


┌─────────────────────────────────────────────────────────────────┐ │ Input Layer │ │ (files, API calls, user commands) │ └─────────────────────────────────────────────────────────────────┘ │ ▼ ┌─────────────────────────────────────────────────────────────────┐ │ Processing Layer │ │ Component A → Component B → Component C │ └─────────────────────────────────────────────────────────────────┘ │ ┌───────────────────┼───────────────────┐ ▼ ▼ ▼ ┌──────────────────┐ ┌──────────────────┐ ┌──────────────────┐ │ Storage A │ │ Storage B │ │ Output │ │ - Detail 1 │ │ - Detail 1 │ │ - Format 1 │ │ - Detail 2 │ │ - Detail 2 │ │ - Format 2 │ └──────────────────┘ └──────────────────┘ └──────────────────┘

### Troubleshooting Pattern

Troubleshooting

"Error message here"

# Solution
command to fix it

"Another common error"

Explanation of why this happens and how to fix it.

# Check the state
diagnostic command

# Fix it
fix command
### Limitations Section

Limitations

What tool-name Doesn't Do (Yet)

  • Limitation 1: Brief explanation, workaround if any
  • Limitation 2: Why this is out of scope

Known Limitations

CapabilityCurrent StatePlanned
Feature X❌ Not supportedv2.0
Feature Y⚠️ PartialImproving

### FAQ Pattern

FAQ

Why "tool-name"?

Brief etymology or meaning.

Is my data safe?

Yes/No with explanation. Privacy guarantees.

Does it work with X?

Compatibility information.

How do I [common task]?

# Command to accomplish it
tool do-thing
---

## Critical Rules

1. **Lead with value, not installation** — TL;DR before Quick Start
2. **Curl one-liner above the fold** — Impatient users escape hatch
3. **Every feature claim needs an example** — Show, don't tell
4. **Comparison tables beat prose** — Scannable > readable
5. **Be honest about limitations** — Builds trust, saves support time
6. **Multiple installation paths** — curl, package manager, source
7. **Architecture diagrams for complex tools** — ASCII art is fine
8. **Troubleshooting section is mandatory** — Top 5 errors with fixes

---

## Anti-Patterns (Avoid)

| Anti-Pattern | Why Bad | Fix |
|--------------|---------|-----|
| Installation-first README | Buries value proposition | Lead with TL;DR |
| "This is a tool that..." | Passive, abstract | "Solves X by doing Y" |
| Screenshot-heavy | Breaks, doesn't copy-paste | ASCII + code blocks |
| No examples | Abstract claims don't sell | Every feature → example |
| Hiding limitations | Users discover painfully | Honest Limitations section |
| Single install method | Alienates users | curl + pkg manager + source |
| No troubleshooting | Support burden | Top 5 errors with fixes |
| Outdated badges | Looks abandoned | Remove or keep current |

---

## AGENTS.md Blurb Template

For CLI tools, include a condensed reference block:

tool — Brief Description

One-line description of what it does and key differentiator.

Core Workflow

# 1. Initialize
tool init

# 2. Main operation
tool do-thing

# 3. View results
tool show

Key Flags

--flag1    # Description
--flag2    # Description

Storage

- Location 1: path/to/thing
- Location 2: path/to/other

Notes

- Important caveat 1
- Important caveat 2
This provides AI agents with scannable reference without loading full README.

---

## Checklist

Before publishing:

□ Hero section with illustration + badges + one-liner + curl install □ TL;DR with Problem/Solution/Feature table □ Quick example (5-10 commands) □ At least 3 installation methods documented □ Every command has usage examples □ Architecture diagram for complex tools □ Comparison table vs at least 2 alternatives □ Troubleshooting section (top 5 errors) □ Honest Limitations section □ FAQ with 5+ questions □ All code blocks are copy-paste ready □ No broken links or badges □ Consistent terminology throughout □ Grammar/spelling checked

---

## Badge Reference

Common badges for GitHub READMEs:

CI Status

![CI](https://github.com/USER/REPO/actions/workflows/ci.yml)

License

![License: MIT](https://opensource.org/licenses/MIT) ![License: Apache 2.0](https://opensource.org/licenses/Apache-2.0)

Version/Release

![GitHub release](https://github.com/USER/REPO/releases)

Downloads

![Downloads](https://github.com/USER/REPO/releases)

Crates.io (Rust)

![Crates.io](https://crates.io/crates/CRATE)

npm (JavaScript)

![npm](https://www.npmjs.com/package/PACKAGE)

PyPI (Python)

![PyPI](https://pypi.org/project/PACKAGE/)


---

## Real-World Examples

Study these READMEs for patterns:

| Project | Notable Pattern |
| --- | --- |
| [xf](https://github.com/Dicklesworthstone/xf) | Comprehensive CLI docs, search deep-dives |
| [ripgrep](https://github.com/BurntSushi/ripgrep) | Benchmarks, comparison tables |
| [bat](https://github.com/sharkdp/bat) | GIF demos, feature highlights |
| [exa](https://github.com/ogham/exa) | Screenshot galleries, color themes |
| [starship](https://github.com/starship/starship) | Preset configurations, installation matrix |
| [jq](https://github.com/jqlang/jq) | Tutorial progression, manual links |

---

## Advanced: Progressive Disclosure for Long READMEs

For READMEs exceeding 1000 lines, use collapsible sections:

<details> <summary><strong>Advanced Configuration</strong></summary>

Content that most users don't need on first read...

</details>


Or link to separate docs:

Documentation


Keep the README itself focused on the 80% use case.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.67%
按下载量换算84

Claude

29.43%
按下载量换算64

Cursor

19.88%
按下载量换算43

Gemini CLI

9.04%
按下载量换算20

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills