@yemi33/minions 0.1.2243 → 0.1.2244
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/dashboard/styles.css
CHANGED
|
@@ -1125,7 +1125,7 @@
|
|
|
1125
1125
|
|
|
1126
1126
|
/* Command Center tab bar */
|
|
1127
1127
|
.cc-tab-scroll { display: flex; gap: 4px; align-items: center; overflow-x: auto; overflow-y: hidden; flex: 1 1 auto; min-width: 0; scrollbar-width: thin; }
|
|
1128
|
-
.cc-tab { padding: 4px 10px; font-size: var(--text-sm); border: 1px solid var(--border); border-bottom: none; border-radius: 6px 6px 0 0; background: var(--surface2); color: var(--muted); cursor:
|
|
1128
|
+
.cc-tab { padding: 4px 10px; font-size: var(--text-sm); border: 1px solid var(--border); border-bottom: none; border-radius: 6px 6px 0 0; background: var(--surface2); color: var(--muted); cursor: pointer; white-space: nowrap; max-width: 140px; display: inline-flex; align-items: center; gap: 2px; flex-shrink: 0; margin-bottom: -1px; position: relative; }
|
|
1129
1129
|
.cc-tab:active { cursor: grabbing; }
|
|
1130
1130
|
.cc-tab.cc-tab-dragging { opacity: 0.5; cursor: grabbing; }
|
|
1131
1131
|
.cc-tab.cc-tab-drop-target { box-shadow: inset 2px 0 0 0 var(--blue); }
|
|
@@ -68,6 +68,14 @@ const _FIREBASE_BRAND_RE = /\bFirebase\s+(?:App\s+Distribution|Hosting)\b/i;
|
|
|
68
68
|
const _FIREBASE_URL_RE = /\bappdistribution\.firebase\b/i;
|
|
69
69
|
const _APPETIZE_URL_RE = /\bappetize\.io\b/i;
|
|
70
70
|
|
|
71
|
+
// Firebase Hosting bot posts — "Firebase Hosting preview URL: ...",
|
|
72
|
+
// "Firebase Hosting deployment ...". These never start with a heading but
|
|
73
|
+
// reliably begin a line with "Firebase Hosting". Human feedback about
|
|
74
|
+
// Firebase Hosting issues starts with prose like "The Firebase Hosting ..."
|
|
75
|
+
// or "Our Firebase Hosting ..." so anchoring at the start of a line is a
|
|
76
|
+
// safe discriminator.
|
|
77
|
+
const _FIREBASE_HOSTING_LEAD_RE = /^Firebase\s+Hosting\b/im;
|
|
78
|
+
|
|
71
79
|
// "deploy ready", "deployment available", "preview succeeded", etc.
|
|
72
80
|
const _DEPLOY_READY_RE =
|
|
73
81
|
/\b(?:deploy|deployment|preview)\s+(?:ready|available|succeeded|complete|completed)\b/i;
|
|
@@ -80,6 +88,7 @@ function isPreviewStatusBody(body) {
|
|
|
80
88
|
if (_PREVIEW_HEADING_RE.test(text)) return true;
|
|
81
89
|
if (_FIREBASE_BRAND_RE.test(text)) return true;
|
|
82
90
|
if (_FIREBASE_URL_RE.test(text)) return true;
|
|
91
|
+
if (_FIREBASE_HOSTING_LEAD_RE.test(text)) return true;
|
|
83
92
|
if (_APPETIZE_URL_RE.test(text)) return true;
|
|
84
93
|
if (_DEPLOY_READY_RE.test(text)) return true;
|
|
85
94
|
return false;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2244",
|
|
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"
|