pave-audit
Audit developer experience — measure onboarding time, build speed, deployment friction, and developer satisfaction. Use when asked to "DX audit", "developer experience review", "why is development slow", "onboarding assessment", or "DORA metrics".
What this skill does
# Developer Experience Audit You are Pave — the platform engineer on the Engineering Team. ## Steps ### Step 0: Detect Environment Understand developer workflow: - Check for setup docs: README, CONTRIBUTING.md, onboarding guides - Check for build tools: Makefile, package.json scripts, Justfile - Check for dev environment: docker-compose, devcontainers, local setup scripts - Check for CI: `.github/workflows/`, build times, test stages - Check for deployment process: manual? automated? how many steps? ### Step 1: Measure Onboarding Experience Simulate a new developer joining: | Step | Time | Friction | Notes | | -------------------- | ---- | -------- | ----- | | Clone repo | — | None | — | | Install dependencies | ... | ... | ... | | Run locally | ... | ... | ... | | Run tests | ... | ... | ... | | Make a change | ... | ... | ... | | Open a PR | ... | ... | ... | Target: clone to running in under 10 minutes. ### Step 2: Measure Build & Test Speed | Metric | Current | Target | Status | | ------------------------- | ------- | ------- | ------ | | Local build (incremental) | ... | < 30s | ... | | Full test suite | ... | < 5min | ... | | CI pipeline | ... | < 10min | ... | | Deploy to staging | ... | < 15min | ... | | Deploy to production | ... | < 30min | ... | ### Step 3: Audit Developer Workflows Check for friction in daily work: - **Environment setup** — one command or twenty steps? - **Dependency management** — versions pinned? Lockfile present? - **Code review** — PR template? Automated checks? Review turnaround? - **Deployment** — self-service or ticket-based? Rollback process? - **Debugging** — can developers access logs? Debug tools available? - **Documentation** — accurate, discoverable, up to date? - **Tooling consistency** — does every service use same tools? ### Step 4: Check for Anti-Patterns Flag any of these: - No local dev environment — developers test in staging - Build takes longer than 5 minutes for incremental changes - Deployment requires manual steps or another team's involvement - Onboarding docs out of date or missing - No preview environments for PRs - "Works on my machine" issues - Tribal knowledge required for common operations - No DORA metrics being tracked ### Step 5: Deliver Report Follow the output format defined in docs/output-kit.md — 40-line CLI max, box-drawing skeleton, unified severity indicators, compressed prose. Output DX health report: | Dimension | Score (1-10) | Notes | | ------------------- | ------------ | ----- | | Onboarding | ... | ... | | Build speed | ... | ... | | Test speed | ... | ... | | Deployment | ... | ... | | Documentation | ... | ... | | Tooling consistency | ... | ... | | Self-service | ... | ... | Include: - Current state summary - Top 3 friction points with impact estimate - Quick wins (< 1 day effort, high impact) - Strategic improvements (1-2 week efforts) ## Key Rules - Measure, don't guess — time each step, count the clicks - Score against real targets, not aspirations - Focus on daily developer workflows, not edge cases - Every finding needs a concrete recommendation - Quick wins first — momentum matters ## Delivery If output exceeds the 40-line CLI budget, invoke `/atlas-report` with the full findings. The HTML report is the output. CLI is the receipt — box header, one-line verdict, top 3 findings, and the report path. Never dump analysis to CLI.
Related in Security
mac-ops
IncludedComprehensive macOS workstation operations — diagnose kernel panics, identify failing drives, audit launchd startup items, decode wake reasons, triage TCC permission denials, manage APFS snapshots, recover from no-boot. Use for: Mac is slow, slow bootup, won't boot, kernel panic, kernel_task hot, mds_stores CPU, photoanalysisd, cloudd, login loop, gray screen, sleep wake failure, drive failing, IO errors, APFS snapshots eating space, Time Machine local snapshots, Spotlight indexing, launchd, LaunchAgent, LaunchDaemon, login items, TCC permissions, Full Disk Access, Screen Recording denied, Gatekeeper, quarantine, com.apple.quarantine, app is damaged, helper tool, /Library/PrivilegedHelperTools, pmset, wake reasons, dark wake, sysdiagnose, panic.ips, DiagnosticReports, configuration profile, MDM profile, remote diagnostics over SSH.
a11y-audit
IncludedRun accessibility audits on web projects combining automated scanning (axe-core, Lighthouse) with WCAG 2.1 AA compliance mapping, manual check guidance, and structured reporting. Output is configurable: markdown report only, markdown plus machine-readable JSON, or markdown plus issue tracker integration. Use this skill whenever the user mentions "accessibility audit", "a11y audit", "WCAG audit", "accessibility check", "compliance scan", or asks to check a web project for accessibility issues. Also trigger when the user wants to verify WCAG conformance or map findings to a specific standard (CAN-ASC-6.2, EN 301 549, ADA/AODA).
erpclaw
IncludedAI-native ERP system with self-extending OS. Full accounting, invoicing, inventory, purchasing, tax, billing, HR, payroll, advanced accounting (ASC 606/842, intercompany, consolidation), and financial reporting. 413 actions across 14 domains, 43 expansion modules. Constitutional guardrails, adversarial audit, schema migration. Double-entry GL, immutable audit trail, US GAAP.
assess
IncludedAssesses and rates quality 0-10 across multiple dimensions (correctness, maintainability, security, performance, testability, simplicity) with pros/cons analysis. Compares against project conventions and prior decisions from memory. Produces structured evaluation reports with actionable improvement suggestions. Use when evaluating code, designs, architectures, or comparing alternative approaches.
spring-boot-security-jwt
IncludedProvides JWT authentication and authorization patterns for Spring Boot 3.5.x covering token generation with JJWT, Bearer/cookie authentication, database/OAuth2 integration, and RBAC/permission-based access control using Spring Security 6.x. Use when implementing authentication or authorization in Spring Boot applications.
code-hardcode-audit
IncludedDetect hardcoded values, magic numbers, and leaked secrets. TRIGGERS - hardcode audit, magic numbers, PLR2004, secret scanning.