一键导入
readme-conventions
Conventions and best practices for writing minimalist README.md files
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Conventions and best practices for writing minimalist README.md files
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Cloud Build CI/CD patterns with Terraform-via-Cloud-Build workflows
Podman container operations best practices and patterns
Issue-driven DevOps workflow with pre-flight checks, workspace isolation, and PR lifecycle
Google Cloud Platform operations patterns and best practices
Best practices for creating and reviewing pull requests
Create consistent releases and changelogs using semantic versioning and conventional commits
| name | readme-conventions |
| description | Conventions and best practices for writing minimalist README.md files |
Use this skill when writing or reviewing README.md files. It ensures consistency and quality across projects.
One screen rule -- A README should fit on one screen when possible. If it needs scrolling, you're writing too much.
Copy-paste quickstart -- A new developer should be able to copy-paste the quickstart commands and have the project running in under 2 minutes.
No aspirational content -- Document what exists, not what you plan to build. Use GitHub issues for the roadmap.
Link, don't inline -- If detailed docs exist elsewhere (wiki, /docs, external site), link to them. Don't duplicate content.
Version-aware prerequisites -- Always specify minimum versions for prerequisites when it matters.
# Project Name
One sentence describing what this project does.
## Prerequisites
- [Runtime](https://link) >= version
- [Tool](https://link)
## Quickstart
\```bash
git clone <repo-url>
cd <project>
<install-command>
<run-command>
\```
## License
MIT
## Prerequisites
- [Node.js](https://nodejs.org) >= 18
- [pnpm](https://pnpm.io) (or npm/yarn/bun)
## Quickstart
\```bash
pnpm install
pnpm dev
\```
## Prerequisites
- [Go](https://go.dev) >= 1.21
## Quickstart
\```bash
go mod download
go run .
\```
## Prerequisites
- [Python](https://python.org) >= 3.10
## Quickstart
\```bash
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python main.py
\```
## Prerequisites
- [Rust](https://rustup.rs) (stable)
## Quickstart
\```bash
cargo build
cargo run
\```
When analyzing a project for README generation, examine:
package.json, go.mod, Cargo.toml,
pyproject.toml, requirements.txt, pom.xml, build.gradlemain.*, index.*, app.*, src/Makefile, Dockerfile, docker-compose.yml, scripts/docs/.github/workflows/, .gitlab-ci.yml@git-ops.