Guide for creating and configuring CI/CD pipelines with GitHub Actions or GitLab CI. Use when users need to set up automated workflows for testing, building, deploying applications, or managing secrets. Covers Node.js, Python, Docker, Vercel, Railway, Cloudflare, and multi-environment deployments.
/plugin marketplace add leobrival/topographic-studio-plugins/plugin install code-workflows@topographic-studio-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
assets/github-actions/bun-ci.ymlassets/github-actions/cloudflare-deploy.ymlassets/github-actions/docker-build.ymlassets/github-actions/node-ci.ymlassets/github-actions/python-ci.ymlassets/github-actions/railway-deploy.ymlassets/github-actions/release.ymlassets/github-actions/turbo-ci.ymlassets/github-actions/vercel-deploy.ymlassets/gitlab-ci/docker-build.ymlassets/gitlab-ci/node-ci.ymlassets/gitlab-ci/pages-deploy.ymlassets/gitlab-ci/python-ci.ymlassets/gitlab-ci/release.ymlreferences/deployment-strategies.mdreferences/secrets.mdreferences/troubleshooting.mdCreate production-ready CI/CD pipelines for automated testing, building, and deployment.
User request → Which platform?
├─ GitHub Actions → See assets/github-actions/
│ ├─ What stack?
│ │ ├─ Node.js/Bun → node-ci.yml or bun-ci.yml
│ │ ├─ Python → python-ci.yml
│ │ ├─ Docker → docker-build.yml
│ │ └─ Monorepo → turbo-ci.yml
│ │
│ └─ What deployment?
│ ├─ Vercel → vercel-deploy.yml
│ ├─ Railway → railway-deploy.yml
│ ├─ Cloudflare → cloudflare-deploy.yml
│ └─ Docker Registry → docker-build.yml
│
└─ GitLab CI → See assets/gitlab-ci/
├─ What stack?
│ ├─ Node.js → node-ci.yml
│ ├─ Python → python-ci.yml
│ └─ Docker → docker-build.yml
│
└─ What deployment?
├─ GitLab Pages → pages-deploy.yml
├─ Container Registry → docker-build.yml
└─ Custom → custom-deploy.yml
.github/workflows/ directoryassets/github-actions/.gitlab-ci.yml at project rootassets/gitlab-ci/| Use Case | GitHub Actions | GitLab CI |
|---|---|---|
| Node.js CI | node-ci.yml | node-ci.yml |
| Bun CI | bun-ci.yml | - |
| Python CI | python-ci.yml | python-ci.yml |
| Docker Build | docker-build.yml | docker-build.yml |
| Monorepo (Turbo) | turbo-ci.yml | - |
| Vercel Deploy | vercel-deploy.yml | - |
| Railway Deploy | railway-deploy.yml | - |
| Cloudflare Deploy | cloudflare-deploy.yml | - |
| Release & Changelog | release.yml | release.yml |
# GitHub Actions pattern
on:
push:
branches: [main, staging, develop]
jobs:
deploy:
environment: ${{ github.ref_name == 'main' && 'production' || github.ref_name }}
# Test across multiple versions
strategy:
matrix:
node-version: [18, 20, 22]
os: [ubuntu-latest, macos-latest]
# Node.js with pnpm
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
cache: 'pnpm'
# Run only on specific conditions
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.