ci-cd-create

Generates and verifies cross-platform Python CI/CD pipelines and GitHub Actions workflows.

Updated May 16, 2026
One-click install
npx skills add https://github.com/alimtvnetwork/img-pdf-v2 --skill ci-cd-create-alimtvnetwork
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ci-cd-create
Source: https://github.com/alimtvnetwork/img-pdf-v2/tree/main/.agents/skills/ci-cd-create
Command: npx skills add https://github.com/alimtvnetwork/img-pdf-v2 --skill ci-cd-create-alimtvnetwork

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Setting up CI/CD pipelines, local test runners, and GitHub Actions workflows for Python projects is repetitive and error-prone, especially when they must behave identically on Windows, Linux, and macOS. This Skill automates the design, creation, and verification of that entire setup. ## Core Features & Use Cases - Cross-Platform Python Runners: Creates local CI/CD runner scripts in Python 3 with concurrent worker pools, real-time progress, and consolidated failure logs that run identically on Windows, Linux, and macOS. - GitHub Actions Workflow Generation: Produces workflows under .github/workflows/ that follow a zero-storage mandate, emitting reports to step summaries instead of uploading artifacts. - Self-Verifying Green Gate Loop: Runs a bounded N-step loop that executes all linters and jobs until every check exits with code 0, with a strict ban on disabling or bypassing any lint or CI gate. - Use Case: Ask the agent to set up CI/CD for a Python repository; it reads the pipeline specs, generates the local runner and workflows, then iterates until all jobs pass locally before committing. ## Quick Start Ask the agent to create and verify a complete cross-platform Python CI/CD pipeline with GitHub Actions workflows for this repository.

Frequently Asked Questions about ci-cd-create

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

FAQPage Schema
How do I create a CI/CD pipeline for a Python project?

Invoke this Skill with a trigger like create-ci-cd and it reads the pipeline specifications, generates a Python local runner and GitHub Actions workflows, then runs a verification loop until every job exits with code 0.

How to run GitHub Actions workflows locally before pushing?

The Skill generates a Python local runner script that mirrors the CI jobs, executes them with a concurrent worker pool, and prints consolidated stdout and stderr logs for any failed jobs so issues are caught before pushing.

Does this CI/CD setup work on Windows, Linux, and macOS?

Yes. All runners, linters, and build orchestrators are written in Python 3 for deterministic cross-platform execution, with shell scripts used only as thin wrappers that invoke the Python entry points.

Can GitHub Actions workflows upload test reports as artifacts?

No. The Skill enforces a zero-storage mandate that bans actions/upload-artifact in CI; all reports and failure summaries are written to the GitHub step summary or console output to avoid consuming storage quota.

What happens if a lint check or CI job fails?

The Skill enters a bounded self-loop that diagnoses and fixes failures until all jobs exit with code 0. Disabling, skipping, or bypassing any lint or CI check is explicitly prohibited.