@yemi33/minions 0.1.1674 → 0.1.1676
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 +11 -0
- package/dashboard/js/render-prs.js +2 -2
- package/dashboard/styles.css +2 -1
- package/engine/copilot-models.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.1676 (2026-05-02)
|
|
4
|
+
|
|
5
|
+
### Other
|
|
6
|
+
- Revert "fix: cap Signed Off By column width and wrap multi-reviewer overflow"
|
|
7
|
+
- Revert "fix: widen Signed Off By column from 140px to 220px"
|
|
8
|
+
|
|
9
|
+
## 0.1.1675 (2026-05-02)
|
|
10
|
+
|
|
11
|
+
### Fixes
|
|
12
|
+
- widen Signed Off By column from 140px to 220px
|
|
13
|
+
|
|
3
14
|
## 0.1.1674 (2026-05-02)
|
|
4
15
|
|
|
5
16
|
### Other
|
|
@@ -34,7 +34,7 @@ function prRow(pr) {
|
|
|
34
34
|
'<td><span class="pr-agent">' + escapeHtml(pr.agent || '—') + '</span></td>' +
|
|
35
35
|
'<td><span class="' + branchClass + '"' + (branchError ? ' title="' + escapeHtml(branchError) + '"' : '') + '>' + escapeHtml(branchLabel) + '</span>' + pendingReasonHtml + '</td>' +
|
|
36
36
|
'<td><span class="pr-badge ' + reviewClass + '"' + (reviewTitle ? ' title="' + escapeHtml(reviewTitle) + '"' : '') + '>' + escapeHtml(reviewLabel) + '</span></td>' +
|
|
37
|
-
'<td
|
|
37
|
+
'<td>' + (sq.reviewer && sq.status !== 'waiting' ? '<span class="pr-agent" title="' + escapeHtml(sq.note || '') + '">' + escapeHtml(sq.reviewer) + '</span>' : sq.reviewer && sq.status === 'waiting' ? '<span class="pr-agent" style="color:var(--muted)" title="Vote pending confirmation">' + escapeHtml(sq.reviewer) + '…</span>' : pr.reviewedBy && pr.reviewedBy.length ? '<span class="pr-agent">' + escapeHtml(pr.reviewedBy.join(', ')) + '</span>' : '<span style="color:var(--muted);font-size:11px">—</span>') + '</td>' +
|
|
38
38
|
'<td><span class="pr-badge ' + buildClass + '"' + (buildTitle ? ' title="' + escapeHtml(buildTitle) + '"' : '') + '>' + escapeHtml(buildLabel) + '</span></td>' +
|
|
39
39
|
'<td><span class="pr-badge ' + statusClass + '">' + escapeHtml(statusLabel) + '</span></td>' +
|
|
40
40
|
'<td><span class="pr-date">' + escapeHtml((pr.created || '—').slice(0, 16).replace('T', ' ')) + '</span></td>' +
|
|
@@ -44,7 +44,7 @@ function prRow(pr) {
|
|
|
44
44
|
|
|
45
45
|
function prTableHtml(rows) {
|
|
46
46
|
return '<div class="pr-table-wrap"><table class="pr-table"><thead><tr>' +
|
|
47
|
-
'<th>PR</th><th>Title</th><th>Agent</th><th>Branch</th><th>Review</th><th
|
|
47
|
+
'<th>PR</th><th>Title</th><th>Agent</th><th>Branch</th><th>Review</th><th>Signed Off By</th><th>Build</th><th>Status</th><th>Created</th><th></th>' +
|
|
48
48
|
'</tr></thead><tbody>' + rows + '</tbody></table></div>';
|
|
49
49
|
}
|
|
50
50
|
|
package/dashboard/styles.css
CHANGED
|
@@ -213,6 +213,7 @@
|
|
|
213
213
|
.prd-item-row.st-in-progress { border-left-color: var(--yellow); animation: prdWipPulse 2s infinite; }
|
|
214
214
|
@keyframes prdWipPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(210,153,34,0); } 50% { box-shadow: 0 0 0 4px rgba(210,153,34,0.2); } }
|
|
215
215
|
.prd-item-row.st-failed { border-left-color: var(--red); }
|
|
216
|
+
.prd-item-row.st-needs-human-review { border-left-color: var(--orange); }
|
|
216
217
|
.prd-item-row.st-updated { border-left-color: var(--purple); }
|
|
217
218
|
.prd-item-row.st-paused { border-left-color: var(--muted); opacity: 0.5; }
|
|
218
219
|
.prd-item-id { font-family: Consolas, monospace; color: var(--muted); min-width: 36px; font-size: 0.9em; }
|
|
@@ -251,7 +252,6 @@
|
|
|
251
252
|
.pr-table-wrap { overflow-x: auto; }
|
|
252
253
|
.pr-table { width: 100%; border-collapse: collapse; font-size: var(--text-md); table-layout: auto; }
|
|
253
254
|
.pr-table th:last-child, .pr-table td:last-child { width: 36px; min-width: 36px; text-align: center; }
|
|
254
|
-
.pr-table th.pr-col-signoff, .pr-table td.pr-col-signoff { width: 140px; max-width: 140px; white-space: normal; word-break: break-word; }
|
|
255
255
|
.pr-table th { text-align: left; color: var(--muted); font-weight: 500; font-size: var(--text-base); text-transform: uppercase; letter-spacing: 0.5px; padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--border); }
|
|
256
256
|
.pr-table td { padding: var(--space-5); border-bottom: 1px solid var(--border); vertical-align: middle; white-space: nowrap; }
|
|
257
257
|
.pr-table tr:last-child td { border-bottom: none; }
|
|
@@ -268,6 +268,7 @@
|
|
|
268
268
|
.pr-badge.active { background: rgba(88,166,255,0.15); color: var(--blue); border: 1px solid var(--blue); }
|
|
269
269
|
.pr-badge.approved { background: rgba(63,185,80,0.15); color: var(--green); border: 1px solid var(--green); }
|
|
270
270
|
.pr-badge.rejected { background: rgba(248,81,73,0.15); color: var(--red); border: 1px solid var(--red); }
|
|
271
|
+
.pr-badge.needs-review { background: rgba(227,179,65,0.15); color: var(--orange); border: 1px solid var(--orange); }
|
|
271
272
|
.pr-badge.review-escalated { background: rgba(227,179,65,0.22); color: var(--orange); border: 1px dashed var(--orange); font-weight: 700; }
|
|
272
273
|
.pr-badge.merged { background: rgba(188,140,255,0.15); color: var(--purple); border: 1px solid var(--purple); }
|
|
273
274
|
.pr-badge.building { background: rgba(210,153,34,0.15); color: var(--yellow); border: 1px solid var(--yellow); animation: pulse 1.5s infinite; }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1676",
|
|
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"
|