@yemi33/minions 0.1.779 → 0.1.781

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,6 +1,11 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.779 (2026-04-10)
3
+ ## 0.1.781 (2026-04-10)
4
+
5
+ ### Fixes
6
+ - restore cc-tab-bar element + add critical UX regression tests
7
+
8
+ ## 0.1.780 (2026-04-10)
4
9
 
5
10
  ### Features
6
11
  - auto-complete PRs when builds green + review approved
@@ -36,6 +36,7 @@
36
36
  <button onclick="toggleCommandCenter()" style="background:none;border:none;color:var(--muted);font-size:16px;cursor:pointer;padding:2px 6px">&#10005;</button>
37
37
  </div>
38
38
  </div>
39
+ <div id="cc-tab-bar" style="display:flex;gap:4px;padding:4px 12px;border-bottom:1px solid var(--border);overflow-x:auto;align-items:center;flex-shrink:0"></div>
39
40
  <div id="cc-messages" style="flex:1;overflow-y:auto;padding:12px 16px;display:flex;flex-direction:column;gap:10px"></div>
40
41
  <div style="padding:12px 16px;border-top:1px solid var(--border)">
41
42
  <div style="display:flex;gap:8px">
package/engine/ado.js CHANGED
@@ -420,7 +420,7 @@ async function pollPrStatus(config) {
420
420
 
421
421
  // Auto-complete: set auto-complete on PR when builds green + review approved
422
422
  if (pr.status === PR_STATUS.ACTIVE && pr.reviewStatus === 'approved' && pr.buildStatus === 'passing' && !pr._autoCompleted) {
423
- const autoComplete = config.engine?.autoCompletePrs !== false;
423
+ const autoComplete = config.engine?.autoCompletePrs === true; // opt-in
424
424
  if (autoComplete) {
425
425
  try {
426
426
  const mergeStrategy = config.engine?.prMergeMethod === 'merge' ? 1 : config.engine?.prMergeMethod === 'rebase' ? 2 : 3; // 3 = squash
package/engine/github.js CHANGED
@@ -420,10 +420,10 @@ async function pollPrStatus(config) {
420
420
 
421
421
  // Auto-complete: merge PR when builds green + review approved
422
422
  if (pr.status === PR_STATUS.ACTIVE && pr.reviewStatus === 'approved' && pr.buildStatus === 'passing' && !pr._autoCompleted) {
423
- const autoComplete = config.engine?.autoCompletePrs !== false; // default: on
423
+ const autoComplete = config.engine?.autoCompletePrs === true; // opt-in
424
424
  if (autoComplete) {
425
425
  try {
426
- const mergeMethod = config.engine?.prMergeMethod || 'squash';
426
+ const mergeMethod = ['squash', 'merge', 'rebase'].includes(config.engine?.prMergeMethod) ? config.engine.prMergeMethod : 'squash';
427
427
  await execAsync(`gh pr merge ${prNum} --${mergeMethod} --repo ${slug} --delete-branch`, { timeout: 30000, encoding: 'utf-8' });
428
428
  pr._autoCompleted = true;
429
429
  log('info', `Auto-completed PR ${pr.id}: builds green + review approved → merged (${mergeMethod})`);
package/engine/shared.js CHANGED
@@ -547,7 +547,7 @@ const ENGINE_DEFAULTS = {
547
547
  lockRetryBackoffMs: 500, // base backoff between lock retries (doubles each attempt: 500ms, 1s, 2s, ...)
548
548
  maxBuildFixAttempts: 3, // max consecutive auto-fix dispatch cycles per PR before escalation to human
549
549
  buildFixGracePeriod: 600000, // 10min — wait for CI to run after build fix before re-dispatching
550
- autoCompletePrs: true, // auto-merge PRs when builds green + review approved
550
+ autoCompletePrs: false, // auto-merge PRs when builds green + review approved (opt-in)
551
551
  prMergeMethod: 'squash', // merge method: squash, merge, rebase
552
552
  ccModel: 'sonnet', // model for Command Center and doc-chat (sonnet, haiku, opus)
553
553
  ccEffort: null, // effort level for CC/doc-chat (null, 'low', 'medium', 'high')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.779",
3
+ "version": "0.1.781",
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"