-
Notifications
You must be signed in to change notification settings - Fork 357
Open
Description
Summary
Could we add a BoxLite integration/use-case entry as an optional sandbox path?
This is a docs/ecosystem request, not a core architecture replacement.
Why
- Useful for users who want an optional micro-VM sandbox mode.
- Keeps current project behavior unchanged.
- Improves discoverability of secure runtime options.
Tiny example (Node.js)
import { SimpleBox } from '@boxlite-ai/boxlite';
async function main() {
const box = new SimpleBox({ image: 'alpine:latest', autoRemove: true });
try {
const result = await box.exec('echo', 'hello');
console.log(result.stdout);
const m = await box.metrics();
console.log(`totalCreateDurationMs=${m.totalCreateDurationMs}`);
} finally {
await box.stop();
}
}
main();Warm startup is typically under 200ms; cold starts can be higher depending on image/cache state.
Suggested scope
- Add a BoxLite integration/use-case section (or skill entry).
- Include compatibility notes and known limits.
- Include quick validation steps.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels