plugins/development-harness/skills/code-review-claude-skills/SKILL.md
Loaded automatically when reviewing Claude skills or agent definitions — covers SKILL.md structure, frontmatter validity, token budget, description quality, and agent contract compliance.
npx skillsauth add jamie-bitflight/claude_skills code-review-claude-skillsInstall 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.
Stack-specific rules loaded by dh:code-reviewer when SKILL.md, agent frontmatter files, or plugin.json files are detected.
name must match the containing directory name exactly — mismatch causes lookup failuresname must satisfy ^[a-z][a-z0-9-]*$ — lowercase letters, digits, hyphens onlydescription must be a single-line string — no YAML multiline indicators (>-, |-, >, |)tools field (in agents) must be a comma-separated string, not a YAML array — Read, Grep, Glob not [Read, Grep, Glob]model must be one of sonnet, opus, haiku, or inherit — no version strings, no full model IDsuvx skilllint@latest check --fix <path> after every frontmatter edit — auto-fixes YAML formatting issues including quotingallowed-tools in agent frontmatter must be scoped to the minimum required for the agent's taskWrite or Edit in their tools listuser-invocable: false must be set for skills intended only for agent context injection, not direct user activationdisable-model-invocation: true must be set for skills that execute shell commands or other side-effecting operations that should not be run as prompts[text](./path/to/file.md) with ./ prefixskills/ silently fail to register — all skill directories must be directly under skills/ (one level deep only)/plugin:skill-name skill" — never backtick paths to other skills' internal filesdocs/ path references at runtime — developer documentation must not appear in agent-facing skill content./ relative paths, not absolute paths or backtick referencesagents, skills, and commands keys in plugin.json are only for non-default locations — omit them when all components are in their default directoriesagents key overrides auto-discovery completely — unlisted agents become invisibleplugin.json, every component in that category must be listed# WRONG: multiline description
description: >-
This skill helps with TypeScript code review
when the user asks for a review.
# RIGHT: single-line description
description: TypeScript-specific code review patterns covering strict mode, ESM, type safety, and branded types. Loaded automatically when reviewing TypeScript code.
# RIGHT: single-line description — run `uvx skilllint@latest check --fix <file>` to auto-fix any YAML quoting needs
description: Code review for TypeScript — strict mode, type safety, branded types, and ESM patterns.
<!-- WRONG: cross-skill backtick path reference -->
See `plugins/plugin-creator/skills/prompt-optimization/SKILL.md` for optimization patterns.
<!-- RIGHT: activation syntax -->
For prompt optimization, activate the `/plugin-creator:prompt-optimization` skill.
development
When an application needs to store config, data, cache, or state files. When designing where user-specific files should live. When code writes to ~/.appname or hardcoded home paths. When implementing cross-platform file storage with platformdirs.
testing
Enforce mandatory pre-action verification checkpoints to prevent pattern-matching from overriding explicit reasoning. Use this skill when about to execute implementation actions (Bash, Write, Edit) to verify hypothesis-action alignment. Blocks execution when hypothesis unverified or action targets different system than hypothesis identified. Critical for preventing cognitive dissonance where correct diagnosis leads to wrong implementation.
tools
Reference guide for the Twelve-Factor App methodology — 15 principles (12 original + 3 modern extensions) for building portable, resilient, cloud-native applications. Use when evaluating application architecture, designing cloud-native services, reviewing codebases for methodology compliance, advising on configuration, scaling, observability, security, and deployment patterns. Incorporates the 2025 open-source community evolution and cloud-native reinterpretations of each factor.
tools
Converts user-facing documentation (how-to guides, tutorials, API references, examples) in any format — Markdown, PDF, DOCX, PPTX, XLSX, AsciiDoc, RST, HTML, Jupyter notebooks, man pages, TOML/YAML/JSON configs, and plain text — into Claude Code skill directories with SKILL.md plus thematically grouped references/*.md files. Use when given a docs directory or mixed-format documentation to transform into an AI skill. Uses MCP file-reader server for binary formats.