{"id":29737312,"url":"https://github.com/connery-io/connery-sdk","last_synced_at":"2025-07-25T16:11:01.720Z","repository":{"id":195407554,"uuid":"656287696","full_name":"connery-io/connery-sdk","owner":"connery-io","description":"The open-source SDK for creating AI plugins and actions","archived":false,"fork":false,"pushed_at":"2024-08-14T15:23:43.000Z","size":71323,"stargazers_count":256,"open_issues_count":4,"forks_count":15,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-08-14T15:50:53.047Z","etag":null,"topics":["actions","agent","ai","ai-actions","ai-agent","api","apps","automation","chatbot","development","gpt","integration","llm","middleware","natural-language","no-code","plugins","sdk","tools"],"latest_commit_sha":null,"homepage":"https://sdk.connery.io","language":"TypeScript","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/connery-io.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2023-06-20T16:28:35.000Z","updated_at":"2024-08-14T15:51:08.270Z","dependencies_parsed_at":"2023-09-27T21:26:32.072Z","dependency_job_id":"a84712c8-782c-423b-8dd3-da98168e6bb5","html_url":"https://github.com/connery-io/connery-sdk","commit_stats":null,"previous_names":["connery-io/connery","connery-io/sdk","connery-io/connery-sdk"],"tags_count":28,"template":false,"template_full_name":null,"purl":"pkg:github/connery-io/connery-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/connery-io%2Fconnery-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/connery-io%2Fconnery-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/connery-io%2Fconnery-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/connery-io%2Fconnery-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/connery-io","download_url":"https://codeload.github.com/connery-io/connery-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/connery-io%2Fconnery-sdk/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267029422,"owners_count":24024203,"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-07-25T02:00:09.625Z","response_time":70,"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":["actions","agent","ai","ai-actions","ai-agent","api","apps","automation","chatbot","development","gpt","integration","llm","middleware","natural-language","no-code","plugins","sdk","tools"],"created_at":"2025-07-25T16:11:00.832Z","updated_at":"2025-07-25T16:11:01.696Z","avatar_url":"https://github.com/connery-io.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# The open-source SDK for\u003cbr\u003ecreating AI plugins and actions\n\n[![Release](https://img.shields.io/github/v/release/connery-io/connery-sdk?color=74C649\u0026label=Release)](https://github.com/connery-io/connery-sdk/releases)\n[![License](https://img.shields.io/github/license/connery-io/connery-sdk?color=74C649\u0026label=License)](https://github.com/connery-io/connery-sdk/blob/main/LICENSE)\n\n\u003c/div\u003e\n\n## 🤔 What is Connery SDK?\n\nThe Connery SDK is an NPM package that combines an SDK and a CLI, designed to streamline the development of [plugins](https://docs.connery.io/sdk/get-started/core-concepts#plugin) and [actions](https://docs.connery.io/sdk/get-started/core-concepts#action) for AI apps.\n\nThe CLI automates the development process, while the SDK provides a JavaScript API for defining plugins and actions. It also simplifies packaging them into a [plugin server](https://docs.connery.io/sdk/get-started/core-concepts#plugin-server) with a standardized REST API generated from metadata. The plugin server takes care of authorization, input validation, and logging, allowing you to focus on the core logic of your actions.\n\nThis standardized API ensures that various [apps](https://docs.connery.io/sdk/get-started/core-concepts#app) can interact with actions in a consistent way, regardless of their implementation.\n\nAn action consists of JavaScript code that defines its logic and metadata describing its input and output. Actions can interact with external APIs, databases, or other services.\n\nFor example, [Send email](https://github.com/connery-io/gmail/blob/main/src/actions/sendEmail.ts)\nis an action in the [connery-io/gmail](https://github.com/connery-io/gmail) plugin.\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg width=\"550px\" alt=\"Connery diagram\" src=\"./img/connery-sdk.png\"\u003e\n\u003c/div\u003e\n\n## 🚀 Quickstart\n\nInitialize a new plugin with a sample action:\n\n```bash\nnpx connery@latest dev init\n```\n\nInstall the dependencies:\n\n```bash\nnpm install\n```\n\nRun the plugin server:\n\n```bash\nnpm start\n```\n\n[Explore](http://localhost:4201) the plugin in a browser and use it in AI apps.\n\n👉 Check out the [full quickstart guide](https://docs.connery.io/sdk/guides/create-a-plugin) to learn more.\n\n## ✅ Example 1: Send email from an OpenAI GPT\n\n\u003cimg alt=\"Send email from an OpenAI GPT\" src=\"./img/send-email-from-a-custom-gpt-using-connery-actions.gif\"\u003e\n\n## ✅ Example 2: Summarize a webpage and send it by email from OpenGPTs\n\n\u003cimg alt=\"Summarize a webpage and send it by email from OpenGPTs\" src=\"./img/summarize-a-webpage-and-send-it-by-email-from-opengpts.gif\"\u003e\n\n## ✅ Example 3: Scale back-end service on AWS from Slack\n\n\u003cimg alt=\"Scheduled scaling of Back End service on AWS Fargate from Slack using Connery\" src=\"./img/scheduled-scaling-of-back-end-service-on-aws-fargate-from-slack-using-connery.gif\"\u003e\n\n## 🌟 Support us and stay up-to-date\n\nPlease **give the repository a star** to support the project and stay up-to-date with the latest news.\n\n\u003cimg src=\"./img/give-us-a-star.png\" alt=\"Give the repository a star\" width=\"300\"\u003e\n\n## 📖 Documentation\n\nCheck out the [documentation](https://docs.connery.io/sdk) to learn more.\n\n## 💬 Feedback \u0026 Support\n\nConnery is still in early beta, so not everything is perfect yet. Please let us know of any suggestions, ideas, or bugs you encounter, and we will use your feedback to improve our upcoming releases.\n\nYou can reach us via the following channels:\n\n- [Discussions](https://github.com/connery-io/connery-sdk/discussions) - for feedback, questions, and discussions.\n- [Issues](https://github.com/connery-io/connery-sdk/issues) - for bug reports and feature requests.\n- [Twitter](https://twitter.com/connery_io) - for updates and announcements.\n\n## 🗄️ Repository structure\n\nThis is a monorepo that contains the following components:\n\n| Name                | Path                 | Description                                                                                                                            |\n| ------------------- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |\n| SDK\u0026nbsp;\u0026\u0026nbsp;CLI | `./packages/connery` | The [`connery`](https://www.npmjs.com/package/connery) package that contains both the SDK and CLI for plugins and actions development. |\n| Docs                | `./docs`             | The [documentation](https://docs.connery.io/sdk) website.                                                                              |\n\n## 👨‍💻 Contributing\n\nWe are open to contributions, whether it be in the form of a new feature, improved infrastructure, or better documentation.\n\nFor detailed information on how to contribute, see our [contributing guide](/CONTRIBUTING.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconnery-io%2Fconnery-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fconnery-io%2Fconnery-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconnery-io%2Fconnery-sdk/lists"}