Functional audit found dashboard and editor render blank — they depend on the removed sw.* imperative SDK (sw.tabs, sw.chat, sw.layout, etc). Tagged with requires: ["legacy-sdk"] so the installer auto-sets dormant. Generalized the dormant requires check: any unmet requirement now triggers dormant status, not just "chat". Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
20 lines
662 B
JSON
20 lines
662 B
JSON
{
|
|
"id": "editor",
|
|
"title": "Editor",
|
|
"type": "full",
|
|
"version": "0.31.0",
|
|
"tier": "browser",
|
|
"author": "Switchboard Core",
|
|
"icon": "✏️",
|
|
"description": "Code editor with workspace management, file tree, and AI assist (requires legacy sw.* SDK — dormant until rewritten)",
|
|
"requires": ["legacy-sdk"],
|
|
"route": "/s/editor",
|
|
"layout": "editor",
|
|
"permissions": [],
|
|
"settings": [
|
|
{ "key": "font_size", "label": "Font Size", "type": "number", "default": 13 },
|
|
{ "key": "tab_size", "label": "Tab Size", "type": "number", "default": 4 },
|
|
{ "key": "word_wrap", "label": "Word Wrap", "type": "boolean", "default": false }
|
|
]
|
|
}
|