Currently, only android phones are supported. You need to have android platform sdk tools installed locally (adb) to use this library.
import { mobileUse } from "@/src";
const response = await mobileUse({
task: "Open instagram and go to direct messages, send hi to first person",
// llm: bring your own LLM model using ai sdk provider or use the claude by default. You need set ANTHROPIC_API_KEY environment variable to use claude.
});
console.log(response.text);
There is an included CLI tool that can be used to act on instructions from the command line or from a file.
# Pass the instruction from the command line
npx mobile-use "Open instagram and go to direct messages, send hi to first person"
# Pass the instruction from a file
npx mobile-use instruction.txt
This project is licensed under the MIT License.