- Fix 12 command files: correct CLI arg syntax, script paths, and usage docs - Fix 3 agents with broken script/reference paths (cs-content-creator, cs-demand-gen-specialist, cs-financial-analyst) - Add complete YAML frontmatter to 5 agents (cs-growth-strategist, cs-engineering-lead, cs-senior-engineer, cs-financial-analyst, cs-quality-regulatory) - Fix cs-ceo-advisor related agent path - Update marketplace.json metadata counts (224 tools, 341 refs, 14 agents, 12 commands) Verified: all 19 scripts pass --help, all 14 agent paths resolve, mkdocs builds clean. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
31 lines
992 B
Markdown
31 lines
992 B
Markdown
---
|
|
name: pipeline
|
|
description: Detect stack and generate CI/CD pipeline configs. Usage: /pipeline <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/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`
|