@yemi33/minions 0.1.2399 → 0.1.2400

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.
@@ -92,7 +92,7 @@
92
92
  try { localStorage.setItem(SLIM_WELCOME_KEY, '1'); } catch (e) { /* private mode — popup re-shows next visit, acceptable */ }
93
93
  }
94
94
  function maybeShowSlimWelcome() {
95
- // Gated by the slim-ux-promo flag (off by default) — when the promo is off,
95
+ // Gated by the slim-ux-promo flag (on by default) — when the promo is off,
96
96
  // never advertise Slim UX via the welcome popup, even on a first visit.
97
97
  if (!slimFeatureOn('slim-ux-promo')) return;
98
98
  try { if (localStorage.getItem(SLIM_WELCOME_KEY) === '1') return; } catch (e) { /* private mode — show anyway */ }
@@ -33,13 +33,14 @@ const FEATURES = {
33
33
  expires: '2026-11-01',
34
34
  },
35
35
  // slim-ux-promo — gates the Slim UX *entry point*, not Slim UX itself. When
36
- // off (default) the "Try new Slim UX" button is hidden on the classic
37
- // dashboard header AND the first-visit welcome popup is suppressed inside
36
+ // on (default) the "Try new Slim UX" button is shown on the classic
37
+ // dashboard header AND the first-visit welcome popup is surfaced inside
38
38
  // Slim UX. Slim UX stays reachable via the `slim-ux` flag / Settings; this
39
- // only controls whether it's advertised to users.
39
+ // only controls whether it's advertised to users. Opt out via
40
+ // `config.features.slim-ux-promo: false` or MINIONS_FEATURE_SLIM_UX_PROMO=0.
40
41
  'slim-ux-promo': {
41
- description: 'Show the "Try new Slim UX" entry-point button on the classic dashboard and the first-visit welcome popup inside Slim UX. Off by default — Slim UX itself is still reachable via the slim-ux flag.',
42
- default: false,
42
+ description: 'Show the "Try new Slim UX" entry-point button on the classic dashboard and the first-visit welcome popup inside Slim UX. On by default — Slim UX itself is still reachable via the slim-ux flag.',
43
+ default: true,
43
44
  addedIn: '0.1.2057',
44
45
  expires: '2026-11-01',
45
46
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.2399",
3
+ "version": "0.1.2400",
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"