feat(workflows): replace basic templates with 8 rich hand-crafted templates

Replace auto-generated pattern-based templates with complex, real-world
workflow templates showcasing all node types and edge features:

- Code Review Pipeline: sequential chain with checkpointing
- Research & Summarize: 3 parallel agents via fan-out/fan-in
- Customer Support Triage: conditional routing with expression edges
- Content Creation Pipeline: writer/editor revision loop
- Multi-Agent Debate: proposer/critic debate loop
- Data Processing with Validation: invoke-function nodes, state scopes
- Approval Workflow: request-port for human-in-the-loop review
- Nested Workflow Orchestrator: inline sub-workflow composition

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
David Kaya
2026-04-05 22:27:35 +02:00
co-authored by Copilot
parent 81eb8f7c82
commit b302ea5979
4 changed files with 731 additions and 32 deletions
+1 -1
View File
@@ -117,7 +117,7 @@ describe('AryxAppService workflow operations', () => {
const workspace = createWorkspaceSeed();
const service = createService(workspace);
const result = await service.createWorkflowFromTemplate('workflow-template-sequential', {
const result = await service.createWorkflowFromTemplate('workflow-template-code-review', {
name: 'Template Copy',
});