plugins/readme-generator/skills/writing-readme/SKILL.md
Generate or update README.md files across three scopes — repo (with project-type detection), account (GitHub user profile), and org (organization profile). Use when creating, updating, or aligning a README to org conventions.
npx skillsauth add qte77/claude-code-utils writing-readmeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Scope: $ARGUMENTS
Generate or update a README.md following scope-specific best practices.
Parse $ARGUMENTS to determine scope:
repo (default) — README.md for a code repository in the current directoryrepo <owner/repo> — README.md for a specific remote repositoryaccount <username> — profile README for a GitHub user (<username>/<username>/README.md)org <orgname> — organization profile README (.github/profile/README.md)If no scope is given, default to repo for the current working directory.
repoaction.yml / action.yaml exists → GitHub Actionpyproject.toml / setup.py → Python librarypackage.json → Node.js/TypeScriptCargo.toml → Rustgo.mod → Gosrc/, lib/, main entry pointsaccountgh api users/<username> — bio, company, location, bloggh repo list <username> --limit 30 --json name,description,stargazerCount,primaryLanguage — repos sorted by stars<username>/<username>/README.md if it existsorggh api orgs/<orgname> — description, blog, locationgh repo list <orgname> --limit 50 --json name,description,isPrivate,stargazerCount,primaryLanguage — public repos.github/profile/README.md or .github/readme.mdSee references/readme-templates.md for the four template snippets and per-scope conventions (GitHub Action, Library/Application, Account, Organization).
Pick the template matching the scope detected in Phase 1 and the project type detected in Phase 2.
LICENSE (never LICENSE.md)development
Analyzes industry websites for design patterns, layout, typography, and content strategies using first-principles thinking. Use when researching website design, UI patterns, or competitive design analysis.
development
Audits website usability for UX optimization, covering forms, navigation, validation, and microcopy. Use when reviewing user experience, task completion flows, or interface friction points.
development
Audits website accessibility for WCAG 2.1 AA compliance, generating findings and code fixes. Use when reviewing accessibility, keyboard navigation, screen reader compatibility, or inclusive design.
development
Writes tests following TDD (using vitest and @testing-library/react) best practices. Use when writing unit tests, integration tests, or component tests in TypeScript.