feat: implement dynamic launcher shortcuts, launch intent routing, dynamic theme color overrides, and initial profiles

This commit is contained in:
2026-07-04 14:23:51 -06:00
parent 17b0ccf464
commit 7fe1eda75b
7 changed files with 305 additions and 12 deletions

View File

@@ -0,0 +1,28 @@
{
"id": "lm_studio_remote",
"name": "LM Studio Lite",
"description": "Control local LLMs running on your desktop PC.",
"layout": {
"type": "ActionList",
"id": "lm_controls",
"title": "LM Studio Controller",
"subtitle": "Active Model: Qwen 2.5 7B\nTemperature: 0.7",
"actions": [
{
"id": "open_prompt_input",
"label": "✍️ Enter Chat Prompt",
"intent": "SUBMIT"
},
{
"id": "refresh_models",
"label": "🔄 Refresh Model List",
"intent": "CUSTOM"
},
{
"id": "toggle_temp",
"label": "🌡️ Adjust Temperature",
"intent": "CUSTOM"
}
]
}
}

12
profiles/meatbag.json Normal file
View File

@@ -0,0 +1,12 @@
{
"id": "meatbag",
"name": "Meatbag Agent",
"description": "AI Agent confirmation prompts & haptic alerts.",
"layout": {
"type": "ApprovalRequest",
"id": "meatbag_connect_idle",
"prompt": "Connected and idle. Awaiting agent directives...",
"target": "system",
"tone": "INFO"
}
}