@yemi33/minions 0.1.93 → 0.1.94

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.94 (2026-04-01)
4
+
5
+ ### Dashboard
6
+ - dashboard/js/render-prs.js
7
+
3
8
  ## 0.1.93 (2026-04-01)
4
9
 
5
10
  ### Dashboard
@@ -2,7 +2,7 @@
2
2
 
3
3
  let allPrs = [];
4
4
  let prPage = 0;
5
- const PR_PER_PAGE = 3;
5
+ const PR_PER_PAGE = 25;
6
6
 
7
7
  function prRow(pr) {
8
8
  // Minions review (agent) state — separate from ADO human review
@@ -84,7 +84,7 @@ function openModal(i) {
84
84
  document.getElementById('modal-title').textContent = item.name;
85
85
  document.getElementById('modal-body').innerHTML =
86
86
  '<div style="margin-bottom:12px"><button class="pr-pager-btn" style="font-size:10px;padding:3px 10px" onclick="promoteToKB(\'' + escHtml(item.name) + '\')">Add to Knowledge Base</button></div>' +
87
- '<pre style="white-space:pre-wrap;word-wrap:break-word;margin:0;font-family:Consolas,monospace;font-size:12px;line-height:1.7;color:var(--muted)">' + escHtml(item.content) + '</pre>';
87
+ '<div style="font-size:12px;line-height:1.7;color:var(--muted)">' + renderMd(item.content) + '</div>';
88
88
  _modalDocContext = { title: item.name, content: item.content, selection: '' };
89
89
  _modalFilePath = 'notes/inbox/' + item.name; showModalQa();
90
90
  // 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.93",
3
+ "version": "0.1.94",
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"