From magic-powers
Use when setting up or improving CI/CD pipelines - GitHub Actions, automated testing, deployment, release automation
npx claudepluginhub kienbui1995/magic-powers --plugin magic-powersThis skill uses the workspace's default tool permissions.
Automate everything between code push and production deployment. A good pipeline catches bugs early and deploys confidently.
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.
Automate everything between code push and production deployment. A good pipeline catches bugs early and deploys confidently.
Push → Lint → Test → Build → Security Scan → Deploy Staging → Deploy Production
name: CI
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4 # or setup-python, etc.
- run: npm ci
- run: npm run lint
- run: npm test
- run: npm run build
actions/cache for node_modules, pip cache, etc.| Strategy | Risk | Rollback | Use When |
|---|---|---|---|
| Rolling | Low | Slow | Default for most apps |
| Blue/Green | Low | Instant | Need instant rollback |
| Canary | Lowest | Fast | High-traffic production |
| Recreate | High | Slow | Dev/staging only |