computerai
v0.1.0
Published
Framework for creating computer use agents
Maintainers
Readme
computerai
A minimal framework for creating computer use agents.
Installation
npm install computeraiUsage
const { createAgent } = require("computerai");
// Create a new agent
const agent = createAgent({ name: "MyAgent" });
// Execute a command with the agent
const result = agent.execute("open browser");
console.log(result); // "Executed: open browser"License
MIT
