{"id":23813921,"url":"https://github.com/devhub-ai/devbots","last_synced_at":"2025-09-04T01:40:42.640Z","repository":{"id":270545128,"uuid":"905083471","full_name":"devhub-ai/devbots","owner":"devhub-ai","description":"Platform to build chatbots and embed them on your websites and application. Supports CLI and SDK for development and help.","archived":false,"fork":false,"pushed_at":"2025-08-30T09:26:23.000Z","size":241,"stargazers_count":4,"open_issues_count":4,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-30T11:20:57.403Z","etag":null,"topics":["chatbots","cli","devbots","genai","llm","npm","sdk"],"latest_commit_sha":null,"homepage":"https://devbots.vercel.app","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devhub-ai.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,"zenodo":null}},"created_at":"2024-12-18T06:04:03.000Z","updated_at":"2025-08-09T08:01:41.000Z","dependencies_parsed_at":"2025-06-07T22:43:57.263Z","dependency_job_id":null,"html_url":"https://github.com/devhub-ai/devbots","commit_stats":null,"previous_names":["devhub-ai/devbots"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devhub-ai/devbots","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devhub-ai%2Fdevbots","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devhub-ai%2Fdevbots/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devhub-ai%2Fdevbots/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devhub-ai%2Fdevbots/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devhub-ai","download_url":"https://codeload.github.com/devhub-ai/devbots/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devhub-ai%2Fdevbots/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273539293,"owners_count":25123499,"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","status":"online","status_checked_at":"2025-09-03T02:00:09.631Z","response_time":76,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["chatbots","cli","devbots","genai","llm","npm","sdk"],"created_at":"2025-01-02T03:45:25.697Z","updated_at":"2025-09-04T01:40:42.629Z","avatar_url":"https://github.com/devhub-ai.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DevBots\n![NPM Version](https://img.shields.io/npm/v/devbots)\n![NPM Downloads](https://img.shields.io/npm/d18m/devbots)\n![npm package minimized gzipped size](https://img.shields.io/bundlejs/size/devbots)\n![NPM Type Definitions](https://img.shields.io/npm/types/devbots)\n\n\nYour go-to solution for creating and integrating chatbots seamlessly into your websites and applications.\nDevbots can be used from [devbots.vercel.app](https://devbots.vercel.app) and also available as [CLI](https://devbots.vercel.app/docs/cliInstallation) tool to create your prompted chatbot and easy integration into your websites.\n\n## Get API Key\n\nTo customize your devbot:\n\n1. Go to [devbots.vercel.app](https://devbots.vercel.app)\n2. Sign in to your account and navigate to dashboard\n3. Configure your prompt with title,logo and description\n4. Copy your API key\n5. Integrate the DevBot component in your application\n\nFor more information explore DevBots [Docs](https://devbots.vercel.app/docs/devbots)\n\n## Installation\n\n1. npm\n\n    ```bash\n    npm i devbots\n    ```\n2. pnpm\n\n    ```bash\n    pnpm add devbots\n    ```\n3. yarn\n\n    ```bash\n    yarn add devbots\n    ```\n4. bun\n\n    ```bash\n    bun add devbots\n    ```\n\n### Props\n\n| Sl No. | Prop | Type | Description | Required\n|-----|-----|-----|-----|-----\n| 1 | apiKey | string | Your DevBots API key | Yes\n| 2 | title | string | Chat widget title | Yes\n\n### Example Usage\n\n1. React\n    ```javascript\n    import { DevBot } from 'devbots';\n\n    function App() {\n      return (\n        \u003cdiv\u003e\n          \u003cDevBot \n            apiKey=\"API_KEY\"\n            title=\"TITLE\"\n          /\u003e\n        \u003c/div\u003e\n      );\n    }\n    ```\n    Example File : [App.tsx](https://github.com/devhub-ai/devbots/blob/main/examples/React/src/App.tsx)\u003cbr/\u003e\n    Deployed Link : [devbots-example-react](https://devbots-example-react.vercel.app)\n\n2. Html\n    ```javascript\n    \u003cscript src=\"https://cdn.jsdelivr.net/gh/devhub-ai/cdns@master/devbots-chatbot.js\"\u003e\u003c/script\u003e\n    \u003cscript\u003e\n      document.addEventListener('DOMContentLoaded', function () {\n        new DevBot('API_KEY', 'TITLE');\n      });\n    \u003c/script\u003e\n    ```\n    Example File : [index.html](https://github.com/devhub-ai/devbots/blob/main/examples/Html/index.html)\u003cbr/\u003e\n    Deployed Link : [devbots-example-html](https://devbots-example-html.vercel.app)\n  \n## CLI\n\n### Installation\n\n```bash\nnpm i -g devbots\n```\n\n### Commands\n\n1. help\n\n    ```bash\n    devbots help\n    ```\n    - It will show you available commands.\n\n2. create devbot\n\n    ```bash\n    devbots create \"title\" \"prompt\"\n    ```\n    - It will generate an `API_KEY`.\n\n3. chat with devbot\n\n    ```bash\n    devbots chat \"API_KEY\" \"query\"\n    ```\n\n## Features of [DevBots](https://devbots.vercel.app)\n\n1. Create, Update and Delete your *Preprompted private **devbot***.\n2. Get ***Free API KEY*** for your customized devbot.\n3. ***CDN*** for embedding your customized devbot.\n4. See the ***Analytics** (IP, DEVICE, RES etc)* of your devbot.\n5. Create ***Projects*** to group your devbot.\n6. Make your *devbot **public** for use to **Marketplace***. \n7. ***Fork** others devbot* from marketplace to your project.\n8. ***Activity** section* to get a ***log*** of everything with timestamp.\n9. Get your ***Auth log*** from profile section.\n\n## License\n\nThis project is licensed under the Apache License 2.0 - see the [LICENSE](./LICENSE) file for details.\n\n## Support\n\nNeed help? Visit our [documentation](https://devbots.vercel.app/docs/get-started) or [contact us](https://devbots.vercel.app/contact).\n\n## Creator\n\nDeepraj Bera \u003cbr/\u003e\n[Github](http://github.com/deepraj21)\u003cbr/\u003e\n[LinkedIn](https://www.linkedin.com/in/deepraj-bera-b64996231)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevhub-ai%2Fdevbots","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevhub-ai%2Fdevbots","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevhub-ai%2Fdevbots/lists"}