@yemi33/minions 0.1.341 → 0.1.343
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 +10 -0
- package/dashboard/js/render-prs.js +1 -1
- package/engine/playbook.js +0 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -27,7 +27,7 @@ function prRow(pr) {
|
|
|
27
27
|
'<td>' + (sq.reviewer && sq.status !== 'waiting' ? '<span class="pr-agent" title="' + escHtml(sq.note || '') + '">' + escHtml(sq.reviewer) + '</span>' : sq.reviewer && sq.status === 'waiting' ? '<span class="pr-agent" style="color:var(--muted)" title="Vote pending confirmation">' + escHtml(sq.reviewer) + '…</span>' : pr.reviewedBy && pr.reviewedBy.length ? '<span class="pr-agent">' + escHtml(pr.reviewedBy.join(', ')) + '</span>' : '<span style="color:var(--muted);font-size:11px">—</span>') + '</td>' +
|
|
28
28
|
'<td><span class="pr-badge ' + buildClass + '">' + escHtml(buildLabel) + '</span></td>' +
|
|
29
29
|
'<td><span class="pr-badge ' + statusClass + '">' + escHtml(statusLabel) + '</span></td>' +
|
|
30
|
-
'<td><span class="pr-date">' + escHtml((pr.created || '—').slice(0,
|
|
30
|
+
'<td><span class="pr-date">' + escHtml((pr.created || '—').slice(0, 16).replace('T', ' ')) + '</span></td>' +
|
|
31
31
|
'</tr>';
|
|
32
32
|
}
|
|
33
33
|
|
package/engine/playbook.js
CHANGED
|
@@ -293,14 +293,6 @@ function renderPlaybook(type, vars) {
|
|
|
293
293
|
log('warn', `Playbook "${type}": substituted values contain unresolved {{...}} patterns (potential self-reference): ${selfRefVars.join(', ')}`);
|
|
294
294
|
}
|
|
295
295
|
|
|
296
|
-
// Warn when a substituted value itself contains {{...}} patterns (potential self-reference)
|
|
297
|
-
const selfRefVars = Object.entries(allVars)
|
|
298
|
-
.filter(([, val]) => /\{\{\w+\}\}/.test(String(val)))
|
|
299
|
-
.map(([key]) => key);
|
|
300
|
-
if (selfRefVars.length > 0) {
|
|
301
|
-
log('warn', `Playbook "${type}": substituted values contain unresolved {{...}} patterns (potential self-reference): ${selfRefVars.join(', ')}`);
|
|
302
|
-
}
|
|
303
|
-
|
|
304
296
|
// Warn on variables that resolved to empty string
|
|
305
297
|
const emptyVars = Object.entries(allVars)
|
|
306
298
|
.filter(([, val]) => String(val) === '')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.343",
|
|
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"
|