@yemi33/minions 0.1.2430 β 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 +2 -2
- package/dashboard/styles.css +5 -5
- package/package.json +1 -1
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/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 */
|
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"
|