- 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.
41 lines
855 B
JSON
41 lines
855 B
JSON
{
|
|
"schema_version": 1,
|
|
"diagram_type": "workflow",
|
|
"meta": {
|
|
"title": "自动连线节点边框避让回归",
|
|
"quality_profile": "showcase",
|
|
"viewBox": [720, 360]
|
|
},
|
|
"lanes": [
|
|
{ "id": "orchestrator", "label": "Orchestrator PTY" },
|
|
{ "id": "runtime", "label": "Hive Runtime" }
|
|
],
|
|
"nodes": [
|
|
{
|
|
"id": "team_send",
|
|
"lane": "orchestrator",
|
|
"col": 2,
|
|
"type": "backend",
|
|
"label": "team send 派单",
|
|
"sublabel": "选择目标 Worker"
|
|
},
|
|
{
|
|
"id": "inject",
|
|
"lane": "runtime",
|
|
"col": 1,
|
|
"type": "security",
|
|
"label": "校验并注入输入",
|
|
"sublabel": "UI token → PTY stdin"
|
|
}
|
|
],
|
|
"edges": [
|
|
{
|
|
"id": "stdin",
|
|
"from": "inject",
|
|
"to": "team_send",
|
|
"label": "PTY stdin",
|
|
"variant": "emphasis"
|
|
}
|
|
]
|
|
}
|