orquesta-agent 0.2.198 → 0.2.199
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/ui/public/app.js
CHANGED
|
@@ -231,7 +231,9 @@ function renderAgents() {
|
|
|
231
231
|
<span class="config-value">${a.autoPull ? 'Yes' : 'No'}</span>
|
|
232
232
|
</div>
|
|
233
233
|
<div class="config-row">
|
|
234
|
-
<label>Sandbox
|
|
234
|
+
<label>Sandbox ${a.sandbox ? (systemInfo?.sandbox?.available
|
|
235
|
+
? `<span class="sb-eff sb-active" title="bubblewrap ${systemInfo.sandbox.version || ''} active">● ${a.sandboxMode === 'strict' ? 'strict' : 'standard'} active</span>`
|
|
236
|
+
: `<span class="sb-eff sb-unavail" title="bubblewrap not installed — agent runs UNSANDBOXED">⚠ bwrap missing</span>`) : ''}</label>
|
|
235
237
|
<select id="cfg-sandbox-${a.id}" onchange="updateAgentConfig('${a.id}')">
|
|
236
238
|
<option value="off" ${!a.sandbox ? 'selected' : ''}>Off</option>
|
|
237
239
|
<option value="standard" ${a.sandbox && a.sandboxMode !== 'strict' ? 'selected' : ''}>Standard (project-only writes)</option>
|
package/dist/ui/public/style.css
CHANGED
|
@@ -323,6 +323,9 @@ body {
|
|
|
323
323
|
.cli-claude { background: rgba(249,115,22,0.15); color: var(--orange); }
|
|
324
324
|
.cli-orquesta { background: var(--purple-bg); color: var(--purple); }
|
|
325
325
|
.cli-kimi { background: rgba(236,72,153,0.15); color: #ec4899; }
|
|
326
|
+
.sb-eff { font-size: 10px; font-weight: 600; margin-left: 6px; padding: 1px 6px; border-radius: 6px; }
|
|
327
|
+
.sb-active { color: #22c55e; background: rgba(34,197,94,0.12); }
|
|
328
|
+
.sb-unavail { color: #f59e0b; background: rgba(245,158,11,0.12); }
|
|
326
329
|
.cli-auto { background: rgba(34,197,94,0.1); color: var(--green); }
|
|
327
330
|
|
|
328
331
|
.agent-actions {
|