Plugin sandbox setup
Skill a5c-ai/babysitter/library/specializations/cli-mcp-development/skills/plugin-sandbox-setup
Babysitter enforces obedience on agentic workforces and enables them to manage extremely complex tasks and workflows through deterministic, hallucination-free self-orchestration
npx -y skills add a5c-ai/babysitter --skill plugin-sandbox-setupAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Configure plugin sandboxing with vm2 or isolated-vm for secure plugin execution.
SKILL.md
1.2 KB, as published. Nobody here has run it
Plugin Sandbox Setup
Configure plugin sandboxing for security.
Generated Patterns
import ivm from 'isolated-vm';
export async function runInSandbox(code: string, context: Record<string, unknown>) {
const isolate = new ivm.Isolate({ memoryLimit: 128 });
const vmContext = isolate.createContextSync();
const jail = vmContext.global;
for (const [key, value] of Object.entries(context)) {
jail.setSync(key, new ivm.ExternalCopy(value).copyInto());
}
const script = isolate.compileScriptSync(code);
const result = await script.run(vmContext, { timeout: 5000 });
isolate.dispose();
return result;
}
Target Processes
- plugin-architecture-implementation
- mcp-server-security-hardening