{"id":25492600,"url":"https://github.com/covalenthq/ai-agent-sdk","last_synced_at":"2025-11-09T00:30:29.753Z","repository":{"id":268614302,"uuid":"904424967","full_name":"covalenthq/ai-agent-sdk","owner":"covalenthq","description":"Build autonomous AI agents for the Zero-Employee Enterprise (ZEE). Create intelligent, context-aware agents with unprecedented ease and functionality.","archived":false,"fork":false,"pushed_at":"2025-02-13T15:44:18.000Z","size":268,"stargazers_count":41,"open_issues_count":12,"forks_count":22,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-02-13T16:40:49.849Z","etag":null,"topics":["ai-agent","ai-agents-framework","blockchain","blockchain-data","cryptocurrency","web3"],"latest_commit_sha":null,"homepage":"https://cxt.build/docs/overview","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/covalenthq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-16T21:34:13.000Z","updated_at":"2025-02-12T22:54:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"013c3d9c-876f-4c18-b554-f8a9399a4e2d","html_url":"https://github.com/covalenthq/ai-agent-sdk","commit_stats":null,"previous_names":["covalenthq/ai-agent-sdk"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/covalenthq%2Fai-agent-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/covalenthq%2Fai-agent-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/covalenthq%2Fai-agent-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/covalenthq%2Fai-agent-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/covalenthq","download_url":"https://codeload.github.com/covalenthq/ai-agent-sdk/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239565645,"owners_count":19660154,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-agent","ai-agents-framework","blockchain","blockchain-data","cryptocurrency","web3"],"created_at":"2025-02-18T23:01:03.709Z","updated_at":"2025-11-09T00:30:29.688Z","avatar_url":"https://github.com/covalenthq.png","language":"TypeScript","funding_links":[],"categories":["🛠️ Developer Tools \u0026 Frameworks"],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# AI Agent SDK for TypeScript\n\n[📖 Documentation](https://cxt.build/) | \n[✍🏻 ZEE Use-cases](https://cxt.build/docs/use-cases/overview)\n\n\u003cbr /\u003e\n\n[![NPM Version](https://img.shields.io/npm/v/@covalenthq/ai-agent-sdk)](https://www.npmjs.com/package/@covalenthq/ai-agent-sdk)\n[![NPM Downloads](https://img.shields.io/npm/dt/@covalenthq/ai-agent-sdk)](https://www.npmjs.com/package/@covalenthq/ai-agent-sdk)\n[![GitHub license](https://img.shields.io/github/license/covalenthq/ai-agent-sdk)](https://github.com/covalenthq/ai-agent-sdk/blob/main/LICENSE)\n[![GitHub last commit](https://img.shields.io/github/last-commit/covalenthq/ai-agent-sdk)](https://github.com/covalenthq/ai-agent-sdk/commits/master)\n[![GitHub contributors](https://img.shields.io/github/contributors/covalenthq/ai-agent-sdk)](https://github.com/covalenthq/ai-agent-sdk/graphs/contributors)\n[![GitHub issues](https://img.shields.io/github/issues/covalenthq/ai-agent-sdk)](https://github.com/covalenthq/ai-agent-sdk/issues)\n[![GitHub pull requests](https://img.shields.io/github/issues-pr/covalenthq/ai-agent-sdk)](https://github.com/covalenthq/ai-agent-sdk/pulls)\n\n\n[![GitHub stars](https://img.shields.io/github/stars/covalenthq/ai-agent-sdk)](https://github.com/covalenthq/ai-agent-sdk/stargazers)\n[![GitHub forks](https://img.shields.io/github/forks/covalenthq/ai-agent-sdk)](https://github.com/covalenthq/ai-agent-sdk/network/members)\n\n\u003c/div\u003e\n\n\u003cp\u003eBuild autonomous AI agents for the Zero-Employee Enterprise (ZEE). Create intelligent, context-aware agents with unprecedented ease and functionality. The Agent SDK supports single model inference calls to multi-agent systems that use tools. The SDK provides primitives that are designed to be easily composable, extendable and flexible for advanced use cases.\u003c/p\u003e\n\n## Features\n\n- LLMs - a unified interface for all LLMs\n- Agents - a single model with a system prompt and a set of tools\n- Tools - extend the capabilities of agents with external tools\n- ZEE Workflows - compose agents to solve complex problems\n\n## Using the SDK (Quick Start)\n\n### 1. Start with a template\n\n\u003e npx @covalenthq/create-zee-app@latest\n\nThis will create a new project with a basic setup.\n\n### 2. Modify the agent\n\n```js\nconst agent1 = new Agent({\n    name: \"Agent1\",\n    model: {\n        provider: \"OPEN_AI\",\n        name: \"gpt-4o-mini\",\n    },\n    description: \"A helpful AI assistant that can engage in conversation.\",\n});\n```\n\n### 3. Modify the ZEE Workflow\n\n```js\nconst zee = new ZeeWorkflow({\n    description: \"A workflow of agents that do stuff together\",\n    output: \"Just bunch of stuff\",\n    agents: { agent1, agent2 },\n});\n```\n\n### 4. Run the Zee Workflow\n\n```js\n(async function main() {\n    const result = await ZeeWorkflow.run(zee);\n    console.log(result);\n})();\n```\n\n## 🤝 Contributing\n\nContributions, issues and feature requests are welcome!\nFeel free to check \u003ca href=\"https://github.com/covalenthq/ai-agent-sdk/issues\"\u003eissues\u003c/a\u003e page.\n\nOr join the [AI Agent SDK Working Group](https://t.me/CXT_Agent_SDK) to get help and discuss the future of the SDK.\n\n## Show your support\n\nGive a ⭐️ if this project helped you!\n\n## 📝 License\n\nThis project is \u003ca href=\"https://github.com/covalenthq/ai-agent-sdk/blob/main/LICENSE\"\u003eMIT\u003c/a\u003e licensed.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcovalenthq%2Fai-agent-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcovalenthq%2Fai-agent-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcovalenthq%2Fai-agent-sdk/lists"}