fraim-hub 2.0.310 → 2.0.312
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/dist/src/ai-hub/desktop-main.js +101 -5
- package/dist/src/ai-hub/devtools-window.js +17 -0
- package/dist/src/ai-hub/hosts.js +71 -12
- package/dist/src/ai-hub/hub-app-materializer.js +33 -3
- package/dist/src/ai-hub/hub-main-diagnostics.js +278 -0
- package/dist/src/ai-hub/restart-recovery-policy.js +11 -3
- package/dist/src/ai-hub/server.js +68 -16
- package/dist/src/cli/setup/ide-invocation-surfaces.js +1 -1
- package/dist/src/cli/setup/user-level-sync.js +4 -0
- package/dist/src/config/persona-capability-bundles.js +12 -1
- package/package.json +2 -2
- package/public/ai-hub/index.html +1 -1
- package/public/ai-hub/script.js +482 -120
- package/public/ai-hub/styles.css +29 -0
package/public/ai-hub/styles.css
CHANGED
|
@@ -6000,6 +6000,9 @@ img.eh-av { object-fit: cover; background: var(--surface); }
|
|
|
6000
6000
|
}
|
|
6001
6001
|
.dep-row:hover { background: var(--soft); }
|
|
6002
6002
|
.dep-row-title { font-size: 13px; font-weight: 400; font-style: italic; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
6003
|
+
/* Issue #1610 R10: ad-hoc job label and instructions subtitle in assignment rows. */
|
|
6004
|
+
.dep-row-job-label { display: block; font-size: 11px; font-weight: 600; color: var(--accent); margin-top: 1px; }
|
|
6005
|
+
.dep-row-sub { display: block; font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }
|
|
6003
6006
|
.assign-row-meta { display: flex; gap: 8px; align-items: center; margin-top: 3px; font-size: 11px; color: var(--muted); }
|
|
6004
6007
|
.assign-badge { font-size: 10px; font-weight: 700; letter-spacing: .02em; padding: 1px 7px; border-radius: 999px; }
|
|
6005
6008
|
.assign-badge--scheduled { background: rgba(0,113,227,.10); color: var(--accent); }
|
|
@@ -6198,6 +6201,32 @@ img.eh-av { object-fit: cover; background: var(--surface); }
|
|
|
6198
6201
|
overflow-wrap: anywhere;
|
|
6199
6202
|
}
|
|
6200
6203
|
|
|
6204
|
+
/* Issue #1618 (R4): the per-card install/sign-in row is a continuation of the existing
|
|
6205
|
+
card, not a second panel — a dashed top border separates it from Check/Edit/Delete
|
|
6206
|
+
above, matching the mock (docs/feature-specs/mocks/1618-view.html). The shared
|
|
6207
|
+
.install-row/.install-label/.install-status/button.secondary.small/.ghost.small rules
|
|
6208
|
+
above are reused, scoped-overridden only where the card's ~750px width behaves
|
|
6209
|
+
differently than the job composer's ~340px standalone panel (PR #1620 feedback):
|
|
6210
|
+
`.install-status`'s `flex:1` is designed to fill a narrow panel; at card width an
|
|
6211
|
+
empty status span balloons into a large, unstyled-looking blank gap before the
|
|
6212
|
+
action button. Capping it to content width and right-aligning the button instead
|
|
6213
|
+
(matching the Check/Edit/Delete row's own right-aligned actions) keeps the same
|
|
6214
|
+
information, without a wide accidental gap. Only `.configured-agent-install-row`
|
|
6215
|
+
is affected; the 3 job-composer mounts keep their original layout unchanged. */
|
|
6216
|
+
.configured-agent-install-row {
|
|
6217
|
+
margin-top: 8px;
|
|
6218
|
+
padding-top: 8px;
|
|
6219
|
+
border-top: 1px dashed var(--line);
|
|
6220
|
+
}
|
|
6221
|
+
|
|
6222
|
+
.configured-agent-install-row .install-status {
|
|
6223
|
+
flex: 0 1 auto;
|
|
6224
|
+
}
|
|
6225
|
+
|
|
6226
|
+
.configured-agent-install-row .install-row button:first-of-type {
|
|
6227
|
+
margin-left: auto;
|
|
6228
|
+
}
|
|
6229
|
+
|
|
6201
6230
|
.configured-agents-empty {
|
|
6202
6231
|
margin: 0;
|
|
6203
6232
|
color: var(--muted);
|