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

readme-doctorREADME doctor 控制

Agent Skill

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

总安装

329

周安装

14

GitHub Stars

3

下载量

115
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/junghoonghae/skills --skill readme-doctor

简介

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

  • 适合提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。
  • 使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论。
  • 涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。
  • 可结合原始 README 和仓库路径进一步核验具体用法和功能边界。

SKILL.md

README Doctor

Diagnose README problems, analyze reference styles, and prescribe improvements.

Diagnosis Process

Patient (README) Intake → Diagnosis → Prescription → Treatment

Mode 1: Diagnose & Treat (Default)

Diagnose current project's README and prescribe improvements.

Step 1: Intake

# Check current README
[ -f README.md ] && cat README.md

# Gather project info
[ -f package.json ] && cat package.json | jq '{name, description, version}'
[ -f pyproject.toml ] && grep -E "^(name|version|description)" pyproject.toml

Step 2: Diagnosis Checklist

ItemDiagnosis Criteria
TitleIs the project name clear?
DescriptionDoes it explain "what & why" in 1-2 sentences?
InstallationCan anyone follow it?
UsageIs there a runnable example?
ContextIs necessary background provided?
StructureDoes it follow cognitive funneling (broad → specific)?
FreshnessDoes content match current project state?

Step 3: Prescription Output

## Diagnosis Results

### Healthy
- [x] Installation section exists
- [x] License stated

### Needs Attention
- ⚠️ Description too long (3 lines → 1-2 recommended)
- ⚠️ No usage example

### Needs Treatment
- ❌ Title only says "Project" → Change to actual name
- ❌ Install command outdated (npm install → npm i recommended)

## Prescription

### 1. Fix Title
- Current: `# Project`
- Recommended: `# my-awesome-tool`

### 2. Shorten Description
- Current: "This project is... (3 lines)"
- Recommended: "CLI tool for X. One-liner."

### 3. Add Usage Example
\`\`\`bash
my-tool --input file.txt --output result.json
\`\`\`

Mode 2: Reference Analysis

Analyze style from user-provided reference READMEs.

Input Formats

# GitHub URL
"Analyze https://github.com/vercel/next.js/blob/canary/README.md"

# Local file
"Analyze ~/projects/example/README.md"

# Direct paste
"Analyze this README style: [paste content]"

Analysis Items

CategoryWhat to Analyze
StructureSection order, hierarchy
StyleBadges, emojis, code blocks
ToneFormal/casual, concise/verbose
FormatTables, lists, blockquotes usage

Analysis Result Example

{
  "structure": ["Title", "Badges", "Description", "Features", "Install", "Usage", "Contributing", "License"],
  "styles": {
    "badges": true,
    "emoji_in_headers": false,
    "code_blocks": ["bash", "typescript"],
    "images": false,
    "toc": false
  },
  "tone": "professional-concise",
  "avg_section_length": "short"
}

Mode 3: GitHub Pattern Analysis

Extract README patterns from user's GitHub repositories.

# Analyze user repos
gh repo list <username> --limit 10 --json name,url

# Fetch README
gh api /repos/<owner>/<repo>/readme --jq '.content' | base64 -d

Extract common patterns from at least 3 READMEs.

Mode 4: Best Practices Check

Evaluate README quality based on references/best-practices.md.

Required Checks

  • Title + one-liner description
  • Installation method
  • Usage example
  • License

Recommended Checks

  • Badges (npm version, license, etc.)
  • Contributing guide
  • Changelog link

Using References

When user provides a reference:

  1. Analyze Reference → Extract style/structure
  2. Diagnose Current Project → Identify issues
  3. Prescribe → Suggest improvements in reference style
User: "Make my README like Vercel's style. Reference: https://github.com/vercel/next.js"

Process:
1. Fetch Vercel's README
2. Analyze: badges at top, concise sections, professional tone
3. Diagnose current README
4. Prescribe: "Add badges section", "Shorten description to 1 line", "Add Features table"

Templates

Project type templates in templates/ folder:

TemplateUse For
templates/oss.mdOpen source
templates/personal.mdPersonal projects
templates/internal.mdInternal tools
templates/xdg-config.mdConfig files

References

FileContent
references/best-practices.mdREADME best practices
references/section-checklist.mdSection checklist
references/templates.mdLanguage-specific patterns

Usage Examples

# Diagnosis request
"Fix my README"
"Diagnose this README"

# Reference-based
"Make README like this: https://github.com/facebook/react"
"Change to this style: [README content]"

# GitHub pattern
"Create README based on my GitHub style"
"Make README matching my other projects"

# New project
"I need a README for a new CLI tool"

Prerequisites

  • gh CLI (for GitHub pattern analysis)
  • jq (for JSON processing)
  • Python 3.6+ (for running scripts)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.3%
按下载量换算43

Claude

30.15%
按下载量换算35

Cursor

17.74%
按下载量换算20

Gemini CLI

9.33%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills