npx claudepluginhub rileyhilliard/claude-essentials --plugin ceThis skill uses the workspace's default tool permissions.
Decision guidance for GitHub Actions CI/CD pipelines, deployment strategies, and infrastructure automation.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
Decision guidance for GitHub Actions CI/CD pipelines, deployment strategies, and infrastructure automation.
| Scenario | Reference | Why |
|---|---|---|
| Hardening against supply chain attacks | Security | SHA pinning, permissions, OIDC |
| Speeding up slow CI builds | Performance | Caching, matrix builds, concurrency |
| DRY-ing up duplicated workflow YAML | Workflow architecture | Reusable workflows vs composite actions |
| Setting up staging/production deploys | Deployment | Environment promotion, protection rules |
| Adding Terraform/OpenTofu to CI | Infrastructure | Plan-on-PR, apply-on-merge, drift detection |
| Tracking pipeline reliability | Observability | OTel, DORA metrics, SLOs |
| Reviewing a PR that modifies workflows | Security + Workflow | Permissions audit, secret exposure review |
| Debugging flaky pipelines | Observability + Performance | Metrics, cache hit rates, concurrency |
| Migrating from Jenkins/CircleCI | Workflow architecture | Action patterns, reusable workflow design |
| Setting up monorepo CI | Performance | Path filtering, selective job execution |
Use for: Preventing supply chain attacks, minimizing credential exposure, hardening runner environments.
Key decisions:
pull_request_target without understanding the security modelSee references/security-hardening.md for attack patterns and mitigations.
Use for: Reducing CI times, optimizing runner costs, parallelizing builds.
Key decisions:
node_modules)fail-fast: false for CI matrices, true for deploymentcancel-in-progress: true for CI, false for deploysSee references/performance-optimization.md for caching strategies and runner selection.
Use for: Structuring reusable CI/CD components, managing action dependencies.
Key decisions:
secrets: inheritSee references/workflow-architecture.md for patterns and versioning.
Use for: Environment promotion, deployment gates, progressive delivery.
Key decisions:
See references/deployment-strategies.md for promotion patterns and rollback strategies.
Use for: Terraform/OpenTofu pipelines, drift detection, policy enforcement.
Key decisions:
-out)See references/infrastructure-pipelines.md for IaC workflow patterns.
Use for: Pipeline reliability tracking, incident response, capacity planning.
Key decisions:
See references/pipeline-observability.md for instrumentation and metrics.
| Convention | Example | When |
|---|---|---|
| Trigger-based prefix | ci-test.yml, ci-lint.yml | CI workflows |
| Deploy prefix | deploy-staging.yml, deploy-prod.yml | Deployment workflows |
| Scheduled prefix | scheduled-drift.yml, scheduled-cleanup.yml | Cron jobs |
| Reusable prefix | _reusable-build.yml | Shared workflow templates |
| Principle | Pattern |
|---|---|
| Default to read-only | Set at org/repo level, override per-job |
| Scope per job, not workflow | Each job declares only what it needs |
| OIDC over stored secrets | Short-lived tokens scoped to repo+branch+env |
| Explicit secret passing | Name each secret, avoid secrets: inherit |
| Rule | CI workflows | Deploy workflows |
|---|---|---|
| Required status checks | Yes | Yes |
| Require PR reviews | Yes | Yes (production) |
| Dismiss stale reviews | Yes | Yes |
| Restrict pushes | Optional | Yes (main/release branches) |
pull_request_target usagecondition-based-waiting skill)