Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

configure-readmeconfigure README 搜索

Agent Skill

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

总安装

1,346

周安装

55

GitHub Stars

28

下载量

431
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于辅助生成和优化项目的 README 文档,提升说明文的可读性与完整性。

  • 适合新项目初始化或现有文档的结构化整理、术语统一和链接校验。
  • 可结合项目实际内容生成章节框架,但不替代人工审核关键事实。
  • 涉及对外发布文案时应控制语气,避免夸大功能或误导性描述。
  • configure-readme 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

When to Use This Skill

Use this skill when...Use another approach when...
Creating a README.md for a new project from scratchEditing specific README content — use direct file editing
Auditing an existing README for missing sections (badges, install, structure)Writing detailed API documentation — use /configure:docs
Standardizing README format across multiple projectsCreating GitHub Pages documentation site — use /configure:github-pages
Adding shields.io badges, tech stack table, or project structure sectionWriting a changelog — use release-please automation via conventional commits
Ensuring README includes correct install/build/test commands for the detected stackOnly need to update a single section — edit the file directly

Context

  • Project root:!pwd
  • Project name:!basename $(pwd)
  • README exists:!find. -maxdepth 1 -name 'README.md'
  • Package files:!find. -maxdepth 1 \(-name 'package.json' -o -name 'pyproject.toml' -o -name 'Cargo.toml' -o -name 'go.mod' \)
  • Git remotes:!git remote -v
  • License file:!find. -maxdepth 1 -name 'LICENSE*'
  • Assets directory:!find. -maxdepth 2 -type d \(-name 'assets' -o -name 'public' -o -name 'images' \)
  • Logo files:!find. -maxdepth 3 -type f \(-name 'logo*' -o -name 'icon*' \)

Parameters

Parse from command arguments:

  • --check-only: Report README compliance status without modifications (CI/CD mode)
  • --fix: Apply fixes automatically without prompting
  • --style <minimal|standard|detailed>: README detail level (default: standard)
  • --badges <shields|custom>: Badge style preference (default: shields)
  • --no-logo: Skip logo section even if assets exist

Style Levels:

  • minimal: Title, description, badges, basic install/usage
  • standard: Logo, badges, features, tech stack, getting started, license (recommended)
  • detailed: All of standard plus: architecture diagram, API reference, contributing guide, changelog link

Execution

Execute this README configuration workflow:

Step 1: Detect project metadata

Read project metadata from the detected package files:

  1. package.json (JavaScript/TypeScript): Extract name, description, version, license, repository, keywords
  2. pyproject.toml (Python): Extract project name, description, version, license, keywords, URLs
  3. Cargo.toml (Rust): Extract package name, description, version, license, repository, keywords
  4. go.mod (Go): Extract module path for owner/repo

Fallback detection when no package file matches:

  • Project name: directory name
  • Description: first line of existing README or ask user
  • Repository: git remote URL
  • License: LICENSE file content

For detailed package file format examples, see REFERENCE.md.

Step 2: Analyze current README state

Check existing README.md for these sections:

  • Logo/icon present (centered image at top)
  • Project title (h1)
  • Description/tagline
  • Badges row (license, version, CI status, coverage)
  • Features section
  • Tech Stack section
  • Prerequisites section
  • Installation instructions
  • Usage examples
  • Project structure
  • Contributing guidelines
  • License section

Discover logo/icon assets in common locations:

  • assets/logo.png, assets/icon.png, assets/logo.svg
  • public/logo.png, public/icon.svg
  • images/logo.png, docs/assets/logo.png
  • .github/logo.png, .github/images/logo.png

Step 3: Generate compliance report

Print a section-by-section compliance report showing PASS/MISSING/PARTIAL status for each README section. Include content quality checks (code examples, command correctness, link validity).

If --check-only is set, stop here.

For the compliance report format, see REFERENCE.md.

Step 4: Apply configuration (if --fix or user confirms)

Generate README.md following the standard template structure:

  1. Centered logo section (if assets exist and --no-logo not set)
  2. Project title and tagline
  3. Badge row with shields.io URLs
  4. Features section with key highlights
  5. Tech Stack table
  6. Getting Started (prerequisites, installation, usage)
  7. Project Structure
  8. Development commands
  9. Contributing section
  10. License section

For the full README template and badge URL patterns, see REFERENCE.md.

Step 5: Handle logo and assets

If no logo exists but user wants one:

  1. Check for existing assets in standard locations
  2. Suggest creating a simple text-based placeholder or using emoji heading
  3. Create assets directory if needed: mkdir -p assets
  4. Suggest tools: Shields.io for custom badges, Simple Icons for technology icons

Step 6: Detect project commands

Auto-detect project commands based on package manager/build tool:

Package ManagerInstallRunTestBuild
npm/bun (package.json)Read scripts from package.jsonnpm run devnpm testnpm run build
uv/poetry (pyproject.toml)uv sync / poetry installuv run python -m pkguv run pytest-
cargo (Cargo.toml)cargo buildcargo runcargo testcargo build --release
go (go.mod)go buildgo run.go test./...go build

Step 7: Generate project structure

Run tree -L 2 -I 'node_modules|target|__pycache__|.git|dist|build' --dirsfirst to generate accurate project structure. Skip common generated directories (node_modules, vendor, target, dist, build, pycache,.pytest_cache,.git,.venv, venv).

Step 8: Update standards tracking

Update .project-standards.yaml:

components:
  readme: "2025.1"
  readme_style: "[minimal|standard|detailed]"
  readme_has_logo: true|false
  readme_badges: ["license", "stars", "ci", "version"]

Step 9: Validate generated README

After generating README, validate:

  1. Check for markdown syntax errors
  2. Verify all links are accessible (warn only)
  3. Ensure shields.io URLs are correctly formatted
  4. Verify logo/image paths exist

Step 10: Report configuration results

Print a summary of changes made, the README location, and recommended next steps (customize feature descriptions, add logo, run other configure commands).

For the results report format, see REFERENCE.md.

When --style detailed is specified, also include architecture section with mermaid diagram, API reference link, and changelog link. For detailed style templates, see REFERENCE.md.

Output

Provide:

  1. Compliance report with section-by-section status
  2. Generated or updated README.md content
  3. List of detected project metadata
  4. Suggestions for improvement (logo, more features, etc.)

Agentic Optimizations

ContextCommand
Quick compliance check/configure:readme --check-only
Auto-fix all issues/configure:readme --fix
Minimal README/configure:readme --fix --style minimal
Full detailed README/configure:readme --fix --style detailed
Generate project tree`tree -L 2 -I 'node_modules\target\__pycache__\.git\dist\build' --dirsfirst`
Check README exists`test -f README.md && echo "EXISTS" \\echo "MISSING"`

See Also

  • /configure:docs - Configure code documentation standards
  • /configure:github-pages - Set up documentation hosting
  • /configure:all - Run all compliance checks
  • readme-standards skill for README templates and examples

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.64%
按下载量换算154

Claude

29.94%
按下载量换算129

Cursor

17.25%
按下载量换算74

Gemini CLI

8.74%
按下载量换算38

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/laurigates/claude-plugins --skill configure-readme 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills