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-sdk📖 Documentation | ✍🏻 ZEE Use-cases
No comments yet. Be the first to share your thoughts!
npx @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 issues page.
Or join the AI Agent SDK Working Group to get help and discuss the future of the SDK.
Give a ⭐️ if this project helped you!
This project is MIT licensed.