github-workflow-automation

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

Updated May 11, 2026
One-click install
npx skills add https://github.com/Turgunoff/mebellar_app --skill github-workflow-automation-turgunoff
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: github-workflow-automation
Source: https://github.com/Turgunoff/mebellar_app/tree/main/.agents/skills/github-workflow-automation
Command: npx skills add https://github.com/Turgunoff/mebellar_app --skill github-workflow-automation-turgunoff

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 multiple repositories. This Skill automates workflow generation, optimization, failure analysis, and deployment orchestration using swarm-based agent coordination. ## Core Features & Use Cases - Workflow Generation & Optimization: Generate CI/CD pipelines from codebase analysis, detect languages, suggest parallelization, and reduce redundant steps. - PR & Issue Automation: Coordinate multi-agent PR validation (linting, testing, security, docs), automated issue tracking, and release management with semantic versioning. - Monitoring & Self-Healing: Analyze workflow performance, detect failure patterns, predict risks, and auto-fix common pipeline failures. - Use Case: A team maintaining a monorepo uses this Skill to detect changed packages, build them in a dynamic matrix, run parallel security scans, and progressively deploy to production on merge to main. ## Quick Start Ask the AI to generate an optimized GitHub Actions CI workflow for your 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 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 for GitHub workflow automation with this Skill?▼

You need the GitHub CLI (gh) authenticated, Node.js v16 or later, and the Codex-flow or ruv-swarm npm packages. The repository must have GitHub Actions enabled and a .github/workflows directory.

Can GitHub Actions workflows run tests in parallel automatically?▼

Yes, the smart-test and parallel-strategy commands analyze changed files and dependencies to select relevant tests and determine optimal parallelization. Dynamic matrix generation distributes tests across runners based on impact analysis.

Does this approach work with monorepos and multiple repositories?▼

Yes, the detect-changes command identifies affected packages in a monorepo and builds them via a dynamic matrix. The sync-coordinator mode also synchronizes version updates and creates PRs across multiple repositories.

What are the limitations of self-healing pipelines?▼

Self-healing only auto-fixes common, well-understood failure patterns; complex issues generate a PR for human review instead. It requires the workflow_run trigger and cannot resolve failures caused by external service outages.