const vibeKit = new VibeKit({ agent: { type: "codex", // ... other config }});// Generate some code first to create a sandboxawait vibeKit.generateCode("console.log('Hello World')", "code");// Pause the sandboxawait vibeKit.pause();console.log("Sandbox paused");// Resume the sandboxawait vibeKit.resume();console.log("Sandbox resumed - ready for more operations");// Continue generating codeawait vibeKit.generateCode("console.log('Back online!')", "code");