@yemi33/minions 0.1.107 → 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,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.108 (2026-04-01)
4
+
5
+ ### Dashboard
6
+ - dashboard/js/render-kb.js
7
+
3
8
  ## 0.1.107 (2026-04-01)
4
9
 
5
10
  ### Dashboard
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.107",
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"