@yemi33/minions 0.1.2219 → 0.1.2220

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.
@@ -186,7 +186,11 @@
186
186
  .layout {
187
187
  display: grid;
188
188
  grid-template-columns: minmax(0, 820px) minmax(0, 575px);
189
- grid-template-rows: 1fr 1fr;
189
+ /* Status row is content-sized (`auto`) so the right-side control panel
190
+ (Watches + Knowledge) grows to fit and never scrolls internally — no
191
+ fixed/max height. History takes the remaining space and scrolls within
192
+ its own region. (W-mqgx8qkv0007218d) */
193
+ grid-template-rows: auto minmax(0, 1fr);
190
194
  grid-template-areas:
191
195
  "actions status"
192
196
  "actions history";
@@ -1100,6 +1104,10 @@
1100
1104
 
1101
1105
  /* ── Status panel sub-divisions: Team cards over System tiles,
1102
1106
  separated by a divider line (no text headers). ──── */
1107
+ /* The Status panel is the right-side control panel. Its body never scrolls
1108
+ internally — the panel grows to fit Team cards + Watches/Knowledge tiles
1109
+ (the status grid row is `auto`-sized). (W-mqgx8qkv0007218d) */
1110
+ .panel-status .panel-body { overflow: visible; }
1103
1111
  .team-section { margin-bottom: 14px; }
1104
1112
  .cockpit-section { padding-top: 14px; border-top: 1px solid var(--border); }
1105
1113
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.2219",
3
+ "version": "0.1.2220",
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"