원클릭으로
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.