@dgplsoares/singulai-ds-mcp 0.6.0 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data/catalog.json +49 -2
- package/package.json +1 -1
package/dist/data/catalog.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.8.0",
|
|
3
3
|
"generated_at": "2026-05-12",
|
|
4
4
|
"design_system": {
|
|
5
5
|
"name": "Singulai Design System",
|
|
@@ -260,6 +260,16 @@
|
|
|
260
260
|
"bottom-end",
|
|
261
261
|
"top-start",
|
|
262
262
|
"top-end"
|
|
263
|
+
],
|
|
264
|
+
"AiCreativityLevel": [
|
|
265
|
+
"low",
|
|
266
|
+
"medium",
|
|
267
|
+
"high"
|
|
268
|
+
],
|
|
269
|
+
"AiVoiceTone": [
|
|
270
|
+
"formal",
|
|
271
|
+
"casual",
|
|
272
|
+
"tecnico"
|
|
263
273
|
]
|
|
264
274
|
},
|
|
265
275
|
"components": [
|
|
@@ -936,7 +946,7 @@
|
|
|
936
946
|
{
|
|
937
947
|
"name": "AiAssistantPanelComponent",
|
|
938
948
|
"selector": "ds-ai-assistant-panel",
|
|
939
|
-
"description": "Painel lateral do Agente IA — header com tabs (current/new/chats) + créditos pill + actions (settings, maximize/minimize, close) + timeline de mensagens + action prompts + composer. Modo embedded para projeção em mobile bottom-sheet.",
|
|
949
|
+
"description": "Painel lateral do Agente IA — header com tabs (current/new/chats) + créditos pill + actions (settings, maximize/minimize, close) + timeline de mensagens + action prompts + composer. Modo embedded para projeção em mobile bottom-sheet. CHAT-1.3: adicionado slot [ai-panel-body] para embedar brain do chat + showMaximize input + settings dropdown com 4 data-switchers (G1) + send button hover micro-anim (G6). CHAT-1.5: input showTabs adicionado para evitar duplicacao de tabs quando body projetado ja tem.",
|
|
940
950
|
"tags": [
|
|
941
951
|
"ai",
|
|
942
952
|
"assistant",
|
|
@@ -1023,10 +1033,47 @@
|
|
|
1023
1033
|
"type": "string",
|
|
1024
1034
|
"default": "'branding/icons/ai-assistant/close.svg'",
|
|
1025
1035
|
"description": "Ícone close (split-ready)."
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
"name": "useBodySlot",
|
|
1039
|
+
"type": "boolean",
|
|
1040
|
+
"default": "false",
|
|
1041
|
+
"description": "CHAT-1.3: quando true, substitui o renderer hardcoded (timeline+actionPrompts+form) pelo <ng-content select='[ai-panel-body]'> projetado. Use para embedar <app-ai-chat-timeline>."
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"name": "showMaximize",
|
|
1045
|
+
"type": "boolean",
|
|
1046
|
+
"default": "true",
|
|
1047
|
+
"description": "CHAT-1.3: controla render do botao maximize. Default true (desktop). Mobile passa false (Figma 1149-14553 nao tem maximize)."
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
"name": "aiPromptConfig",
|
|
1051
|
+
"type": "AiPromptConfig",
|
|
1052
|
+
"default": "DEFAULT_AI_PROMPT_CONFIG",
|
|
1053
|
+
"description": "G1: config dos 4 data-switchers do settings dropdown (criatividade, tomVoz, searchExternal, extendedThinking)."
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"name": "showTabs",
|
|
1057
|
+
"type": "boolean",
|
|
1058
|
+
"default": "true",
|
|
1059
|
+
"description": "CHAT-1.5: controla render da row de tabs no header. Quando useBodySlot=true (caller projeta body com suas proprias tabs ex: app-ai-chat-timeline), passar `false` evita duplicacao visual. Tech debt CHAT-2: refactor timeline para usar tabs do DS panel como source of truth."
|
|
1026
1060
|
}
|
|
1027
1061
|
],
|
|
1028
1062
|
"examples": [
|
|
1029
1063
|
"<ds-ai-assistant-panel page-layout-ai [showTitle]=\"true\" [credits]=\"creditsLeft()\" [messages]=\"chatMessages()\" [actionPrompts]=\"suggestions()\" />"
|
|
1064
|
+
],
|
|
1065
|
+
"outputs": [
|
|
1066
|
+
{
|
|
1067
|
+
"name": "aiPromptConfigChange",
|
|
1068
|
+
"type": "EventEmitter<AiPromptConfig>",
|
|
1069
|
+
"description": "G1: emite quando user altera switcher no settings dropdown. Caller persiste e re-injeta."
|
|
1070
|
+
}
|
|
1071
|
+
],
|
|
1072
|
+
"slots": [
|
|
1073
|
+
{
|
|
1074
|
+
"name": "ai-panel-body",
|
|
1075
|
+
"description": "CHAT-1.3 (DEC-CHAT1-API-1): quando useBodySlot=true, projete aqui o brain do chat (ex: <app-ai-chat-timeline ai-panel-body>). Caso contrario, ignorado."
|
|
1076
|
+
}
|
|
1030
1077
|
]
|
|
1031
1078
|
},
|
|
1032
1079
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dgplsoares/singulai-ds-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "MCP server exposing the Singulai Design System (Angular 20) to AI agents \u2014 Claude Desktop, Claude Code, Cursor, Continue.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|