DevOps skills for CI/CD, GitHub workflows, and infrastructure automation
Automates CI/CD pipelines, GitHub workflows, and infrastructure tasks using Git, GitHub CLI, and Actions.
npx claudepluginhub flexnetos/ripple-envThis skill inherits all available tools. When active, it can use any tool Claude has access to.
This skill provides expertise in DevOps practices including CI/CD pipelines, GitHub workflows, and infrastructure automation.
gs # git status
ga # git add
gc # git commit
gp # git push
gl # git pull
gco <branch> # git checkout
gb # git branch
git checkout -b feature/name # Create and switch to branch
git merge <branch> # Merge branch
glog # git log --oneline --graph
gd # git diff
git log --oneline -10 # Last 10 commits
git blame <file> # Line-by-line history
gh pr create # Create PR interactively
gh pr create --title "Title" --body "Body"
gh pr list # List open PRs
gh pr view <number> # View PR details
gh pr checkout <number> # Checkout PR locally
gh pr merge <number> # Merge PR
gh issue create # Create issue
gh issue list # List issues
gh issue view <number> # View issue
gh issue close <number> # Close issue
gh run list # List workflow runs
gh run view <run-id> # View run details
gh run watch <run-id> # Watch run in real-time
gh workflow run <workflow> # Trigger workflow
gh release create v1.0.0 # Create release
gh release list # List releases
gh release download # Download release assets
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- run: nix develop --command echo "Ready"
actions/checkout@v4 - Checkout repositoryDeterminateSystems/nix-installer-action@main - Install NixDeterminateSystems/magic-nix-cache-action@main - Nix cacheactions/upload-artifact@v4 - Upload artifacts# Labels for WSL2 runner
runs-on: [self-hosted, Windows, WSL2]
See: .github/docs/self-hosted-runner-setup.md
docker build -t image:tag . # Build image
docker run -it image:tag # Run container
docker push registry/image:tag # Push to registry
docker compose up -d # Start services
FROM nixos/nix AS builder
RUN nix build .#package
FROM alpine
COPY --from=builder /result /app
nix build .#nixosConfigurations.host.config.system.build.toplevel
nixos-rebuild switch --flake .#host
home-manager switch --flake .#user
${{ secrets.SECRET_NAME }}.env files (gitignored)pass or 1password-cli for credential storagesops for encrypted secrets in gitgh run list --limit 5 # Recent runs
gh run view --log # View logs
gh api repos/{owner}/{repo}/actions/runs
continue-on-error: falsegh run view --log for detailsGITHUB_TOKEN permissionsActivates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
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.