by covalenthq
Build autonomous AI agents for the Zero-Employee Enterprise (ZEE). Create intelligent, context-aware agents with unprecedented ease and functionality.
# Add to your Claude Code skills
git clone https://github.com/covalenthq/ai-agent-sdknpx @covalenthq/create-zee-app@latest
This will create a new project with a basic setup.
const agent1 = new Agent({
name: "Agent1",
model: {
provider: "OPEN_AI",
id: "gpt-4o-mini",
},
description: "A helpful AI assistant that can engage in conversation.",
instructions: ["Interact with the user in a friendly and helpful manner"],
});
const zee = new ZeeWorkflow({
goal: "A workflow of agents that do stuff together",
agents: [agent1, agent2],
model: {
provider: "OPEN_AI",
id: "gpt-4o-mini",
},
});
(async function main() {
const result = await zee.run();
console.log(result);
})();
Contributions, issues and feature requests are welcome! Feel free to check <a hr...