From coding-agent
CI/CD pipeline structure, principles, testing strategies, and deployment patterns. Use when designing, reviewing, or debugging pipelines.
npx claudepluginhub devjarus/coding-agentThis skill uses the workspace's default tool permissions.
Every pipeline follows this ordered sequence:
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.
Every pipeline follows this ordered sequence:
install → lint → test → build → deploy
Each stage must pass before the next begins. Never skip a stage to speed up a deploy.
# Example: GitHub Actions service container
services:
postgres:
image: postgres:16-alpine
env:
POSTGRES_PASSWORD: test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
| Environment | Trigger | Approval |
|---|---|---|
| Staging | Automatic on merge to main | None |
| Production | Manual trigger or scheduled | Required |