@aiwg/cockpit 2026.8.16 → 2026.8.17
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/bridge/src/server.mjs
CHANGED
|
@@ -689,6 +689,11 @@ async function getExecutorCapabilities(executorUrl) {
|
|
|
689
689
|
host_runtime_enabled: body.host_runtime_enabled === true || body.hostRuntimeEnabled === true,
|
|
690
690
|
runtime_providers: runtimeProviders && Array.isArray(runtimeProviders.providers) ? runtimeProviders : undefined,
|
|
691
691
|
raw_status: body.status ?? body.state ?? 'unknown',
|
|
692
|
+
real_executor: !mockExecutorReason(body),
|
|
693
|
+
implementation: body.implementation ?? body.service ?? body.name ?? 'agentic-sandbox',
|
|
694
|
+
version: body.version ?? body.build?.version ?? null,
|
|
695
|
+
commit: body.commit ?? body.build?.commit ?? body.git_commit ?? null,
|
|
696
|
+
auth_required: body.auth_required ?? body.auth?.required ?? null,
|
|
692
697
|
};
|
|
693
698
|
} catch (err) {
|
|
694
699
|
rethrowExecutorSecurityError(err);
|
|
@@ -3212,6 +3217,7 @@ export function createBridge({
|
|
|
3212
3217
|
executor_url: upstreamUrl,
|
|
3213
3218
|
mock_executor_allowed: allowMockExecutor,
|
|
3214
3219
|
executor_auth_configured: Boolean(executorTokenFile),
|
|
3220
|
+
executor: await getExecutorCapabilities(upstreamUrl),
|
|
3215
3221
|
});
|
|
3216
3222
|
if (url.pathname === '/' || url.pathname === '/index.html') {
|
|
3217
3223
|
const distIndex = join(WEB_DIST, 'index.html');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiwg/cockpit",
|
|
3
|
-
"version": "2026.8.
|
|
3
|
+
"version": "2026.8.17",
|
|
4
4
|
"description": "AIWG Cockpit — UX-first control plane over AIWG + multi-stack agentic sessions. Opt-in, separately published; NOT shipped in the base aiwg npm package (guarded by test/smoke/cockpit-base-footprint.test.js).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|