mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-23 05:18:11 +00:00
* fix(sandbox): use materialized skill paths in command prompts * fix(sandbox): resolve backend prompt workdirs * fix(sandbox): preserve custom backend prompt fallback --------- Co-authored-by: Vincent Koc <vincentkoc@ieee.org>
31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
// Openshell plugin entrypoint registers its OpenClaw integration.
|
|
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
import { registerSandboxBackend } from "openclaw/plugin-sdk/sandbox";
|
|
import {
|
|
createOpenShellSandboxBackendFactory,
|
|
createOpenShellSandboxBackendManager,
|
|
} from "./src/backend.js";
|
|
import { createOpenShellPluginConfigSchema, resolveOpenShellPluginConfig } from "./src/config.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "openshell",
|
|
name: "OpenShell Sandbox",
|
|
description: "OpenShell-backed sandbox runtime for agent exec and file tools.",
|
|
configSchema: createOpenShellPluginConfigSchema(),
|
|
register(api) {
|
|
if (api.registrationMode !== "full") {
|
|
return;
|
|
}
|
|
const pluginConfig = resolveOpenShellPluginConfig(api.pluginConfig);
|
|
registerSandboxBackend("openshell", {
|
|
factory: createOpenShellSandboxBackendFactory({
|
|
pluginConfig,
|
|
}),
|
|
manager: createOpenShellSandboxBackendManager({
|
|
pluginConfig,
|
|
}),
|
|
resolveWorkdir: () => pluginConfig.remoteWorkspaceDir,
|
|
});
|
|
},
|
|
});
|