@yemi33/minions 0.1.2434 → 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
|
})();
|
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"
|