@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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.343 (2026-04-04)
4
+
5
+ ### Fixes
6
+ - remove duplicate selfRefVars declaration in playbook.js
7
+
8
+ ## 0.1.342 (2026-04-04)
9
+
10
+ ### Fixes
11
+ - MM)
12
+
3
13
  ## 0.1.341 (2026-04-04)
4
14
 
5
15
  ### Features
@@ -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, 10)) + '</span></td>' +
30
+ '<td><span class="pr-date">' + escHtml((pr.created || '—').slice(0, 16).replace('T', ' ')) + '</span></td>' +
31
31
  '</tr>';
32
32
  }
33
33
 
@@ -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.341",
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"