# Edit this file to define the default named Pipeline step config. # Save additional named configs alongside it in the same directory, for example: # .poe-code/pipeline/steps/default.yaml # .poe-code/pipeline/steps/fast.yaml # Leave it comment-only to keep the default no-step behavior. # Uncomment and change the example below when you want stepped tasks. # Add `mode` only when you want to override the shared agent-spawn default (`auto`). # Add `agent` and/or `model` to override the pipeline-level defaults per step. # Use {{file 'path'}} in any prompt to inline the contents of a Markdown file (relative to project root). # # Optional: setup runs once before any tasks, teardown runs once after all complete. # These can also be defined in the plan frontmatter to override the defaults below. # # setup: # prompt: Prepare the workspace # # mode: auto # # teardown: # prompt: Run final checks and clean up # # mode: read # # steps: # implement: # prompt: | # {{id}}: {{title}} # # Implement # {{prompt}} # # agent: codex # # model: o3 # # refactor: # prompt: | # {{id}}: {{title}} # Original task: # {{prompt}} # # Refactor and improve the code # # test: # prompt: | # {{id}}: {{title}} # Original task: # {{prompt}} # # Be a user and test all edge cases, fix bugs # # commit: # prompt: | # {{id}}: {{title}} # Original task: # {{prompt}} # # Commit changes