@yemi33/minions 0.1.1686 → 0.1.1687
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
|
@@ -335,6 +335,7 @@ async function openScanProjectsModal() {
|
|
|
335
335
|
'<button onclick="_runProjectScan()" style="padding:6px 16px;background:var(--blue);color:#fff;border:none;border-radius:var(--radius-sm);cursor:pointer;white-space:nowrap">Scan</button>' +
|
|
336
336
|
'</div>' +
|
|
337
337
|
'<div id="scan-results" style="color:var(--muted);font-size:12px">Click Scan to find git repos in the directory.</div>' +
|
|
338
|
+
'<div class="cmd-toast" id="scan-toast" style="margin-top:0"></div>' +
|
|
338
339
|
'</div>';
|
|
339
340
|
document.getElementById('modal-body').style.whiteSpace = 'normal';
|
|
340
341
|
document.getElementById('modal-body').style.fontFamily = "'Segoe UI', system-ui, sans-serif";
|
|
@@ -410,19 +411,20 @@ async function _addSelectedProjects() {
|
|
|
410
411
|
var data = await res.json().catch(function() { return {}; });
|
|
411
412
|
if (res.ok) {
|
|
412
413
|
added++;
|
|
414
|
+
var addedName = data.name || repo.name;
|
|
413
415
|
optimisticallyAddProject({
|
|
414
|
-
name:
|
|
416
|
+
name: addedName,
|
|
415
417
|
description: (data.detected && data.detected.description) || repo.description || '',
|
|
416
418
|
path: data.path || repo.path,
|
|
417
419
|
localPath: data.path || repo.path,
|
|
418
420
|
});
|
|
419
421
|
cb.disabled = true;
|
|
420
422
|
cb.closest('label').style.opacity = '0.5';
|
|
423
|
+
showToast('scan-toast', added + ' project(s) added', true);
|
|
421
424
|
}
|
|
422
425
|
} catch { /* continue with next */ }
|
|
423
426
|
}
|
|
424
427
|
if (added > 0) {
|
|
425
|
-
showToast('cmd-toast', added + ' project(s) added', true);
|
|
426
428
|
refresh();
|
|
427
429
|
}
|
|
428
430
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1687",
|
|
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"
|