Xylem
Digital xylem that transports data through workflows with structure and support
Xylem is a workflow runner for composing command-line tools into repeatable, configuration-driven pipelines. A workflow declares ordered modules, inputs, variables, requirements, and execution options in JSON or YAML. Xylem prepares the modules and runs the same ordered pipeline for each input.
The workspace contains two Rust packages:
xylem-cliprovides thexylemcommand.xylem-libprovides configuration, module, interpolation, and execution types used by the CLI.
Execution model
- Read a JSON or YAML workflow configuration.
- Check declared host requirements.
- Prepare local or remote modules and their environments.
- Resolve workflow, module, and input variables.
- Execute modules in declaration order for every input.
Inputs may run concurrently. Use the global --threads N option to bound the
Rayon work managed by Xylem. Child tools can still create their own threads.
For the stable module-level interface, see the module contract.