// How can Jev use a computer? // Teaching excerpts; see the explanation and boundaries on the episode page. // Ask for a choice const response = await client.systemOne({ state: { goal, screen }, questions: { next: choice("Next step?", options) } }); // Check, execute, verify const action = actions[answer.choice]; if (!action || !allowed(action)) return; await action.run(); await checkSaved();