Files
BMAD-METHOD/src/modules/bmm/workflows/frame-expert/create-flowchart/workflow.yaml
mrsaifullah52 05ccd1904c Feature/frame expert agent #890 (#905)
* feat: add frame-expert agent definition

- Add frame-expert.agent.yaml with persona and workflow menu
- Agent specializes in Excalidraw visual representations
- Supports flowcharts, diagrams, dataflows, and wireframes

Closes #890

* feat: add frame-expert workflows and shared resources

- Add 4 workflows: create-flowchart, create-diagram, create-dataflow, create-wireframe
- Include shared Excalidraw helpers, library, templates, and validation
- Each workflow has instructions, checklist, and workflow.yaml

Related to #890

* feat: register frame-expert workflows in manifest

- Add create-flowchart workflow entry
- Add create-diagram workflow entry
- Add create-dataflow workflow entry
- Add create-wireframe workflow entry

Related to #890

* feat: integrate frame-expert into team configurations

- Add frame-expert to default-party.csv with full agent details
- Add frame-expert to team-fullstack.yaml agent list
- Frame-expert now available in fullstack team workflows

Related to #890
2025-11-15 09:39:46 -06:00

29 lines
984 B
YAML

name: create-flowchart
description: "Create a flowchart visualization in Excalidraw format for processes, pipelines, or logic flows"
author: "BMad"
# Workflow components
installed_path: "{project-root}/{bmad_folder}/bmm/workflows/frame-expert/create-flowchart"
shared_path: "{project-root}/{bmad_folder}/bmm/workflows/frame-expert/_shared"
instructions: "{installed_path}/instructions.md"
validation: "{installed_path}/checklist.md"
# Shared resources
helpers: "{shared_path}/excalidraw-helpers.md"
templates: "{shared_path}/excalidraw-templates.yaml"
library: "{shared_path}/excalidraw-library.json"
# Variables
variables:
flowchart_type: "" # Will be elicited
complexity: "" # Will be elicited
decision_points: "" # Will be elicited
save_location: "" # Will be elicited
theme_choice: "" # Will be elicited
custom_colors: {} # For custom theme
default_output_file: "{project-root}/docs/flowcharts/flowchart-{timestamp}.excalidraw"
standalone: true
web_bundle: false