@yemi33/minions 0.1.692 → 0.1.693
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 -0
- package/engine/lifecycle.js +7 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/engine/lifecycle.js
CHANGED
|
@@ -583,6 +583,13 @@ function syncPrsFromOutput(output, agentId, meta, config) {
|
|
|
583
583
|
while ((match = urlPattern.exec(text)) !== null) prMatches.add(match[1] || match[2]);
|
|
584
584
|
}
|
|
585
585
|
}
|
|
586
|
+
// Also scan assistant text blocks for PR URLs and "PR created" patterns
|
|
587
|
+
if (block.type === 'text' && block.text) {
|
|
588
|
+
while ((match = urlPattern.exec(block.text)) !== null) prMatches.add(match[1] || match[2]);
|
|
589
|
+
const textCreatedPattern = /(?:PR created|created PR|E2E PR)[:\s#-]*(\d{1,})/gi;
|
|
590
|
+
let m2;
|
|
591
|
+
while ((m2 = textCreatedPattern.exec(block.text)) !== null) prMatches.add(m2[1]);
|
|
592
|
+
}
|
|
586
593
|
}
|
|
587
594
|
if (parsed.type === 'result' && parsed.result) {
|
|
588
595
|
const resultText = parsed.result;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.693",
|
|
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"
|