Command
/pipeline
Detect stack and generate CI/CD pipeline configs. Usage: /pipeline <detect|generate> [options]
One command from claude-skills.
shell
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeShips with claude-skills. Installing the plugin gets this command.
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/pipeline
Context preview
What this command does when you run it.
Detect stack and generate CI/CD pipeline configs. Usage: /pipeline <detect|generate> [options]
Stats
Stars23,062
Forks3,139
LanguagePython
LicenseMIT
Ships with claude-skills
Command definition
pipeline.md
--- name: pipeline description: "Detect stack and generate CI/CD pipeline configs. Usage: /pipeline <detect|generate> [options]" argument-hint: "<detect|generate> [options]" --- # /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/skills/ci-cd-pipeline-builder/scripts/stack_detector.py` — Detect stack and tooling (`--repo <path>`, `--format text|json`) - `engineering/skills/ci-cd-pipeline-builder/scripts/pipeline_generator.py` — Generate pipeline YAML (`--platform github|gitlab`, `--repo <path>`, `--input <stack.json>`, `--output <file>`) ## Skill Reference → `engineering/skills/ci-cd-pipeline-builder/SKILL.md`
