@yemi33/minions 0.1.2433 → 0.1.2435
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.
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
var n = _knowledgeCounts.notes;
|
|
40
40
|
var k = _knowledgeCounts.kb;
|
|
41
41
|
var total = p + (n || 0) + (k || 0);
|
|
42
|
-
var detail = p + '
|
|
42
|
+
var detail = p + ' pin · ' + (n == null ? '…' : n) + ' notes · ' + (k == null ? '…' : k) + ' KB';
|
|
43
43
|
updateTile('knowledge', total, detail, total ? 'blue' : null);
|
|
44
44
|
}
|
|
45
45
|
|
|
@@ -571,6 +571,6 @@
|
|
|
571
571
|
});
|
|
572
572
|
}
|
|
573
573
|
// Populate the notes + KB counts shortly after first paint so the tile
|
|
574
|
-
// detail reads "N
|
|
574
|
+
// detail reads "N pin · M notes · K KB" without waiting for a modal open.
|
|
575
575
|
setTimeout(loadKnowledgeCounts, 1500);
|
|
576
576
|
})();
|
|
@@ -162,12 +162,10 @@
|
|
|
162
162
|
pill.setAttribute('aria-checked', isActive ? 'true' : 'false');
|
|
163
163
|
var proj = projectByName && projectByName[p];
|
|
164
164
|
if (proj) {
|
|
165
|
-
//
|
|
166
|
-
//
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
: null;
|
|
170
|
-
if (summ && summ.titleText) pill.title = summ.titleText;
|
|
165
|
+
// The git + checkout detail is surfaced exclusively via the custom
|
|
166
|
+
// popover layered on below (hover/focus); we deliberately do NOT set a
|
|
167
|
+
// native title= here — it would render a second, redundant browser
|
|
168
|
+
// tooltip overlapping the popover.
|
|
171
169
|
_wirePillHover(pill, proj);
|
|
172
170
|
}
|
|
173
171
|
group.appendChild(pill);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2435",
|
|
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"
|