import type { LoadedSkill } from '@agentoctopus/registry'; import type { Adapter, AdapterResult } from '../adapter.js'; /** * OpenShell sandbox adapter: pass-through to local execution. * This is the default "sandbox" when no real isolation is desired. * Uses the existing SubprocessAdapter under the hood. */ export declare class OpenShellAdapter implements Adapter { private subprocess; invoke(skill: LoadedSkill, input: Record): Promise; } //# sourceMappingURL=openshell-adapter.d.ts.map