Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate workflow from mermaid representation #303

Open
psschwei opened this issue Mar 12, 2025 · 0 comments
Open

Generate workflow from mermaid representation #303

psschwei opened this issue Mar 12, 2025 · 0 comments
Labels
documentation Improvements or additions to documentation enhancement New feature or request feature New feature

Comments

@psschwei
Copy link
Collaborator

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
@maximilien maximilien added documentation Improvements or additions to documentation enhancement New feature or request feature New feature labels Mar 13, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation enhancement New feature or request feature New feature
Projects
None yet
Development

No branches or pull requests

2 participants