Claude-skills pipeline

Detect stack and generate CI/CD pipeline configs. Usage: /pipeline <detect|generate> [options]

install
source · Clone the upstream repo
git clone https://github.com/alirezarezvani/claude-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/alirezarezvani/claude-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.gemini/skills/pipeline" ~/.claude/skills/alirezarezvani-claude-skills-pipeline && rm -rf "$T"
manifest: .gemini/skills/pipeline/SKILL.md
source content

/pipeline

Detect project stack and generate CI/CD pipeline configurations for GitHub Actions or GitLab CI.

Usage

/pipeline detect [--repo <project-dir>]               Detect stack, tools, and services
/pipeline generate --platform github|gitlab [--repo <project-dir>]  Generate pipeline YAML

Examples

/pipeline detect --repo ./my-project
/pipeline generate --platform github --repo .
/pipeline generate --platform gitlab --repo .

Scripts

  • engineering/ci-cd-pipeline-builder/scripts/stack_detector.py
    — Detect stack and tooling (
    --repo <path>
    ,
    --format text|json
    )
  • engineering/ci-cd-pipeline-builder/scripts/pipeline_generator.py
    — Generate pipeline YAML (
    --platform github|gitlab
    ,
    --repo <path>
    ,
    --input <stack.json>
    ,
    --output <file>
    )

Skill Reference

engineering/ci-cd-pipeline-builder/SKILL.md