feat(pipeline): add multi-step agent pipeline execution#101
Open
garethpaul wants to merge 2 commits intomainfrom
Open
feat(pipeline): add multi-step agent pipeline execution#101garethpaul wants to merge 2 commits intomainfrom
garethpaul wants to merge 2 commits intomainfrom
Conversation
Add pipeline feature for chaining agent calls where output flows between
steps automatically via {{steps.<name>.output}} interpolation.
- YAML schema with sequential and parallel step execution
- Parse, validate, interpolate, and run modules with full test coverage
- CLI: `poe-code pipeline run <file>` and `poe-code pipeline validate`
- SDK: `pipeline.run()` for programmatic use
- 46 unit tests covering parsing, validation, interpolation, and execution
- Fix validate subcommand parameter binding (was broken) - Use container.fs.readFile instead of node:fs/promises import - Add CLI command tests (validate, run, dry-run, failure exit code) - Add pipeline commands to help text - Use design system for CLI output instead of console.log - Remove proxy function, make cwd optional in RunPipelineOptions - Remove double validation (CLI + runPipeline) - Add interpolate edge case test for unresolved references - Export runPipeline/parsePipeline directly from SDK
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Chains agent spawns where output flows between steps automatically. You write a YAML file, each step spawns an agent, and later steps can reference earlier step output via
{{steps..output}}.
Example yaml
Test plan