- Add CSS components: .page-meta badges, .domain-header, .install-banner - Fix invisible tab navigation (explicit color for light/dark modes) - Rewrite generate-docs.py with design system templates - Domain indexes: centered headers with icons, install banners, grid cards - Skill pages: pill badges (domain, skill ID, source), install commands - Agent/command pages: type badges with domain icons - Regenerate all 210 pages (180 skills + 15 agents + 15 commands) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
37 lines
1.2 KiB
Markdown
37 lines
1.2 KiB
Markdown
---
|
|
title: "/pipeline"
|
|
description: "/pipeline — Claude Code slash command."
|
|
---
|
|
|
|
# /pipeline
|
|
|
|
<div class="page-meta" markdown>
|
|
<span class="meta-badge">:material-console: Slash Command</span>
|
|
<span class="meta-badge">:material-github: <a href="https://github.com/alirezarezvani/claude-skills/tree/main/commands/pipeline.md">Source</a></span>
|
|
</div>
|
|
|
|
|
|
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`
|