github-workflow-automation

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

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing GitHub Actions workflows manually involves repetitive YAML authoring, slow failure diagnosis, and unoptimized pipelines that waste CI minutes and developer time. ## Core Features & Use Cases - Workflow Generation & Optimization: Analyze a codebase, detect languages, and generate or optimize CI/CD pipeline YAML with parallelization and caching suggestions. - Swarm-Coordinated GitHub Operations: Coordinate PR reviews, issue tracking, releases, and security scans using specialized agents like pr-manager, release-manager, and security-guardian. - Failure Analysis & Self-Healing: Diagnose failed workflow runs, identify failure patterns, and apply automated fixes or create issues for security findings. - Use Case: A team maintaining a monorepo uses the skill to detect changed packages, build a dynamic test matrix, run parallel validation agents on each PR, and orchestrate progressive deployments on merge to main. ## Quick Start Ask the AI to analyze this repository and generate an optimized GitHub Actions CI workflow with parallel test execution and caching.

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 YAML. 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 with ruv-swarm?▼

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

Can GitHub Actions workflows run tests in parallel with a dynamic matrix?▼

Yes. The smart-test and test-matrix commands detect frameworks and changed files, then output a JSON matrix consumed by a strategy.matrix job. Impact analysis selects only relevant tests for parallel-safe execution.

How do I reduce GitHub Actions costs and build times?▼

Run npx ruv-swarm actions cost-optimize to analyze usage, suggest caching strategies, and recommend self-hosted runners. The analytics command also identifies bottlenecks over a chosen period such as 30 days.

What are the limitations of self-healing pipelines in GitHub Actions?▼

Self-healing triggers only on workflow_run events with a failure conclusion and applies auto-fixes for common issues. Complex problems still require creating a pull request for human review rather than direct fixes.