@yemi33/minions 0.1.104 → 0.1.106

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,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.106 (2026-04-01)
4
+
5
+ ### Engine
6
+ - engine/consolidation.js
7
+
8
+ ### Other
9
+ - prd/_test-idempotency.json.bak
10
+
11
+ ## 0.1.105 (2026-04-01)
12
+
13
+ ### Dashboard
14
+ - dashboard/js/render-inbox.js
15
+
16
+ ### Other
17
+ - test/unit.test.js
18
+
3
19
  ## 0.1.104 (2026-04-01)
4
20
 
5
21
  ### Engine
@@ -56,16 +56,17 @@ function renderNotes(notes) {
56
56
 
57
57
  if (!content || !content.trim()) { el.innerHTML = '<p class="empty">No team notes yet.</p>'; return; }
58
58
  el.innerHTML = '<div class="notes-preview" onclick="openNotesModal()" title="Click to expand">' + renderMd(content) + '</div>';
59
+ el.querySelector('.notes-preview')._rawContent = content;
59
60
  }
60
61
 
61
62
  function openNotesModal() {
62
63
  const preview = document.querySelector('.notes-preview');
63
64
  if (!preview) return;
64
- const content = preview.textContent;
65
+ const content = preview._rawContent || preview.textContent;
65
66
  document.getElementById('modal-title').textContent = 'Team Notes';
66
- document.getElementById('modal-body').textContent = content;
67
- document.getElementById('modal-body').style.fontFamily = 'Consolas, monospace';
68
- document.getElementById('modal-body').style.whiteSpace = 'pre-wrap';
67
+ document.getElementById('modal-body').innerHTML = '<div style="font-size:12px;line-height:1.6">' + renderMd(content) + '</div>';
68
+ document.getElementById('modal-body').style.fontFamily = "'Segoe UI', system-ui, sans-serif";
69
+ document.getElementById('modal-body').style.whiteSpace = 'normal';
69
70
  _modalDocContext = { title: 'Team Notes', content, selection: '' };
70
71
  _modalEditable = 'notes.md';
71
72
  _modalFilePath = 'notes.md'; showModalQa();
@@ -134,6 +134,7 @@ function consolidateWithLLM(items, existingNotes, files, config) {
134
134
  return;
135
135
  }
136
136
 
137
+
137
138
  const kbPaths = items.map(item => {
138
139
  const cat = classifyInboxItem(item.name, item.content);
139
140
  const agentMatch = item.name.match(/^(\w+)-/);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.104",
3
+ "version": "0.1.106",
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"