devops-verifier
Verify DevOps/infrastructure code against best practices, security, simplicity, and documentation standards. Use after implementing or before shipping infrastructure changes.
What this skill does
# DevOps Verifier Comprehensive infrastructure code verification framework. Apply this when verifying DevOps/infrastructure code changes. ## Skill Routing | Dimension | Skill | Content | |-----------|-------|---------| | Platform patterns | `devops-platform-patterns` | DO, Hetzner, AWS, Cloudflare checklists | | Security | `infra-security-review` | State, secrets, network, compute, storage | | Simplicity | `devops-simplicity-checker` | File count, modules, complexity scoring | | Maintainability | `devops-maintainability-checker` | Naming, formatting, DRY, versions | ## Verification Process ### Step 1: Discover - Find IaC files: *.tf, *.yml (ansible) - Detect platforms from providers ### Step 2: Research - Search for "terraform best practices 2025" - Search for "[platform] terraform best practices 2025" ### Step 3: Run Dimension Checks - Apply `devops-platform-patterns` for platform-specific checks - Apply `infra-security-review` for security - Apply `devops-simplicity-checker` for simplicity - Apply `devops-maintainability-checker` for maintainability - Check documentation exists ### Step 4: Score and Report ## Discovery Commands ```bash # Find infrastructure files find . -name "*.tf" -o -name "*.yml" | grep -E "(infra|ansible|terraform|tofu)" | head -50 # Detect platforms grep -rh "provider\s" *.tf 2>/dev/null | head -10 ``` ## Documentation Checklist | Check | Required | |-------|----------| | README.md exists | Yes | | Architecture diagram | For 3+ resources | | Variable descriptions | All variables | | Output descriptions | All outputs | | Cost estimate | Yes | ## Scoring | Dimension | 10 Points | 7 Points | 4 Points | 0 Points | |-----------|-----------|----------|----------|----------| | Best Practices | Current patterns | Minor gaps | Outdated | Deprecated | | Platform | All checks pass | 1-2 issues | Missing patterns | Wrong usage | | Security | No issues | Low severity | Medium issues | Critical | | Simplicity | ≤5 files, no modules | 6-10 files | 11-15 files | >15, deep nesting | | Maintainability | Clean, documented | Minor issues | Multiple issues | Unmaintainable | | Documentation | Complete | README only | Partial | None | ## Verdict Thresholds | Score | Verdict | Action | |-------|---------|--------| | 50-60 | SHIP | Ready for production | | 35-49 | REVIEW | Fix warnings first | | 20-34 | BLOCK | Fix critical issues | | 0-19 | REWRITE | Fundamental issues | ## Report Format ```markdown # DevOps Verification Report **Platforms:** [detected] **Date:** [YYYY-MM-DD] ## Summary | Dimension | Score | Status | |-----------|-------|--------| | Best Practices | X/10 | PASS/FAIL | | Platform | X/10 | PASS/FAIL | | Security | X/10 | PASS/FAIL | | Simplicity | X/10 | PASS/FAIL | | Maintainability | X/10 | PASS/FAIL | | Documentation | X/10 | PASS/FAIL | **Overall:** X/60 - SHIP/REVIEW/BLOCK ## Critical Issues [List with code fixes] ## Warnings [List with recommendations] ```
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.