claude/skills/documentation/SKILL.md
Documentation standards. Apply when completing full feature development, introducing new architecture patterns, or adding new public APIs.
npx skillsauth add channinghe/dotfiles documentationInstall 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.
"Code tells you how; Comments tell you why; Docs tell you how to use." Documentation is not a dev diary; it's a user manual for future maintainers.
/docs/ with fragmented docs/docs/specs/{feature-name}.md (use kebab-case, e.g., user-authentication.md)Documentation must be concise and powerful, strictly following:
// ✅ Correct usage example
const user = await authService.login(credentials);
File: /docs/specs/payment-flow.md
Content:
Handles Stripe payment intent creation and callback verification. Core based on PaymentIntent state machine.
...
development
Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".
development
# Verification Loop Skill A comprehensive verification system for Claude Code sessions. ## When to Use Invoke this skill: - After completing a feature or significant code change - Before creating a PR - When you want to ensure quality gates pass - After refactoring ## Verification Phases ### Phase 1: Build Verification ```bash # Check if project builds npm run build 2>&1 | tail -20 # OR pnpm build 2>&1 | tail -20 ``` If build fails, STOP and fix before continuing. ### Phase 2: Type Check
tools
Tooling and verification. Apply when encountering unfamiliar third-party libraries, framework updates, uncertain parameter types, verifying best practices, or uncertain API parameters.
development
Use this skill when writing new features, fixing bugs, or refactoring code. Enforces test-driven development with 80%+ coverage including unit, integration, and E2E tests.