05-infrastructure/devops-and-github-actions/SKILL.md
[日本語版](../../ja/05-infrastructure/devops-and-github-actions/SKILL.md) # DevOps and GitHub Actions > DevOps automates the build, test, and deploy lifecycle, breaking down the wall between development and operations. This guide covers CI/CD fundamentals, hands-on GitHub Actions, deployment strategies, and monitoring/alerting -- providing a complete picture of modern DevOps. ## Target Audience - Engineers looking to build CI/CD pipelines - Developers who want to fully leverage GitHub Actions -
npx skillsauth add gaku52/claude-code-skills 05-infrastructure/devops-and-github-actionsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
日本語版
DevOps automates the build, test, and deploy lifecycle, breaking down the wall between development and operations. This guide covers CI/CD fundamentals, hands-on GitHub Actions, deployment strategies, and monitoring/alerting -- providing a complete picture of modern DevOps.
| # | File | Description | |---|------|-------------|
| # | File | Description | |---|------|-------------|
| # | File | Description | |---|------|-------------|
| # | File | Description | |---|------|-------------|
GitHub Actions Syntax Cheat Sheet:
Triggers:
on: push / pull_request / schedule / workflow_dispatch
branches: [main] / paths: ['src/**']
Jobs:
runs-on: ubuntu-latest
strategy: matrix (node-version: [18, 20, 22])
needs: [build, test]
Commonly Used Actions:
actions/checkout@v4
actions/setup-node@v4
actions/cache@v4
docker/build-push-action@v5
aws-actions/configure-aws-credentials@v4
Deployment Strategy Selection:
Low risk, small scale → Rolling Update
Medium risk → Blue-Green
High risk, large scale → Canary
Experimental features → Feature Flag
tools
Fundamentals of modern web development. Framework selection (React, Vue, Next.js), project architecture, state management, routing, build tools, and CSS strategy best practices.
development
# React Development — Complete Guide > A comprehensive guide to building modern React applications with TypeScript. Covers fundamentals through advanced patterns, Hooks mastery, TypeScript integration, performance optimization, and algorithm internals. ## Target Audience - Developers new to React who want a solid foundation - Intermediate React developers looking to deepen their understanding of Hooks and TypeScript patterns - Engineers who want to understand React's internal algorithms (Virt
development
# Node.js Development Skill > A practical guide collection for Node.js development. Covers all aspects of Node.js application development, including Express, NestJS, asynchronous patterns, and performance optimization. ## Overview This skill covers the following topics: - **Express & NestJS**: When to use a lightweight framework vs. an enterprise framework - **Asynchronous Patterns**: Promise, async/await, Event Emitter, Streams, Worker Threads, Cluster - **Performance Optimization**: Memory
development
# Backend Development — Complete Guide > A comprehensive guide to backend engineering. Covers the fundamentals of HTTP, REST API design, databases, authentication, environment configuration, and algorithm proofs — everything needed to build robust server-side systems. ## Target Audience - Developers new to backend engineering - Frontend engineers expanding toward full-stack development - Engineers looking to solidify their understanding of server-side fundamentals ## Prerequisites - Basic p