@yemi33/minions 0.1.1689 → 0.1.1690
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 +5 -1
- package/engine/consolidation.js +6 -1
- package/engine/copilot-models.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.1690 (2026-05-03)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- prefer az cli for ado tokens (#1996)
|
|
7
7
|
|
|
8
|
+
### Other
|
|
9
|
+
- test(consolidation): add unit tests for buildConsolidationPrompt, consolidateWithRegex, consolidateWithLLM, archiveInboxFiles (#1998)
|
|
10
|
+
- test(preflight): add unit tests for runtime-fleet helpers (_distinctRuntimes, _checkRuntimeBinary, _warmModelCache, _fleetSummaryResults, _modelDiscoveryResults) (#1997)
|
|
11
|
+
|
|
8
12
|
## 0.1.1688 (2026-05-02)
|
|
9
13
|
|
|
10
14
|
### Fixes
|
package/engine/consolidation.js
CHANGED
|
@@ -283,7 +283,7 @@ function consolidateWithRegex(items, files) {
|
|
|
283
283
|
else if (nameLower.includes('explore')) category = 'exploration';
|
|
284
284
|
else if (contentLower.includes('bug') || contentLower.includes('fix')) category = 'bugs-fixes';
|
|
285
285
|
|
|
286
|
-
const numberedPattern = /^\d+\.\s+\*\*(.+?)\*\*\s*[\u2014\u2013:-]\s*(.+)/;
|
|
286
|
+
const numberedPattern = /^\d+\.\s+\*\*(.+?)\*\*\s*(?:--|[\u2014\u2013:-])\s*(.+)/;
|
|
287
287
|
const bulletPattern = /^[-*]\s+\*\*(.+?)\*\*[:\s]+(.+)/;
|
|
288
288
|
const sectionPattern = /^###+\s+(.+)/;
|
|
289
289
|
const importantKeywords = /\b(must|never|always|convention|pattern|gotcha|warning|important|rule|tip|note that)\b/i;
|
|
@@ -470,4 +470,9 @@ module.exports = {
|
|
|
470
470
|
consolidateInbox,
|
|
471
471
|
classifyToKnowledgeBase,
|
|
472
472
|
checkDuplicateHash,
|
|
473
|
+
// exported for testing
|
|
474
|
+
buildConsolidationPrompt,
|
|
475
|
+
consolidateWithLLM,
|
|
476
|
+
consolidateWithRegex,
|
|
477
|
+
archiveInboxFiles,
|
|
473
478
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1690",
|
|
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"
|