Skip to content

feature: generate workflow from mermaid representation #303

@psschwei

Description

@psschwei

As I user, I want to be able to draft my workflow as a mermaid diagram and have maestro generate a workflow for me.

For example, I want to be able to input:

graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;
Loading

and get this as output:

apiVersion: maestro/v1
kind: Workflow
metadata:
  name: parallel
spec:
  template:
    metadata:
      name: parallel
    agents:
        - A
        - B
        - C
        - D
    prompt: something
    steps:
      - name: start
        agent: A
      - name: parallel
        parallel:
        - B
        - C
      - name: result
        agent: D

Metadata

Metadata

Assignees

No one assigned

    Labels

    documentationImprovements or additions to documentationenhancementNew feature or requestfeatureNew featurenice-to-haveA nice to have not urgent issue

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions