github-workflow-automation

Automates GitHub Actions CI/CD pipelines with swarm-coordinated workflow generation and analysis.

1|Updated Jun 3, 2026
One-click install
npx skills add https://github.com/KentwareDemo/RuView --skill github-workflow-automation-kentwaredemo
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: github-workflow-automation
Source: https://github.com/KentwareDemo/RuView/tree/main/.claude/skills/github-workflow-automation
Command: npx skills add https://github.com/KentwareDemo/RuView --skill github-workflow-automation-kentwaredemo

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing GitHub Actions workflows manually is time-consuming and error-prone, especially when coordinating CI/CD pipelines, PR reviews, security scans, and releases across repositories. This Skill automates workflow generation, optimization, failure analysis, and repository management using GitHub CLI and swarm coordination. ## Core Features & Use Cases - Workflow Generation & Optimization: Analyze a codebase, detect languages, and generate optimized CI/CD pipelines with parallelization and caching suggestions. - GitHub Coordination Modes: Use specialized modes like pr-manager, issue-tracker, release-manager, code-reviewer, and security-guardian to automate pull requests, issues, releases, and audits. - Failure Diagnosis & Self-Healing: Analyze failed workflow runs, identify failure patterns, and apply automated fixes or create PRs for complex issues. - Use Case: A team maintaining a monorepo uses this Skill to detect changed packages, build them in a dynamic matrix, run parallel tests, and progressively deploy to production on merge to main. ## Quick Start Ask the AI 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 and --detect-languages flags to inspect your repository and produce an optimized CI pipeline. The output can be written directly to .github/workflows/ci.yml.

How can I 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, suggests fixes, and can auto-retry flaky steps.

What tools are required to use GitHub workflow automation?

You need the GitHub CLI (gh) authenticated, git, Node.js v16 or later, and the claude-flow@alpha package. The repository should have a .github/workflows directory with Actions enabled.

Can this automate pull request reviews and security scans?

Yes, the pr-manager and security-guardian modes spawn agents for linting, testing, security, and docs validation on pull requests. Security scans can run on a schedule and automatically create GitHub issues for findings.

Does it support monorepos and multi-repo coordination?

Yes, it detects changed packages in a monorepo and builds them via a dynamic matrix strategy. The repo-architect and sync-coordinator modes handle restructuring and synchronizing version updates across multiple repositories.