You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: working_genesis.yaml
+50-10Lines changed: 50 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -16,18 +16,58 @@ workflow:
16
16
content: |
17
17
Request: {{pipeline_request}}
18
18
19
-
Respond with YAML pipeline configuration only. No explanations, no descriptions, no questions - just the YAML code block.
19
+
ANALYZE THE REQUEST:
20
+
- If it mentions reading files from specific directories, use claude with cwd
21
+
- If it mentions "claude code" working in a directory, use claude with cwd
22
+
- If it mentions analyzing code in a specific path, use claude with cwd
23
+
- If it needs to modify or create files in specific locations, use claude with cwd
20
24
25
+
Generate a pipeline in the EXACT format shown below. DO NOT include providers section, DO NOT include api_key fields, DO NOT include inputs/outputs sections at the root level.
26
+
27
+
Use this exact structure:
28
+
29
+
```yaml
30
+
name: descriptive_pipeline_name
31
+
description: Clear description of what this pipeline does
32
+
33
+
steps:
34
+
- name: first_step
35
+
type: prompt
36
+
provider: gemini
37
+
model: gemini-2.5-flash-lite-preview-06-17
38
+
prompt: |
39
+
Your detailed prompt here
40
+
41
+
- name: second_step
42
+
type: prompt
43
+
provider: claude
44
+
model: claude-opus-4-20250514
45
+
prompt: |
46
+
Another detailed prompt
47
+
Can reference previous steps: {{first_step.output}}
48
+
```
49
+
50
+
For Claude steps that need to work with files in specific directories, use:
0 commit comments