CI/CD Pipeline Builder
Tier: POWERFUL
Category: Engineering
Domain: DevOps / Automation
Use this skill to generate pragmatic CI/CD pipelines from detected project stack signals, not guesswork. It focuses on fast baseline generation, repeatable checks, and environment-aware deployment stages.
lint, test, build, deploy)python3 scripts/stack_detector.py --repo . --format text
python3 scripts/stack_detector.py --repo . --format json > detected-stack.json
Supports input via stdin or --input file for offline analysis payloads.
python3 scripts/pipeline_generator.py \
--input detected-stack.json \
--platform github \
--output .github/workflows/ci.yml \
--format text
Or end-to-end from repo directly:
python3 scripts/pipeline_generator.py --repo . --platform gitlab --output .gitlab-ci.yml
test, lint, build).lint/test/build).python3 scripts/stack_detector.py --help
--inputpython3 scripts/pipeline_generator.py --help
--outputThe stack detector prioritizes deterministic file signals over heuristics:
Start with a minimal, reliable pipeline:
Then layer advanced behavior (matrix builds, security scans, deploy gates).