agentgui 1.0.377 → 1.0.379

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.377",
3
+ "version": "1.0.379",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
package/static/index.html CHANGED
@@ -2086,6 +2086,24 @@
2086
2086
  html.dark .tool-color-search { background: #0a1c0e; }
2087
2087
  .tool-color-search > .folded-tool-body { border-top-color: #bbf7d0; }
2088
2088
  html.dark .tool-color-search > .folded-tool-body { border-top-color: #16a34a; }
2089
+
2090
+ /* Skill - Yellow/Amber */
2091
+ .tool-color-skill.folded-tool > .folded-tool-bar { background: #fef3c7; }
2092
+ html.dark .tool-color-skill.folded-tool > .folded-tool-bar { background: #422006; }
2093
+ .tool-color-skill.folded-tool > .folded-tool-bar:hover { background: #fde68a; }
2094
+ html.dark .tool-color-skill.folded-tool > .folded-tool-bar:hover { background: #78350f; }
2095
+ .tool-color-skill.folded-tool > .folded-tool-bar::before { color: #d97706; }
2096
+ html.dark .tool-color-skill.folded-tool > .folded-tool-bar::before { color: #fbbf24; }
2097
+ .tool-color-skill .folded-tool-icon { color: #d97706; }
2098
+ html.dark .tool-color-skill .folded-tool-icon { color: #fbbf24; }
2099
+ .tool-color-skill .folded-tool-name { color: #92400e; }
2100
+ html.dark .tool-color-skill .folded-tool-name { color: #fcd34d; }
2101
+ .tool-color-skill .folded-tool-desc { color: #b45309; }
2102
+ html.dark .tool-color-skill .folded-tool-desc { color: #fbbf24; }
2103
+ .tool-color-skill { background: #fffbeb; }
2104
+ html.dark .tool-color-skill { background: #1c1507; }
2105
+ .tool-color-skill > .folded-tool-body { border-top-color: #fde68a; }
2106
+ html.dark .tool-color-skill > .folded-tool-body { border-top-color: #78350f; }
2089
2107
 
2090
2108
  .block-type-tool_result { background: #f3f4f6; }
2091
2109
  html.dark .block-type-tool_result { background: #1f2937; }
@@ -427,7 +427,7 @@ class StreamingRenderer {
427
427
  const map = {
428
428
  read: 'read', write: 'write', edit: 'edit', bash: 'bash', glob: 'glob', grep: 'grep',
429
429
  webfetch: 'web', websearch: 'web', todowrite: 'todo', task: 'task', notebookedit: 'edit',
430
- execute: 'execute', sleep: 'sleep', search: 'search'
430
+ execute: 'execute', sleep: 'sleep', search: 'search', skill: 'skill'
431
431
  };
432
432
  return `tool-color-${map[n] || 'default'}`;
433
433
  }