hiromaily

devops

@hiromaily/devops
hiromaily
119
31 forks
Updated 1/18/2026
View on GitHub

CI/CD and DevOps workflow. Use when modifying GitHub Actions, Docker configurations, or compose files.

Installation

$skills install @hiromaily/devops
Claude Code
Cursor
Copilot
Codex
Antigravity

Details

Path.claude/skills/devops/SKILL.md
Branchmain
Scoped Name@hiromaily/devops

Usage

After installing, this skill will be available to your AI coding assistant.

Verify installation:

skills list

Skill Instructions


name: devops description: CI/CD and DevOps workflow. Use when modifying GitHub Actions, Docker configurations, or compose files.

DevOps Workflow

Workflow for CI/CD and infrastructure changes.

Prerequisites

Use git-workflow Skill for branch, commit, and PR workflow.

Applicable Files

PathDescription
.github/workflows/GitHub Actions
docker/Docker configurations
compose.*.yamlDocker Compose files
DockerfileContainer definitions

GitHub Actions

Workflow Files

FilePurpose
lint-test.ymlLinting and testing

Testing Locally

# Use act for local testing (if installed)
act -l                    # List workflows
act push                  # Simulate push event
act pull_request          # Simulate PR event

Syntax Validation

# Check YAML syntax
yamllint .github/workflows/

Docker

Compose Files

FilePurpose
compose.yamlBase configuration
compose.btc.yamlBitcoin services
compose.eth.yamlEthereum services
compose.xrp.yamlXRP services
compose.bch.yamlBitcoin Cash services

Testing

# Validate compose files
docker compose config

# Test specific compose
docker compose -f compose.yaml -f compose.btc.yaml config

Verification Checklist

  • YAML syntax is valid
  • Workflow triggers are correct
  • Secrets are not exposed
  • Actions use pinned versions
  • Docker images use specific tags

Commit Format

ci: {brief description}

- {change 1}
- {change 2}

Closes #{issue_number}

Related Skills

  • git-workflow - Branch, commit, PR workflow