github-workflow-automation

Automates GitHub Actions workflows, CI/CD pipelines, and repository management with swarm coordination.

Updated Aug 18, 2026
One-click install
npx skills add https://github.com/wandreandrade2018-maker/claude-config --skill github-workflow-automation-wandreandrade2018-maker
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: github-workflow-automation
Source: https://github.com/wandreandrade2018-maker/claude-config/tree/main/.claude/skills/github-workflow-automation
Command: npx skills add https://github.com/wandreandrade2018-maker/claude-config --skill github-workflow-automation-wandreandrade2018-maker

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires claude-flow, ruv-swarm.

What problem does it solve? Managing GitHub Actions workflows, CI/CD pipelines, pull requests, and releases manually is repetitive and error-prone. This Skill automates workflow generation, optimization, failure analysis, and repository coordination using ruv-swarm and claude-flow commands. ## Core Features & Use Cases - Workflow Generation & Optimization: Generate CI pipelines from codebase analysis, detect languages, suggest parallelization, and optimize existing workflows for cost and speed. - GitHub Coordination Modes: Use specialized modes like pr-manager, issue-tracker, release-manager, code-reviewer, and security-guardian to automate PR reviews, issue tracking, releases, and security scans. - Monitoring & Self-Healing: Analyze workflow performance, detect failure patterns, predict risks, and auto-fix common pipeline failures. - Use Case: A team wants CI for a polyglot monorepo. The Skill detects changed packages, builds a dynamic test matrix, runs parallel validation agents (linter, tester, security), and posts results as a PR comment. ## Quick Start Ask the assistant to generate an optimized GitHub Actions CI workflow for the current repository by analyzing the codebase and detecting its languages.

Frequently Asked Questions about github-workflow-automation

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate a GitHub Actions workflow automatically?

Run npx ruv-swarm actions generate-workflow with the --analyze-codebase, --detect-languages, and --create-optimal-pipeline flags. It inspects your repository structure and produces an optimized CI pipeline definition.

How to analyze a failed GitHub Actions run?

Use gh run view <run-id> --json jobs,conclusion piped into npx ruv-swarm actions analyze-failure with --suggest-fixes. It classifies the failure and can suggest fixes or auto-retry flaky steps.

What are the requirements for using this GitHub automation skill?

You need the GitHub CLI (gh) installed and authenticated, Git configured, Node.js v16 or later, and the claude-flow@alpha npm package. The repository must have GitHub Actions enabled with appropriate secrets and permissions.

Can GitHub Actions workflows run multi-agent PR validation?

Yes. The pr-validate command spawns parallel agents such as linter, tester, security, and docs reviewers, then posts the combined results as a PR comment using the gh CLI.

Why does a GitHub Pages deploy workflow fail when triggered from a non-default branch?

The github-pages environment only allows deployments triggered from the default branch by default policy. Keep the deploy workflow on the main branch and have it check out the gh-pages content for publishing.

What are the limitations of swarm-based workflow automation?

It depends on external npm packages (ruv-swarm, claude-flow@alpha) and GitHub CLI availability, so it cannot run offline. Complex auto-fix and prediction features also require sufficient workflow history to analyze.