opc-agent 4.0.37 → 4.0.38

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.
@@ -299,13 +299,13 @@
299
299
  }
300
300
 
301
301
  /* Sidebar restructure */
302
- .sidebar-section-title { font-size: 11px; letter-spacing: 1px; color: var(--text-dim); margin: 20px 12px 8px; text-transform: uppercase; font-weight: 600; }
302
+ .sidebar-section-title { font-size: 13px; letter-spacing: 0.5px; color: var(--text-dim); margin: 20px 16px 8px; text-transform: uppercase; font-weight: 600; }
303
303
  .sidebar-divider { height: 1px; background: var(--border); margin: 8px 12px; }
304
304
  .pattern-card.active { border-color: var(--accent); box-shadow: var(--glow-sm); }
305
305
  .agent-list-container { overflow-y: auto; flex: 1; min-height: 0; }
306
306
  .agent-list-item {
307
307
  display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 12px;
308
- cursor: pointer; color: var(--text-muted); transition: all 0.2s ease; font-size: 14px; margin-bottom: 2px; position: relative;
308
+ cursor: pointer; color: var(--text-muted); transition: all 0.2s ease; font-size: 15px; margin-bottom: 2px; position: relative;
309
309
  }
310
310
  .agent-list-item:hover { background: var(--bg-hover); color: var(--text); transform: translateX(4px); }
311
311
  .agent-list-item.active { background: var(--accent-light); color: #fff; font-weight: 600; box-shadow: var(--glow-sm); border: 1px solid var(--border); }
@@ -1125,7 +1125,7 @@
1125
1125
 
1126
1126
  // === Init ===
1127
1127
  async function init() {
1128
- await Promise.all([loadTemplates(), loadAgents()]);
1128
+ await Promise.all([loadTemplates(), loadAgents(), loadSidebarAgents()]);
1129
1129
  loadSidebarGroups();
1130
1130
  handleRoute();
1131
1131
  window.addEventListener('popstate', handleRoute);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opc-agent",
3
- "version": "4.0.37",
3
+ "version": "4.0.38",
4
4
  "description": "Open Agent Framework — Build, test, and run AI Agents for business workstations",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -299,13 +299,13 @@
299
299
  }
300
300
 
301
301
  /* Sidebar restructure */
302
- .sidebar-section-title { font-size: 11px; letter-spacing: 1px; color: var(--text-dim); margin: 20px 12px 8px; text-transform: uppercase; font-weight: 600; }
302
+ .sidebar-section-title { font-size: 13px; letter-spacing: 0.5px; color: var(--text-dim); margin: 20px 16px 8px; text-transform: uppercase; font-weight: 600; }
303
303
  .sidebar-divider { height: 1px; background: var(--border); margin: 8px 12px; }
304
304
  .pattern-card.active { border-color: var(--accent); box-shadow: var(--glow-sm); }
305
305
  .agent-list-container { overflow-y: auto; flex: 1; min-height: 0; }
306
306
  .agent-list-item {
307
307
  display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 12px;
308
- cursor: pointer; color: var(--text-muted); transition: all 0.2s ease; font-size: 14px; margin-bottom: 2px; position: relative;
308
+ cursor: pointer; color: var(--text-muted); transition: all 0.2s ease; font-size: 15px; margin-bottom: 2px; position: relative;
309
309
  }
310
310
  .agent-list-item:hover { background: var(--bg-hover); color: var(--text); transform: translateX(4px); }
311
311
  .agent-list-item.active { background: var(--accent-light); color: #fff; font-weight: 600; box-shadow: var(--glow-sm); border: 1px solid var(--border); }
@@ -1125,7 +1125,7 @@
1125
1125
 
1126
1126
  // === Init ===
1127
1127
  async function init() {
1128
- await Promise.all([loadTemplates(), loadAgents()]);
1128
+ await Promise.all([loadTemplates(), loadAgents(), loadSidebarAgents()]);
1129
1129
  loadSidebarGroups();
1130
1130
  handleRoute();
1131
1131
  window.addEventListener('popstate', handleRoute);