Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

readme-standardsREADME standards 搜索

Agent Skill

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

总安装

1,397

周安装

60

GitHub Stars

28

下载量

490
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill readme-standards

简介

用于辅助文档、README、Markdown 和内容稿件的整理与改写。

  • 适合提炼结构、补齐章节、统一术语或检查链接。readme-standards 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用时需保留项目已有事实,避免将未确认信息写成确定结论。
  • 涉及对外文案时,应控制语气,避免过度营销或夸大能力。
  • 安装前建议确认权限范围和维护状态,以及是否会触发文件读写。

SKILL.md

README Standards (v2025.1)

This skill provides README.md templates and standards for projects.

Overview

A well-structured README is the front door to your project. It should:

  • Immediately communicate what the project does
  • Look professional with proper branding
  • Provide clear getting started instructions
  • Be scannable with good visual hierarchy

Template Styles

Minimal Style

Best for: Libraries, small utilities, internal tools

# project-name

[![License](https://img.shields.io/github/license/OWNER/REPO)](LICENSE)

Brief description of what this project does.

## Installation

npm install package-name


## Usage

import { feature } from 'package-name'; feature();


## License

MIT

Standard Style (Recommended)

Best for: Most projects, applications, services

<div align="center">

<img src="assets/logo.png" alt="Project Logo" width="128">

# Project Name

**A compelling tagline that explains the project's purpose**

[![License](https://img.shields.io/github/license/OWNER/REPO)](LICENSE)
[![GitHub stars](https://img.shields.io/github/stars/OWNER/REPO)](https://github.com/OWNER/REPO/stargazers)
[![CI](https://img.shields.io/github/actions/workflow/status/OWNER/REPO/ci.yml?branch=main)](https://github.com/OWNER/REPO/actions)
[![TypeScript](https://img.shields.io/badge/TypeScript-5.x-blue)]()

</div>

## Features

- **Feature One** - Description of the first key capability
- **Feature Two** - Description of the second key capability
- **Feature Three** - Description of the third key capability
- **Feature Four** - Description of the fourth key capability

## Tech Stack

| Category | Technology |
|----------|------------|
| Runtime | Bun 1.x |
| Framework | Fastify |
| Frontend | React 18, Vite |
| Database | SQLite (Drizzle ORM) |
| Testing | Vitest, Playwright |

## Getting Started

### Prerequisites

- [Bun](https://bun.sh) >= 1.0
- [Node.js](https://nodejs.org) >= 20 (optional)

### Installation

Clone the repository

git clone https://github.com/OWNER/REPO.git cd REPO

Install dependencies

bun install

Start development server

bun run dev


### Development Commands

bun run dev # Start development server bun run build # Build for production bun run test # Run tests bun run lint # Run linter


## Project Structure

project-name/ ├── src/ │ ├── client/ # Frontend React application │ │ ├── components/ # UI components │ │ └── stores/ # State management │ ├── server/ # Backend Fastify server │ │ ├── routes/ # API endpoints │ │ └── services/ # Business logic │ └── shared/ # Shared types and utilities ├── tests/ # Test files ├── docs/ # Documentation └── README.md


## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## License

This project is licensed under the [MIT License](https://github.com/laurigates/claude-plugins/blob/HEAD/configure-plugin/skills/readme-standards/LICENSE).

Detailed Style

Best for: Open source projects, documentation-heavy projects, developer tools

Includes everything from Standard plus:

  • Architecture diagrams (Mermaid)
  • API reference section
  • Detailed configuration options
  • Changelog link
  • Security policy
  • Code of conduct reference

Badge Reference

Repository Status Badges

<!-- License -->
[![License](https://img.shields.io/github/license/OWNER/REPO)](LICENSE)

<!-- Stars -->
[![Stars](https://img.shields.io/github/stars/OWNER/REPO)](https://github.com/OWNER/REPO/stargazers)

<!-- Forks -->
[![Forks](https://img.shields.io/github/forks/OWNER/REPO)](https://github.com/OWNER/REPO/network/members)

<!-- Issues -->
[![Issues](https://img.shields.io/github/issues/OWNER/REPO)](https://github.com/OWNER/REPO/issues)

<!-- Last Commit -->
[![Last Commit](https://img.shields.io/github/last-commit/OWNER/REPO)](https://github.com/OWNER/REPO/commits)

CI/CD Status Badges

<!-- GitHub Actions -->
[![CI](https://img.shields.io/github/actions/workflow/status/OWNER/REPO/ci.yml?branch=main&label=CI)](https://github.com/OWNER/REPO/actions)

<!-- With specific workflow -->
[![Build](https://img.shields.io/github/actions/workflow/status/OWNER/REPO/build.yml?branch=main&label=build)](https://github.com/OWNER/REPO/actions/workflows/build.yml)

<!-- Codecov -->
[![codecov](https://codecov.io/gh/OWNER/REPO/branch/main/graph/badge.svg)](https://codecov.io/gh/OWNER/REPO)

Package Registry Badges

<!-- npm -->
[![npm](https://img.shields.io/npm/v/PACKAGE)](https://www.npmjs.com/package/PACKAGE)
[![npm downloads](https://img.shields.io/npm/dm/PACKAGE)](https://www.npmjs.com/package/PACKAGE)

<!-- PyPI -->
[![PyPI](https://img.shields.io/pypi/v/PACKAGE)](https://pypi.org/project/PACKAGE/)
[![Python Version](https://img.shields.io/pypi/pyversions/PACKAGE)](https://pypi.org/project/PACKAGE/)

<!-- Crates.io -->
[![Crates.io](https://img.shields.io/crates/v/PACKAGE)](https://crates.io/crates/PACKAGE)
[![docs.rs](https://docs.rs/PACKAGE/badge.svg)](https://docs.rs/PACKAGE)

<!-- Go -->
[![Go Reference](https://pkg.go.dev/badge/github.com/OWNER/REPO.svg)](https://pkg.go.dev/github.com/OWNER/REPO)

Technology Badges

<!-- Runtime/Language -->
[![TypeScript](https://img.shields.io/badge/TypeScript-5.x-3178C6?logo=typescript&logoColor=white)]()
[![Python](https://img.shields.io/badge/Python-3.12-3776AB?logo=python&logoColor=white)]()
[![Rust](https://img.shields.io/badge/Rust-1.75+-DEA584?logo=rust&logoColor=white)]()
[![Go](https://img.shields.io/badge/Go-1.22-00ADD8?logo=go&logoColor=white)]()

<!-- Runtime -->
[![Bun](https://img.shields.io/badge/Bun-1.x-f9f1e1?logo=bun&logoColor=black)]()
[![Node.js](https://img.shields.io/badge/Node.js-20+-339933?logo=node.js&logoColor=white)]()
[![Deno](https://img.shields.io/badge/Deno-1.x-000000?logo=deno&logoColor=white)]()

<!-- Frameworks -->
[![React](https://img.shields.io/badge/React-18-61DAFB?logo=react&logoColor=black)]()
[![Vue](https://img.shields.io/badge/Vue-3-4FC08D?logo=vue.js&logoColor=white)]()
[![Fastify](https://img.shields.io/badge/Fastify-4-000000?logo=fastify&logoColor=white)]()
[![FastAPI](https://img.shields.io/badge/FastAPI-0.100+-009688?logo=fastapi&logoColor=white)]()

Logo Guidelines

Recommended Specifications

  • Format: PNG (with transparency) or SVG
  • Size: 128x128px to 512x512px
  • Location: assets/logo.png or assets/icon.svg

Centering Logo

<div align="center">
<img src="assets/logo.png" alt="Project Name" width="128">
</div>

Using Emoji as Placeholder

If no logo exists:

<div align="center">

# 🚀 Project Name

</div>

Common project type emojis:

  • 🚀 - General/deployment tools
  • 🛠️ - Developer tools
  • 📊 - Data/analytics
  • 🔒 - Security
  • 🌐 - Web applications
  • 📱 - Mobile apps
  • 🤖 - AI/ML projects
  • 📦 - Package/library

Section Guidelines

Features Section

Write features as benefits, not just capabilities:

Good:

- **Automatic Scanner Detection** - Discovers eSCL-compatible scanners via mDNS without manual configuration
- **Smart Photo Separation** - Intelligently detects and crops multiple photos from a single scan using edge analysis

Compare — implementation-focused (less effective):

- Uses mDNS for scanner discovery
- Has edge detection algorithm

Tech Stack Section

Use a table for clarity:

| Category | Technology |
|----------|------------|
| Runtime | Bun 1.x |
| Server | Fastify 4 |
| Frontend | React 18, Tailwind CSS |
| Database | SQLite (Drizzle ORM) |

Getting Started Section

Always include:

  1. Prerequisites with version requirements
  2. Clone instructions
  3. Install dependencies command
  4. Run command
  5. (Optional) Environment setup

Project Structure Section

  • Keep it to 2-3 levels deep
  • Only show meaningful directories
  • Add brief comments for non-obvious folders
project/
├── src/           # Source code
├── tests/         # Test files
├── docs/          # Documentation
└── scripts/       # Build/dev scripts

Project Type Specific Templates

CLI Tool

## Installation

With npm

npm install -g tool-name

With Bun

bun install -g tool-name

Or run directly

npx tool-name


## Usage

tool-name <command> [options]

Commands: init Initialize a new project build Build the project deploy Deploy to production

Options: -h, --help Show help -v, --version Show version

Library/Package

## Installation

npm install package-name

or

bun add package-name


## Usage

import { feature } from 'package-name';

const result = feature({ option: 'value' });


## API

### `feature(options)`

Description of the function.

**Parameters:**

- `options.key` (string) - Description

**Returns:** `ReturnType` - Description

Web Application

## Demo

🌐 [Live Demo](https://demo.example.com)

## Screenshots

<div align="center">
<img src="docs/screenshots/dashboard.png" alt="Dashboard" width="600">
</div>

## Environment Variables

Create a `.env` file:

DATABASE_URL=postgresql://... API_KEY=your-api-key

Compliance Checklist

Minimal Style

  • [ ] Title (h1)
  • [ ] Description (1-2 sentences)
  • [ ] License badge
  • [ ] Installation instructions
  • [ ] Basic usage example
  • [ ] License section

Standard Style (all of minimal plus)

  • [ ] Logo or emoji header
  • [ ] 3+ badges (license, stars, CI)
  • [ ] Features section (4+ items)
  • [ ] Tech stack table
  • [ ] Prerequisites
  • [ ] Development commands
  • [ ] Project structure
  • [ ] Contributing mention

Detailed Style (all of standard plus)

  • [ ] Architecture diagram
  • [ ] API reference or link
  • [ ] Configuration options
  • [ ] Changelog link
  • [ ] Security policy mention
  • [ ] Code of conduct mention

Cookiecutter Integration

For creating entire new projects from templates, consider using cookiecutter:

# Install cookiecutter
pip install cookiecutter
# or
uv tool install cookiecutter

# Create project from template
cookiecutter https://github.com/your-org/project-template

Cookiecutter is ideal for:

  • Creating multiple projects with consistent structure
  • Organization-wide project templates
  • Including not just README but entire project scaffolding

The /configure:readme command is better for:

  • Updating existing projects
  • Generating README for projects that already have code
  • Compliance checking of existing READMEs

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.56%
按下载量换算169

Claude

30.22%
按下载量换算148

Cursor

19.45%
按下载量换算95

Gemini CLI

8.88%
按下载量换算44

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills