fraim-framework 2.0.185 → 2.0.187
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/conversation-store.js +97 -6
- package/dist/src/ai-hub/hosts.js +127 -15
- package/dist/src/ai-hub/openclaw-bridge.js +17 -6
- package/dist/src/ai-hub/server.js +215 -38
- package/dist/src/cli/commands/add-ide.js +3 -2
- package/dist/src/cli/commands/add-provider.js +7 -1
- package/dist/src/cli/commands/sync.js +2 -1
- package/dist/src/cli/mcp/ide-formats.js +36 -1
- package/dist/src/cli/setup/auto-mcp-setup.js +1 -1
- package/dist/src/cli/setup/ide-detector.js +29 -1
- package/dist/src/cli/setup/ide-global-integration.js +1 -1
- package/dist/src/cli/setup/mcp-config-generator.js +12 -1
- package/dist/src/cli/utils/agent-adapters.js +8 -2
- package/dist/src/first-run/types.js +1 -1
- package/package.json +1 -1
- package/public/ai-hub/script.js +484 -28
- package/public/ai-hub/styles.css +30 -0
package/public/ai-hub/styles.css
CHANGED
|
@@ -2157,6 +2157,17 @@ button.small { padding: 4px 10px; font-size: 12px; }
|
|
|
2157
2157
|
.totals .sep { color: var(--line); }
|
|
2158
2158
|
.totals strong { color: var(--text); font-weight: 600; }
|
|
2159
2159
|
|
|
2160
|
+
/* Issue #711 — adhoc runs have no pizza tracker; render the run totals line on
|
|
2161
|
+
its own without the empty stage rows or a redundant top divider. */
|
|
2162
|
+
.tracker--totals-only {
|
|
2163
|
+
padding: 10px 4px;
|
|
2164
|
+
}
|
|
2165
|
+
.tracker--totals-only .totals {
|
|
2166
|
+
border-top: none;
|
|
2167
|
+
padding-top: 0;
|
|
2168
|
+
margin-top: 0;
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2160
2171
|
|
|
2161
2172
|
/* ── Issue #385: Team roster, Employee selector, Lock badges, Hire notice ── */
|
|
2162
2173
|
|
|
@@ -3054,7 +3065,26 @@ body.hub-shell { display: flex; flex-direction: column; height: 100vh; overflow:
|
|
|
3054
3065
|
.del-confirm .dc-row { display: flex; gap: 8px; margin-top: 8px; }
|
|
3055
3066
|
.del-confirm button { font: inherit; font-size: 12px; border-radius: 7px; padding: 5px 12px; cursor: pointer; }
|
|
3056
3067
|
.del-confirm .dc-del { background: var(--danger, #d2261f); color: #fff; border: none; }
|
|
3068
|
+
.del-confirm .dc-del:disabled { opacity: .55; cursor: not-allowed; }
|
|
3057
3069
|
.del-confirm .dc-cancel { background: var(--surface); border: 1px solid var(--line); color: var(--text); }
|
|
3070
|
+
.del-confirm .dc-detail { margin-top: 6px; color: var(--muted); }
|
|
3071
|
+
.del-confirm .dc-detail:empty { display: none; }
|
|
3072
|
+
|
|
3073
|
+
/* #719 — remove a project from the Hub. The card-positioned copy of .run-del.
|
|
3074
|
+
Hidden via opacity (not display) so the control stays keyboard-focusable
|
|
3075
|
+
(R11: revealed on hover AND on keyboard focus). */
|
|
3076
|
+
.proj-card { position: relative; }
|
|
3077
|
+
.proj-card .proj-del { position: absolute; right: 10px; top: 10px;
|
|
3078
|
+
width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--line);
|
|
3079
|
+
background: var(--surface); color: var(--muted); font-size: 12px; line-height: 1;
|
|
3080
|
+
display: flex; align-items: center; justify-content: center; cursor: pointer;
|
|
3081
|
+
opacity: 0; pointer-events: none; }
|
|
3082
|
+
.proj-card:hover .proj-del, .proj-card .proj-del:focus-visible, .proj-card .proj-del:focus {
|
|
3083
|
+
opacity: 1; pointer-events: auto; }
|
|
3084
|
+
.proj-card .proj-del:hover { color: var(--danger, #d2261f); border-color: var(--danger, #d2261f); }
|
|
3085
|
+
/* Inside a card the confirm sits below the team row — zero the horizontal
|
|
3086
|
+
margin the run-list variant carries. */
|
|
3087
|
+
.proj-card .del-confirm { margin: 10px 0 0; }
|
|
3058
3088
|
|
|
3059
3089
|
/* R1 (#521): employees are the heroes — large accordion rows replace .tree-emp.
|
|
3060
3090
|
The summary is the employee (40px avatar, name, role, status dot); their jobs
|