Creates and maintains thorough, verified project documentation covering setup, architecture, and deployment.

Install

mkdir -p .claude/skills/readme-bitsocialnet && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15434" && unzip -o skill.zip -d .claude/skills/readme-bitsocialnet && rm skill.zip

Installs to .claude/skills/readme-bitsocialnet

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

When the user wants to create or update a README.md file for a project. Also use when the user says "write readme," "create readme," "document this project," "project documentation," or asks for help with README.md. This skill creates absurdly thorough documentation covering local setup, architecture, and deployment.
318 chars✓ has a “when” triggerlonger than Claude Code's old 250-char listing cap (fine on current versions)
Intermediate

Key capabilities

  • Explore codebase for project details
  • Identify manifest and script files
  • Determine entry points and build configurations
  • Discover platform targets (mobile, desktop, web)
  • Analyze CI/CD workflows
  • Document helper scripts

How it works

The skill explores the codebase to gather information about the project's structure, dependencies, build processes, and deployment, then uses this information to generate or update a complete README.md file.

Inputs & outputs

You give it
A project codebase
You get back
An updated or newly created README.md file

When to use readme

  • Write project documentation
  • Document build scripts
  • Setup developer onboarding guide

About this skill

README Generator

You are an expert technical writer. Write (or update) a README.md that lets a developer on a fresh machine get the app running, understand how it works, and ship it.

The Three Purposes of a README

  1. Local Development - Help any developer get the app running locally in minutes
  2. Understanding the System - Explain how the app is put together and why
  3. Distribution - Cover how the project is built, released, and deployed

Before Writing

If a README.md already exists (it does in this repo), default to updating it in place: preserve its tone, structure, and any hand-written sections. Only restructure wholesale if the user asks for a rewrite.

Step 1: Explore the codebase — never document from memory

Every claim in the README must be verifiable in the repo. Check:

  • Manifest and scripts: package.json (name, scripts, engines, packageManager), lockfile, .nvmrc
  • Entry points and build: index.html, vite.config.js, src/ layout, tsconfig.json
  • Platform targets: capacitor.config.ts + android/ (mobile), electron/ + forge.config.js (desktop), vercel.json (web hosting), fastlane/ (store releases)
  • CI/CD: .github/workflows/
  • Repo docs that already answer questions: AGENTS.md, CHANGELOG.md, docs/
  • Helper scripts: scripts/ — document the ones a contributor actually needs

For this repo specifically: it is a Yarn 4 (Corepack) + Vite + React 19 SPA that also ships as an Android app (Capacitor) and desktop app (Electron Forge). Package-manager commands in the README must use yarn, never npm.

Step 2: Ask only if critical

If something can be discovered from the repo, discover it. Ask the user only about things that cannot be inferred: production URLs, secrets policy, badge preferences, target audience.

README Structure

Include the sections that apply; skip ones that don't. Suggested order:

  1. Title + one-paragraph overview — what it is, who it's for, links to the live app/stores
  2. Key features — short bullet list, user-facing
  3. Tech stack — table of major dependencies with one-line roles
  4. Prerequisites — runtime versions (from engines/.nvmrc), corepack enable, platform SDKs only for the platform sections that need them
  5. Getting started — clone, corepack yarn install, yarn start, expected dev URL; every command copy-pasteable and tested
  6. Architecture overview — directory map with one-line descriptions, data flow, where state lives, how the P2P/backendless parts work (if applicable)
  7. Configuration — env vars/flags as a table (name, required?, default, purpose)
  8. Available scripts — table of the package.json scripts a contributor will actually use
  9. Testing — how to run unit/e2e tests, what CI runs
  10. Building and releasing — per-platform build commands (web, Android, Electron), release process pointers
  11. Troubleshooting — only real, observed failure modes with fixes; don't invent generic ones
  12. Contributing / License — link AGENTS.md/docs rather than duplicating policy

Writing Principles

  1. Verify every command — run it or confirm it exists in package.json before documenting it
  2. Copy-pasteable code blocks with language hints; show expected output where it helps
  3. Explain the why, not just the what
  4. Assume a fresh machine for setup sections
  5. Tables for reference material — env vars, scripts, options
  6. Match the project's package manageryarn here; never write npm install for a Yarn repo
  7. Table of contents for READMEs over ~200 lines
  8. Don't duplicate other repo docs — link to AGENTS.md, playbooks instead of restating them; duplicated policy drifts

Output

Write directly to README.md in the project root. After public-facing English content changes in this repo, run yarn llms:generate and commit any resulting public/llms*.txt changes (see AGENTS.md Task Router).

When not to use it

  • When the user wants to perform actions not related to README generation
  • When the user wants to document from memory without exploring the repo

Limitations

  • Defaults to updating an existing README.md in place
  • Requires asking the user for information that cannot be inferred from the repo
  • The skill does not generate content for `AGENTS.md`, `CHANGELOG.md`, or `docs/`

How it compares

This workflow generates a README based on verifiable codebase analysis, ensuring accuracy and completeness, unlike manually writing documentation which can be prone to omissions or errors.

Compared to similar skills

readme side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
readme (this skill)05moReviewIntermediate
ml-paper-writing486moReviewAdvanced
docs-review108moNo flagsBeginner
claude-md-improver217moReviewBeginner

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

ml-paper-writing

davila7

Write publication-ready ML/AI papers for NeurIPS, ICML, ICLR, ACL, AAAI, COLM. Use when drafting papers from research repos, structuring arguments, verifying citations, or preparing camera-ready submissions. Includes LaTeX templates, reviewer guidelines, and citation verification workflows.

4897

docs-review

metabase

Review documentation changes for compliance with the Metabase writing style guide. Use when reviewing pull requests, files, or diffs containing documentation markdown files.

1085

claude-md-improver

anthropics

Audit and improve CLAUDE.md files in repositories. Use when user asks to check, audit, update, improve, or fix CLAUDE.md files. Scans for all CLAUDE.md files, evaluates quality against templates, outputs quality report, then makes targeted updates. Also use when the user mentions "CLAUDE.md maintenance" or "project memory optimization".

2167

write-docs

tldraw

Writing SDK documentation for tldraw. Use when creating new documentation articles, updating existing docs, or when documentation writing guidance is needed. Applies to docs in apps/docs/content/.

665

update-docs

vercel

This skill should be used when the user asks to "update documentation for my changes", "check docs for this PR", "what docs need updating", "sync docs with code", "scaffold docs for this feature", "document this feature", "review docs completeness", "add docs for this change", "what documentation is affected", "docs impact", or mentions "docs/", "docs/01-app", "docs/02-pages", "MDX", "documentation update", "API reference", ".mdx files". Provides guided workflow for updating Next.js documentation based on code changes.

2543

wiki-architect

microsoft

Analyzes code repositories and generates hierarchical documentation structures with onboarding guides. Use when the user wants to create a wiki, generate documentation, map a codebase structure, or understand a project's architecture at a high level.

1144

Search skills

Search the agent skills registry