user-flow-diagram

Solid

Generate user flow diagrams and flowcharts using Mermaid and other formats

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 95/100

Stars 20%
97
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# User Flow Diagram Skill ## Purpose Generate user flow diagrams, flowcharts, and navigation maps to visualize user journeys and application flows. ## Capabilities - Create Mermaid.js flow diagrams - Generate flowcharts from user journeys - Export to SVG, PNG, and other formats - Validate flow completeness - Identify dead ends and loops - Generate sitemap visualizations ## Target Processes - wireframing.js - user-journey-mapping.js - information-architecture.js ## Integration Points - Mermaid.js for diagram generation - diagrams.net API for export - PlantUML for alternative syntax ## Input Schema ```json { "type": "object", "properties": { "flowData": { "type": "object", "description": "User flow data structure", "properties": { "nodes": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "label": { "type": "string" }, "type": { "type": "string" } } } }, "edges": { "type": "array", "items": { "type": "object", "properties": { "from": { "type": "string" }, "to": { "type": "string" }, "label": { "type": "string" } } } } } }, "diagramType": { "type": "string", "enum": ["flowchart", "sequence", "state", "journey"], "default": "flo...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Related Skills