@yemi33/minions 0.1.2429 β 0.1.2431
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/dashboard/js/settings.js
CHANGED
|
@@ -207,12 +207,12 @@ async function openSettings() {
|
|
|
207
207
|
'</div>' +
|
|
208
208
|
'<div class="settings-pane-sub" style="margin-bottom:8px">Per-cause triggers β each tile automatically dispatches an agent for one PR signal (it names the exact discoverFromPrs site it gates). Enabled tiles are highlighted; disabled tiles are dimmed. When <em>Pause ALL</em> is ON every tile is inert; when it is OFF, each tile decides independently whether its site fires.</div>' +
|
|
209
209
|
'<div class="settings-tile-grid" style="margin-bottom:16px">' +
|
|
210
|
-
settingsTile('Builds', 'set-autoFixBuilds', e.autoFixBuilds !== false, 'Shared dispatch gate: auto-fix agent when a PR build fails; also requires that PR provider polling is enabled', 'π¨', 'auto-fix builds') +
|
|
210
|
+
settingsTile('Fix Builds', 'set-autoFixBuilds', e.autoFixBuilds !== false, 'Shared dispatch gate: auto-fix agent when a PR build fails; also requires that PR provider polling is enabled', 'π¨', 'auto-fix builds') +
|
|
211
211
|
settingsTile('Conflicts', 'set-autoFixConflicts', e.autoFixConflicts !== false, 'Shared dispatch gate: auto-fix agent when a PR merge conflict is detected; also requires that PR provider polling is enabled', 'π', 'auto-fix conflicts') +
|
|
212
212
|
settingsTile('Review PRs', 'set-autoReviewPrs', e.autoReviewPrs !== false, 'Shared dispatch gate: review agent for newly opened agent PRs; also requires that PR provider polling is enabled', 'π', 'auto-review prs') +
|
|
213
213
|
settingsTile('Re-review PRs', 'set-autoReReviewPrs', e.autoReReviewPrs !== false, 'Shared dispatch gate: review agent after a fix push is awaiting re-review; also requires that PR provider polling is enabled', 'π', 'auto-re-review prs') +
|
|
214
214
|
settingsTile('Review Feedback', 'set-autoFixReviewFeedback', e.autoFixReviewFeedback !== false, 'Shared dispatch gate: fix agent for minions changes-requested verdicts; also requires that PR provider polling is enabled', 'βοΈ', 'auto-fix review feedback') +
|
|
215
|
-
settingsTile('Human Comments', 'set-autoFixHumanComments', e.autoFixHumanComments !== false, 'Shared dispatch gate: fix agent for actionable human PR comments; also requires that PR provider polling is enabled', 'π¬', 'auto-fix human comments') +
|
|
215
|
+
settingsTile('Address Human Comments', 'set-autoFixHumanComments', e.autoFixHumanComments !== false, 'Shared dispatch gate: fix agent for actionable human PR comments; also requires that PR provider polling is enabled', 'π¬', 'auto-fix human comments') +
|
|
216
216
|
'</div>' +
|
|
217
217
|
'<div class="settings-stack" style="margin-bottom:16px">' +
|
|
218
218
|
settingsToggle('Eval Loop', 'set-evalLoop', e.evalLoop !== false, 'Gates the reviewβfix iteration loop only (first review, re-review, review-feedback fix). Does NOT gate build-failure, merge-conflict, or human-comment fixes. Use the emergency stop above to halt everything.') +
|
package/dashboard/layout.html
CHANGED
|
@@ -71,7 +71,9 @@
|
|
|
71
71
|
</div>
|
|
72
72
|
<div id="cc-tab-bar" style="display:flex;gap:8px;padding:4px 12px;border-bottom:1px solid var(--border);overflow:hidden;align-items:center;flex-shrink:0"></div>
|
|
73
73
|
<div id="cc-messages" style="flex:1;overflow-y:auto;padding:12px 16px;display:flex;flex-direction:column;gap:10px"></div>
|
|
74
|
-
|
|
74
|
+
<!-- W-ms3nbl6r000971ad: no border-top here β the rule landed directly above
|
|
75
|
+
#cc-suggestions-host, drawing a divider across the top of the pill area. -->
|
|
76
|
+
<div style="padding:12px 16px">
|
|
75
77
|
<div id="cc-suggestions-host"></div>
|
|
76
78
|
<!-- P-2a6d8e74 β image attachment thumbnail chips (paste / drag-drop); hidden until images are attached -->
|
|
77
79
|
<div id="cc-attachments" style="display:none;flex-wrap:wrap;gap:6px;margin-bottom:8px"></div>
|
|
@@ -372,11 +372,12 @@
|
|
|
372
372
|
defines --space-1..5 (4/8/12/16/20); --space-6 / --space-8 exist solely
|
|
373
373
|
inside the #detail-panel scope, so referencing them here made `padding`
|
|
374
374
|
and `margin` invalid at computed-value time β the pill rendered with
|
|
375
|
-
zero padding and the group lost its spacing. Stay on the slim scale.
|
|
375
|
+
zero padding and the group lost its spacing. Stay on the slim scale.
|
|
376
|
+
Left-aligned (W-ms3nbl6r000971ad) to match classic. */
|
|
376
377
|
.cc-suggestions {
|
|
377
378
|
display: flex;
|
|
378
379
|
flex-wrap: wrap;
|
|
379
|
-
justify-content:
|
|
380
|
+
justify-content: flex-start;
|
|
380
381
|
align-items: center;
|
|
381
382
|
gap: var(--space-2);
|
|
382
383
|
width: 100%;
|
package/dashboard/styles.css
CHANGED
|
@@ -103,11 +103,11 @@
|
|
|
103
103
|
/* Sidebar navigation */
|
|
104
104
|
.page-layout { display: flex; flex: 1; min-height: 0; overflow: hidden; }
|
|
105
105
|
.sidebar { width: 150px; min-width: 150px; background: var(--surface); border-right: 1px solid var(--border); padding: var(--space-4) 0; overflow-y: auto; position: sticky; top: 0; }
|
|
106
|
-
.sidebar-link { display: flex; align-items: center; justify-content: space-between; padding: 8px 14px; color: var(--muted); text-decoration: none; font-size: var(--text-
|
|
106
|
+
.sidebar-link { display: flex; align-items: center; justify-content: space-between; padding: 8px 14px; color: var(--muted); text-decoration: none; font-size: var(--text-md); border-left: 3px solid transparent; transition: all var(--transition-fast); cursor: pointer; position: relative; }
|
|
107
107
|
.sidebar-link .notif-badge.done { top: 50%; right: 6px; transform: translateY(-50%); width: 6px; height: 6px; }
|
|
108
108
|
.sidebar-link:hover { color: var(--text); background: var(--surface2); }
|
|
109
109
|
.sidebar-link.active { color: var(--blue); border-left-color: var(--blue); background: var(--surface2); font-weight: 600; }
|
|
110
|
-
.sidebar-count { font-size: var(--text-
|
|
110
|
+
.sidebar-count { font-size: var(--text-md); color: var(--muted); background: var(--surface2); padding: 1px 5px; border-radius: 8px; min-width: 16px; text-align: center; }
|
|
111
111
|
.page-content { flex: 1; overflow-y: auto; min-width: 0; }
|
|
112
112
|
.page { display: none; }
|
|
113
113
|
.page.active { display: block; }
|
|
@@ -755,9 +755,9 @@
|
|
|
755
755
|
.empty-state-add.empty-state-add-muted { color: var(--muted); }
|
|
756
756
|
.empty-state-add.empty-state-add-muted:hover { background: var(--surface); }
|
|
757
757
|
/* Blue variant used for the "Scan" affordance that sits next to "+ Add
|
|
758
|
-
Project" in the projects empty-state β same dashed chip
|
|
759
|
-
blue text instead of green. */
|
|
760
|
-
.empty-state-add.empty-state-add-blue { color: var(--blue);
|
|
758
|
+
Project" in the projects empty-state β same dashed chip and inherited
|
|
759
|
+
projects-bar text size, but blue text instead of green. */
|
|
760
|
+
.empty-state-add.empty-state-add-blue { color: var(--blue); }
|
|
761
761
|
.empty-state-add.empty-state-add-blue:hover { background: rgba(88,166,255,0.1); }
|
|
762
762
|
|
|
763
763
|
/* Badge β unified badge/pill base */
|
|
@@ -1255,10 +1255,12 @@
|
|
|
1255
1255
|
#cc-messages > .cc-msg-action + .cc-msg-action { margin-top: -8px; }
|
|
1256
1256
|
|
|
1257
1257
|
/* Suggested starter prompts (W-ms0vc4d0000ve615): content-sized pills in a
|
|
1258
|
-
|
|
1259
|
-
a long prompt inside the 420px drawer without stretching a short one.
|
|
1258
|
+
left-aligned wrapping row, NOT full-width bars. `max-width` (not `width`)
|
|
1259
|
+
keeps a long prompt inside the 420px drawer without stretching a short one.
|
|
1260
|
+
Left-aligned (W-ms3nbl6r000971ad) so the pill lines up with the composer
|
|
1261
|
+
edge instead of floating mid-drawer. */
|
|
1260
1262
|
.cc-suggestions {
|
|
1261
|
-
display: flex; flex-wrap: wrap; justify-content:
|
|
1263
|
+
display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: center;
|
|
1262
1264
|
gap: var(--space-3);
|
|
1263
1265
|
width: 100%; margin: var(--space-7) auto 0;
|
|
1264
1266
|
}
|
|
@@ -1267,7 +1269,7 @@
|
|
|
1267
1269
|
appearance: none; max-width: 100%; padding: var(--space-3) var(--space-7);
|
|
1268
1270
|
border: 1px solid var(--border); border-radius: 999px;
|
|
1269
1271
|
background: var(--surface2); color: var(--text); font: inherit;
|
|
1270
|
-
font-size: var(--text-md); line-height: 1.4; text-align:
|
|
1272
|
+
font-size: var(--text-md); line-height: 1.4; text-align: left; cursor: pointer;
|
|
1271
1273
|
transition: border-color var(--transition-base), color var(--transition-base);
|
|
1272
1274
|
}
|
|
1273
1275
|
.cc-suggestion:hover { border-color: var(--blue); color: var(--blue); }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2431",
|
|
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"
|