Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Configure plugin sandboxing with vm2 or isolated-vm for secure plugin execution.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-02 | ✗→✓ | ▲ Improved | -50% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -52% | 0% |
| case-15 | ✗→✓ | ▲ Improved | -69% | 0% |
| case-01 | ✗→✗ | = Same ✗ | 5% | 0% |
| case-04 | ✗→✗ | = Same ✗ | -13% | 0% |
Configure plugin sandboxing for security.
typescriptimport 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; }
Other measured skills in the registry, with their headline benchmark lift.