foundation-ci

Generate a .github/workflows/ci.yml with lint, test, and build steps.

Updated Mar 26, 2026
One-click install
npx skills add https://github.com/cyberpunk042/devops-expert-local-ai --skill foundation-ci
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: foundation-ci
Source: https://github.com/cyberpunk042/devops-expert-local-ai/tree/main/.claude/skills/foundation-ci
Command: npx skills add https://github.com/cyberpunk042/devops-expert-local-ai --skill foundation-ci

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automates CI/CD pipeline creation for a project.

Core Features & Use Cases

  • Detects project tech stacks from manifests and sources.
  • Generates a .github/workflows/ci.yml with triggers, lint, test, build, and an optional deploy step.
  • Updates the README with a status badge and creates Makefile targets that mirror CI steps for local runs.

Quick Start

Invoke foundation-ci to generate a CI/CD pipeline tailored to your project with a single command.

Frequently Asked Questions about foundation-ci

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

FAQPage Schema
How do I auto-generate a GitHub Actions CI/CD pipeline for my project?

To auto-generate a GitHub Actions CI/CD pipeline, foundation-ci analyzes your project manifests and source code to detect tech stacks, then outputs a .github/workflows/ci.yml with push/PR triggers, lint, test, build, and deploy steps.

Can I test my CI/CD pipeline locally before pushing to GitHub?

You can test your CI/CD pipeline locally because foundation-ci generates Makefile targets that mirror the lint, test, and build steps defined in your ci.yml workflow for local validation.

How does automated pipeline creation detect my project's tech stack?

Automated pipeline creation detects your tech stack by analyzing existing manifests and source files, mapping the detected languages and frameworks to appropriate lint, test, and build commands in the generated ci.yml.

Does the generated GitHub Actions workflow include a README status badge?

The generated GitHub Actions workflow includes a README status badge, as foundation-ci automatically updates your README to display the CI status alongside the newly created pipeline.

What triggers the generated ci.yml workflow to run?

The generated ci.yml workflow triggers on push and pull requests to the main branch, ensuring your code is automatically linted, tested, and built during standard development cycles.

Are the GitHub Actions in the generated pipeline cached and version-pinned?

The GitHub Actions in the generated pipeline are cached and version-pinned, enforcing fast execution and reproducible builds by locking dependency versions within the ci.yml configuration.