@yemi33/minions 0.1.2429 → 0.1.2430
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/layout.html
CHANGED
|
@@ -71,7 +71,9 @@
|
|
|
71
71
|
</div>
|
|
72
72
|
<div id="cc-tab-bar" style="display:flex;gap:8px;padding:4px 12px;border-bottom:1px solid var(--border);overflow:hidden;align-items:center;flex-shrink:0"></div>
|
|
73
73
|
<div id="cc-messages" style="flex:1;overflow-y:auto;padding:12px 16px;display:flex;flex-direction:column;gap:10px"></div>
|
|
74
|
-
|
|
74
|
+
<!-- W-ms3nbl6r000971ad: no border-top here — the rule landed directly above
|
|
75
|
+
#cc-suggestions-host, drawing a divider across the top of the pill area. -->
|
|
76
|
+
<div style="padding:12px 16px">
|
|
75
77
|
<div id="cc-suggestions-host"></div>
|
|
76
78
|
<!-- P-2a6d8e74 — image attachment thumbnail chips (paste / drag-drop); hidden until images are attached -->
|
|
77
79
|
<div id="cc-attachments" style="display:none;flex-wrap:wrap;gap:6px;margin-bottom:8px"></div>
|
|
@@ -372,11 +372,12 @@
|
|
|
372
372
|
defines --space-1..5 (4/8/12/16/20); --space-6 / --space-8 exist solely
|
|
373
373
|
inside the #detail-panel scope, so referencing them here made `padding`
|
|
374
374
|
and `margin` invalid at computed-value time — the pill rendered with
|
|
375
|
-
zero padding and the group lost its spacing. Stay on the slim scale.
|
|
375
|
+
zero padding and the group lost its spacing. Stay on the slim scale.
|
|
376
|
+
Left-aligned (W-ms3nbl6r000971ad) to match classic. */
|
|
376
377
|
.cc-suggestions {
|
|
377
378
|
display: flex;
|
|
378
379
|
flex-wrap: wrap;
|
|
379
|
-
justify-content:
|
|
380
|
+
justify-content: flex-start;
|
|
380
381
|
align-items: center;
|
|
381
382
|
gap: var(--space-2);
|
|
382
383
|
width: 100%;
|
package/dashboard/styles.css
CHANGED
|
@@ -1255,10 +1255,12 @@
|
|
|
1255
1255
|
#cc-messages > .cc-msg-action + .cc-msg-action { margin-top: -8px; }
|
|
1256
1256
|
|
|
1257
1257
|
/* Suggested starter prompts (W-ms0vc4d0000ve615): content-sized pills in a
|
|
1258
|
-
|
|
1259
|
-
a long prompt inside the 420px drawer without stretching a short one.
|
|
1258
|
+
left-aligned wrapping row, NOT full-width bars. `max-width` (not `width`)
|
|
1259
|
+
keeps a long prompt inside the 420px drawer without stretching a short one.
|
|
1260
|
+
Left-aligned (W-ms3nbl6r000971ad) so the pill lines up with the composer
|
|
1261
|
+
edge instead of floating mid-drawer. */
|
|
1260
1262
|
.cc-suggestions {
|
|
1261
|
-
display: flex; flex-wrap: wrap; justify-content:
|
|
1263
|
+
display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: center;
|
|
1262
1264
|
gap: var(--space-3);
|
|
1263
1265
|
width: 100%; margin: var(--space-7) auto 0;
|
|
1264
1266
|
}
|
|
@@ -1267,7 +1269,7 @@
|
|
|
1267
1269
|
appearance: none; max-width: 100%; padding: var(--space-3) var(--space-7);
|
|
1268
1270
|
border: 1px solid var(--border); border-radius: 999px;
|
|
1269
1271
|
background: var(--surface2); color: var(--text); font: inherit;
|
|
1270
|
-
font-size: var(--text-md); line-height: 1.4; text-align:
|
|
1272
|
+
font-size: var(--text-md); line-height: 1.4; text-align: left; cursor: pointer;
|
|
1271
1273
|
transition: border-color var(--transition-base), color var(--transition-base);
|
|
1272
1274
|
}
|
|
1273
1275
|
.cc-suggestion:hover { border-color: var(--blue); color: var(--blue); }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2430",
|
|
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"
|