Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

readmeREADME 控制

Agent Skill

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

总安装

1,416

周安装

59

GitHub Stars

25

下载量

472
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/oimiragieo/agent-studio --skill readme

简介

readme 用于文档整理与 Markdown 内容改写,适合提炼结构和统一术语。

  • 适用于 README、说明文和外宣文案的优化处理。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用。
  • 应保留已有事实,避免将未确认信息写成确定结论。
  • 对外文案需注意语气控制,防止过度营销。readme 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Readme Skill

When to Use

Use this skill when:

  • Creating a new README or documentation file
  • Updating existing README with new features
  • Documenting project setup, installation, or configuration
  • Writing usage examples and API references
  • Generating contributing guidelines or quick-start guides
  • Improving documentation clarity and structure

Core Workflow

Step 1: Gather Project Information

Analyze the project to understand:

  1. Project Purpose: What problem does it solve?
  2. Target Audience: Who are the users (developers, users, contributors)?
  3. Key Features: What makes this project special?
  4. Technical Stack: Languages, frameworks, dependencies
  5. Project Structure: How is code organized?

Step 2: Create README Structure

Use this standard structure:

# Project Name

Brief description (1-2 sentences)

## Features

- Feature 1
- Feature 2
- Feature 3

## Installation

[Setup instructions]

## Quick Start

[Basic usage example]

## Documentation

[Link to detailed docs]

## API Reference

[Key endpoints/functions]

## Examples

[Working examples]

## Configuration

[Setup options]

## Troubleshooting

[Common issues and solutions]

## Contributing

[How to contribute]

## License

[License information]

Step 3: Write Clear Content

  • Be specific: Use concrete examples, not vague descriptions
  • Show, don't tell: Include code examples and screenshots
  • Progressive disclosure: Start simple, add complexity gradually
  • Organize logically: Group related information
  • Use formatting: Headers, lists, code blocks for readability

Step 4: Add Examples

Include practical, working examples:

  • Installation examples
  • Basic usage snippets
  • Complex feature demonstrations
  • Common use cases
  • Copy-paste ready code

Step 5: Verify Quality

Check before completing:

  • Clear project purpose in first paragraph
  • Installation instructions are complete
  • Examples are runnable
  • Table of contents matches sections
  • All links work
  • Formatting is consistent
  • No typos or grammar errors

README Components Reference

Project Title and Description

# Project Name

One-liner explaining what this project does.

Long paragraph (2-3 sentences) describing problem solved and approach.

Features Section

## Features

- ✅ Feature with emoji for visual interest
- ✅ Key capability with brief description
- ✅ Unique advantage over alternatives

Installation

## Installation

### Requirements

- Node.js 18+
- pnpm 8+

### Steps

\`\`\`bash
pnpm install project-name
\`\`\`

Quick Start

Keep this minimal (5-10 lines of code max):

## Quick Start

\`\`\`javascript
import { feature } from 'project-name';

const result = feature({ option: 'value' });
console.log(result);
\`\`\`

Examples

Make examples realistic and copy-paste ready:

## Examples

### Basic Usage

\`\`\`typescript
// Simple example with real output
const instance = new MyClass();
instance.doSomething(); // Output: expected result
\`\`\`

### Advanced Configuration

\`\`\`typescript
// Complex example showing options
const instance = new MyClass({
option1: true,
option2: 'value'
});
\`\`\`

Best Practices

  1. Lead with value: First paragraph should answer "why should I use this?"
  2. Show working examples: Code examples should be runnable
  3. Keep installation simple: Complex setup gets a dedicated guide
  4. Document dependencies: List what's required upfront
  5. Include screenshots: Visual examples for UI projects
  6. Write for skimmers: Use headers so people can scan content
  7. Link to detailed docs: README is overview, link to full documentation
  8. Keep it current: Update README when adding features
  9. Be honest about limitations: What's not covered or not supported
  10. Include contributing guidelines: How to report issues or submit PRs

Anti-Patterns

PatternProblemFix
Wall of textImpossible to scanUse headers and lists
Missing setupReaders can't installInclude step-by-step instructions
No examplesUnclear how to useAdd working code examples
Outdated infoMisleads usersUpdate with releases
Too detailedOverwhelmingLink to full docs instead
No table of contentsHard to navigateAdd section links at top
Broken linksPoor user experienceTest all external links
Marketing fluffLacks substanceFocus on what it does, not hype

Iron Laws

  1. ALWAYS lead with the value proposition — the first paragraph must answer "what problem does this solve?" before any installation or setup instructions.
  2. NEVER write a Quick Start section longer than 10 lines — if setup requires more, link to a detailed guide rather than overwhelming the first-time reader.
  3. ALWAYS include working, copy-paste-ready code examples — non-runnable pseudocode examples are worse than no examples because they waste the reader's time.
  4. NEVER let a README become stale after a feature release — outdated installation commands and broken examples destroy user trust immediately.
  5. ALWAYS test all external links and code examples before considering the README complete — dead links and broken examples are the most common README failure mode.

Anti-Patterns

Anti-PatternWhy It FailsCorrect Approach
Starting with a long feature list before the descriptionReaders don't know what the project is, so features are meaninglessLead with a 1-2 sentence value proposition before listing features
Using pseudocode or placeholder examplesForces readers to infer the real API; causes frustration and abandonmentShow actual runnable code with real imports, function names, and expected output
Putting a 20-step installation guide in Quick StartOverwhelming setup drives users away; contradicts "quick" startQuick Start must be 1-3 commands; link detailed setup to a separate guide
Writing marketing copy instead of technical factsVague statements like "blazing fast" give no actionable informationUse specific claims with data: "reduces build time by 40% (measured on 10k LOC)"
Not updating README when features changeOutdated commands fail silently; users blame the project, not the docsTreat README as code: update it in the same PR as every feature change

Integration Points

Related Skills:

  • doc-generator - Automated documentation from code
  • writing-skills - Writing quality guidelines
  • technical-writer - Professional documentation agent

Related Agents:

  • technical-writer - Uses this skill for documentation
  • developer - Writes README for new projects

Memory Protocol (MANDATORY)

Before starting: Read .claude/context/memory/learnings.md

After completing:

  • New pattern → .claude/context/memory/learnings.md
  • Issue found → .claude/context/memory/issues.md
  • Decision made → .claude/context/memory/decisions.md
ASSUME INTERRUPTION: If it's not in memory, it didn't happen.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.04%
按下载量换算175

Claude

30.16%
按下载量换算142

Cursor

17.03%
按下载量换算80

Gemini CLI

8.65%
按下载量换算41

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills