Help us improve
Share bugs, ideas, or general feedback.
From engineering-advanced-skills
Generate pragmatic CI/CD pipelines from detected project stack signals — fast baseline generation, repeatable checks, environment-aware deployment stages. Use when setting up CI for a new project, refactoring existing pipelines, or standardizing deployment workflows across multiple repos.
npx claudepluginhub alexbramall/claude-code-skills --plugin engineering-advanced-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/engineering-advanced-skills:ci-cd-pipeline-builderThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Tier:** POWERFUL
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
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).