devex-review
Installation
SKILL.md
DevEx Review
I'll audit your project's developer experience end-to-end: setup friction, onboarding, local dev loop, tooling consistency, documentation gaps. You get a scored DX report and a ranked list of quick wins. Inspired by gstack's devex-review skill.
Token Optimization
Expected range: 400–1,000 tokens (full audit), 50 tokens (no project structure found)
Patterns used: Bash for file discovery, Grep-before-Read, progressive disclosure (scores → details on request)
Early exit: If no package.json, Makefile, pyproject.toml, or similar project manifest is found, report "No project manifest found — cannot audit DX" and stop.
Step 1 — Discover Project Structure
# Detect project type and manifest files
ls -la package.json pyproject.toml Cargo.toml go.mod Makefile Dockerfile \
README.md CONTRIBUTING.md .env.example .envrc 2>/dev/null