- Added a new Archify skill, enabling users to create polished architecture, workflow, sequence, data-flow, and lifecycle diagrams. - Implemented comprehensive functionality including rendering, validation, and delivery of diagrams in various formats. - Integrated a user-friendly command-line interface for generating and previewing diagrams. - Developed supporting files including package.json, LICENSE, and SKILL.md for documentation and licensing. - Added unit tests to ensure reliability and functionality of the new skill. These changes enhance the application by providing a structured approach to visualizing system architecture and workflows, improving user experience and data representation.
23 lines
915 B
JSON
23 lines
915 B
JSON
{
|
|
"schema_version": 1,
|
|
"diagram_type": "workflow",
|
|
"meta": {
|
|
"title": "Legacy narrow workflow",
|
|
"viewBox": [700, 400]
|
|
},
|
|
"lanes": [
|
|
{ "id": "first", "label": "First" },
|
|
{ "id": "second", "label": "Second" }
|
|
],
|
|
"nodes": [
|
|
{ "id": "node_0", "lane": "first", "col": 0, "type": "frontend", "label": "frontend" },
|
|
{ "id": "node_1", "lane": "first", "col": 2, "type": "backend", "label": "backend" },
|
|
{ "id": "node_2", "lane": "first", "col": 4, "type": "database", "label": "database" },
|
|
{ "id": "node_3", "lane": "second", "col": 0, "type": "cloud", "label": "cloud" },
|
|
{ "id": "node_4", "lane": "second", "col": 2, "type": "security", "label": "security" },
|
|
{ "id": "node_5", "lane": "second", "col": 4, "type": "messagebus", "label": "messagebus" },
|
|
{ "id": "node_6", "lane": "second", "col": 5, "type": "external", "label": "external" }
|
|
],
|
|
"edges": []
|
|
}
|