From coding-agent
Documentation standards for READMEs, code comments, and API docs. Use when writing or reviewing any project documentation.
npx claudepluginhub devjarus/coding-agentThis skill uses the workspace's default tool permissions.
A good README answers questions in this order:
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
A good README answers questions in this order:
Comment the WHY, not the WHAT.
// Bad: increment the counter
counter++;
// Good: the counter tracks retries so we can back off after MAX_RETRIES
counter++;
Rules:
TODO comments with tracked issues; do not leave them in production codeEvery endpoint must document:
| Field | Description |
|---|---|
| Method + path | GET /users/{id} |
| Description | What this endpoint does |
| Path/query params | Name, type, required/optional, description |
| Request body | Schema with field descriptions and constraints |
| Success response | Status code + response schema |
| Error responses | All possible error codes and their meanings |
| Auth requirements | Which roles or scopes are required |
Always include a working curl example:
curl -X POST https://api.example.com/v1/users \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{"email": "user@example.com", "name": "Alice"}'