Files
trackgo-fe/.agents/skills/archify/test/fixtures/issue-126/custom-widths.workflow.json
T
shancheas 166e0d40ac feat: introduce archify skill for generating architecture diagrams
- 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.
2026-08-31 11:31:29 +07:00

19 lines
528 B
JSON

{
"schema_version": 2,
"diagram_type": "workflow",
"meta": {
"title": "Sanitized custom widths",
"legend": { "mode": "hidden" }
},
"lanes": [
{ "id": "main", "label": "Main flow" }
],
"nodes": [
{ "id": "compact", "lane": "main", "col": 1, "type": "frontend", "label": "In", "width": 32 },
{ "id": "wide", "lane": "main", "col": 2, "type": "database", "label": "Sanitized downstream service", "width": 240 }
],
"edges": [
{ "id": "compact-wide", "from": "compact", "to": "wide" }
]
}