fix(ci): correct image digest separator

This commit is contained in:
2026-04-30 12:20:26 +02:00
parent 339de0769d
commit 6652303b3e
232 changed files with 22956 additions and 2 deletions

37
.claude/commands/wave.md Normal file
View File

@@ -0,0 +1,37 @@
---
description: Run Wave multi-agent pipelines
---
## User Input
```text
$ARGUMENTS
```
## Instructions
You are invoking the Wave multi-agent pipeline orchestrator. Parse the user's arguments to determine which subcommand to run.
### Subcommand Routing
Based on the arguments provided:
**If arguments start with "run"** (e.g., `/wave run impl-issue -- "fix bug"`):
- Execute: `wave run <remaining arguments>`
- Example: `wave run -v impl-issue -- "implement feature X"`
**If arguments start with "status"** (e.g., `/wave status`):
- Execute: `wave list runs --limit 10`
- Show the output to the user in a readable format
**If arguments start with "list"** (e.g., `/wave list`):
- Execute: `wave list pipelines`
- Show available pipelines to the user
**If arguments start with "logs"** (e.g., `/wave logs <run-id>`):
- Execute: `wave logs <run-id>`
- Show the pipeline run logs
**If no arguments or "help"**:
- Show available subcommands: run, status, list, logs
- Example usage for each subcommand