aceternity-ui
100+ animated React components (Aceternity UI) for Next.js with Tailwind. Use for hero sections, parallax, 3D effects, or encountering animation, shadcn CLI…
Complete CI/CD guide for Cloudflare Workers using GitHub Actions and GitLab CI. Use for automated testing, deployment pipelines, preview environments, secrets management, or encountering deployment failures, workflow errors, environment configuration issues.
$ npx -y skills add secondsky/claude-skills --skill cloudflare-workers-ci-cd --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/cloudflare-workers-ci-cdContext preview
The summary Claude sees to decide when to auto-load this skill.
Complete CI/CD guide for Cloudflare Workers using GitHub Actions and GitLab CI. Use for automated testing, deployment pipelines, preview environments, secrets management, or encountering deployment failures, workflow errors, environment configuration issues.
name: cloudflare-workers-ci-cd description: Complete CI/CD guide for Cloudflare Workers using GitHub Actions and GitLab CI. Use for automated testing, deployment pipelines, preview environments, secrets management, or encountering deployment failures, workflow errors, environment configuration issues. license: MIT metadata: keywords: "cloudflare-workers, workers-ci-cd, github-actions, gitlab-ci, continuous-integration, continuous-deployment, automated-testing, deployment-pipeline, preview-deployments, staging-deployment, production-deployment, secrets-management, wrangler-deploy, environment-variables, github-secrets, deployment-verification, rollback-strategy, blue-green-deployment, canary-deployment, deployment-gates, ci-cd-best-practices, workflow-automation, pull-request-previews, branch-deployments" version: "1.0.0" last_verified: "2025-01-27" production_tested: true token_savings: "~75%" errors_prevented: 7 templates_included: 4 references_included: 4 scripts_included: 1 github_actions_version: "v4" wrangler_version: "4.81.0"
**Status**: ✅ Production Ready | Last Verified: 2025-01-27 **GitHub Actions**: v4 | **GitLab CI**: Latest | **Wrangler**: 4.81.0
---
Automated testing and deployment of Cloudflare Workers using **GitHub Actions** or **GitLab CI**. Enables running tests on every commit, deploying to preview/staging/production environments automatically, managing secrets securely, and implementing deployment gates for safe releases.
**Key capabilities**: Automated testing, multi-environment deployments, preview URLs per PR, secrets management, deployment verification, automatic rollbacks.
---
**GitHub Actions Updates** (January 2025):
**Migration from v3**:
# ❌ OLD (v3)
- uses: cloudflare/wrangler-action@3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
# ✅ NEW (v4)
- uses: cloudflare/wrangler-action@v4
with:
api-token: ${{ secrets.CLOUDFLARE_API_TOKEN }}**Wrangler 4.50.0** (January 2025):
---
**1. Create Cloudflare API Token**
Go to: https://dash.cloudflare.com/profile/api-tokens
Create token with permissions:
**2. Add Secret to GitHub**
Repository → Settings → Secrets → Actions → New repository secret:
**3. Create `.github/workflows/deploy.yml`**
name: Deploy
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
name: Deploy to Cloudflare Workers
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install
- run: bun test
- name: Deploy
uses: cloudflare/wrangler-action@v4
with:
api-token: ${{ secrets.CLOUDFLARE_API_TOKEN }}
command: deploy**4. Push and Verify**
git add .github/workflows/deploy.yml git commit -m "Add CI/CD pipeline" git push
Check Actions tab on GitHub to see deployment progress.
---
**✅ CORRECT**:
# Use GitHub Secrets
api-token: ${{ secrets.CLOUDFLARE_API_TOKEN }}**❌ WRONG**:
# ❌ NEVER hardcode tokens api-token: "abc123def456..."
**Why**: Exposed tokens allow anyone to deploy to your account.
**✅ CORRECT**:
- run: bun test # ✅ Tests run first
- name: Deploy
uses: cloudflare/wrangler-action@v4
with:
api-token: ${{ secrets.CLOUDFLARE_API_TOKEN }}**❌ WRONG**:
# ❌ Skipping tests - name: Deploy uses: cloudflare/wrangler-action@v4 # No tests!
**Why**: Broken code shouldn't reach production.
**✅ CORRECT**:
# Production (main branch) - name: Deploy to Production if: github.ref == 'refs/heads/main' run: bunx wrangler deploy --env production # Staging (other branches) - name: Deploy to Staging if: github.ref != 'refs/heads/main' run: bunx wrangler deploy --env staging
**❌ WRONG**:
# ❌ Always deploying to production - run: bunx wrangler deploy
**Why**: Test changes in staging before production.
**✅ CORRECT**:
- name: Deploy
id: deploy
uses: cloudflare/wrangler-action@v4
- name: Verify Deployment
run: |
curl -f https://your-worker.workers.dev/health || exit 1**❌ WRONG**:
# ❌ No verification - name: Deploy uses: cloudflare/wrangler-action@v4 # Assuming it worked...
**Why**: Deployments can fail silently (DNS issues, binding errors).
**✅ CORRECT**:
deploy-production:
environment:
name: production
url: https://your-worker.workers.dev
# Requires manual approval**❌ WRONG**:
# ❌ Auto-deploy to production without review deploy-production: runs-on: ubuntu-latest
**Why**: Human rev
145 production-ready skills for Claude Code CLI 🔌 Platform / Harness Support These plugins ship as Claude Code marketplace plugins (.claude-plugin/ manifests) and Codex CLI plugins (.codex-plugin/ manifests).
Repo: secondsky/claude-skills
100+ animated React components (Aceternity UI) for Next.js with Tailwind. Use for hero sections, parallax, 3D effects, or encountering animation, shadcn CLI…
Secure API authentication with JWT, OAuth 2.0, API keys. Use for authentication systems, third-party integrations, service-to-service communication, or…
Creates comprehensive API changelogs documenting breaking changes, deprecations, and migration strategies for API consumers. Use when managing API versions,…
Verifies API contracts between services using consumer-driven contracts, schema validation, and tools like Pact. Use when testing microservices communication,…
Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs,…
Implements standardized API error responses with proper status codes, logging, and user-friendly messages. Use when building production APIs, implementing…