// Developer Experience
Code your Intent.
Building for LokaiOS is seamless. Use our high-level SDK to create native plugins or import existing tools into the most secure sandbox ever built.
The Plugin SDK
Our TypeScript SDK provides first-class types and utilities to interact with the LokaiOS Kernel. Focus on the logic, let us handle the isolation.
- Automated MicroVM Sandboxing
- Kernel-level Network Filtering
- Hardware-accelerated AI calls
import { Plugin } from '@lokai/sdk';
export default class MyTool extends Plugin {
async execute(input: string) {
// Isolated execution in MicroVM
const result = await this.kernel.analyze(input);
return result;
}
}Import anything.
Already have a tool or a script? Import it into LokaiOS with one command. The system automatically generates the manifest and secures the runtime.
Terminal // Import Flow
$ lokai plugin import ./my-script.py
→ Scanning dependencies...
→ Generating Sila Sandbox config...
→ Registering cryptosignature...
✓ Plugin imported successfully.
Ready to ship?