- 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.
20 lines
533 B
JSON
20 lines
533 B
JSON
{
|
|
"schema_version": 2,
|
|
"diagram_type": "workflow",
|
|
"meta": {
|
|
"title": "Sanitized explicit viewBox",
|
|
"viewBox": [1600, 520],
|
|
"legend": { "mode": "hidden" }
|
|
},
|
|
"lanes": [
|
|
{ "id": "main", "label": "Main flow" }
|
|
],
|
|
"nodes": [
|
|
{ "id": "start", "lane": "main", "col": 0, "type": "frontend", "label": "Start" },
|
|
{ "id": "finish", "lane": "main", "col": 5, "type": "backend", "label": "Finish" }
|
|
],
|
|
"edges": [
|
|
{ "id": "start-finish", "from": "start", "to": "finish", "label": "complete" }
|
|
]
|
|
}
|