@yemi33/minions 0.1.106 → 0.1.108

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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.108 (2026-04-01)
4
+
5
+ ### Dashboard
6
+ - dashboard/js/render-kb.js
7
+
8
+ ## 0.1.107 (2026-04-01)
9
+
10
+ ### Dashboard
11
+ - dashboard/styles.css
12
+
3
13
  ## 0.1.106 (2026-04-01)
4
14
 
5
15
  ### Engine
@@ -162,7 +162,10 @@ async function kbOpenItem(category, file) {
162
162
  const content = await fetch('/api/knowledge/' + category + '/' + encodeURIComponent(file)).then(r => r.text());
163
163
  const display = content.replace(/^---[\s\S]*?---\n*/m, '');
164
164
  document.getElementById('modal-title').textContent = file;
165
- document.getElementById('modal-body').textContent = display;
165
+ const modalBody = document.getElementById('modal-body');
166
+ modalBody.innerHTML = '<div style="font-size:12px;line-height:1.6">' + renderMd(display) + '</div>';
167
+ modalBody.style.fontFamily = "'Segoe UI', system-ui, sans-serif";
168
+ modalBody.style.whiteSpace = 'normal';
166
169
  _modalDocContext = { title: file, content: display, selection: '' };
167
170
  _modalFilePath = 'knowledge/' + category + '/' + file; showModalQa();
168
171
  // Clear notification badge when opening this document
@@ -188,7 +188,7 @@
188
188
  .prd-item-priority.low { background: rgba(139,148,158,0.15); color: var(--muted); }
189
189
  .prd-project-badge { font-size: var(--text-xs); padding: var(--space-1) 5px; border-radius: var(--radius-md); background: rgba(56,139,253,0.12); color: var(--blue); border: 1px solid rgba(56,139,253,0.25); white-space: nowrap; }
190
190
 
191
- .notes-preview { max-height: 400px; overflow-y: auto; font-size: var(--text-md); line-height: 1.6; color: var(--muted); font-family: Consolas, monospace; white-space: pre-wrap; word-wrap: break-word; background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-6) var(--space-7); cursor: pointer; transition: border-color var(--transition-base); }
191
+ .notes-preview { max-height: 400px; overflow-y: auto; font-size: var(--text-md); line-height: 1.6; color: var(--muted); font-family: 'Segoe UI', system-ui, sans-serif; white-space: normal; word-wrap: break-word; background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-6) var(--space-7); cursor: pointer; transition: border-color var(--transition-base); }
192
192
  .notes-preview:hover { border-color: var(--blue); }
193
193
  .inbox-item { background: var(--surface2); border: 1px solid var(--border); border-left: 3px solid var(--purple); border-radius: var(--radius-sm); padding: var(--space-5) var(--space-6); cursor: pointer; }
194
194
  .inbox-item:hover { border-color: var(--blue); border-left-color: var(--blue); }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.106",
3
+ "version": "0.1.108",
4
4
  "description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
5
5
  "bin": {
6
6
  "minions": "bin/minions.js"