{"id":27091280,"url":"https://github.com/ayoubachak/agentbridge","last_synced_at":"2026-02-14T23:31:27.619Z","repository":{"id":285232374,"uuid":"957269288","full_name":"ayoubachak/agentbridge","owner":"ayoubachak","description":"AgentBridge is a framework that allows you to expose your application components and functions to AI agents. It provides a standardized way for agents to discover, interact with, and manipulate your application.","archived":false,"fork":false,"pushed_at":"2025-11-09T22:29:06.000Z","size":2860,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-10T00:13:30.155Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/@agentbridge/core","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ayoubachak.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-30T00:10:00.000Z","updated_at":"2025-11-09T22:29:09.000Z","dependencies_parsed_at":"2025-03-30T13:44:50.706Z","dependency_job_id":null,"html_url":"https://github.com/ayoubachak/agentbridge","commit_stats":null,"previous_names":["ayoubachak/agentbridge"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/ayoubachak/agentbridge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayoubachak%2Fagentbridge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayoubachak%2Fagentbridge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayoubachak%2Fagentbridge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayoubachak%2Fagentbridge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ayoubachak","download_url":"https://codeload.github.com/ayoubachak/agentbridge/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayoubachak%2Fagentbridge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29460681,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T22:42:09.113Z","status":"ssl_error","status_checked_at":"2026-02-14T22:42:05.053Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2025-04-06T07:26:04.243Z","updated_at":"2026-02-14T23:31:27.606Z","avatar_url":"https://github.com/ayoubachak.png","language":"HTML","readme":"# AgentBridge\n\nConnect AI agents to your web and mobile applications with ease.\n\n## Overview\n\nAgentBridge is a framework that allows you to expose your application components and functions to AI agents. It provides a standardized way for agents to discover, interact with, and manipulate your application.\n\n## Features\n\n- **Dual-Mode Communication**: Choose between Pub/Sub services like Ably and Firebase, or Self-Hosted mode with WebSockets\n- **Framework Support**: Ready-to-use SDKs for React, Angular, and React Native\n- **Component Registration**: Easy component registration with HOCs, hooks, or decorators\n- **Function Registration**: Expose application functions to agents\n- **Type-Safety**: Full TypeScript support\n\n## Project Structure\n\n```\nagentbridge/\n├── packages/\n│   ├── core/             # Core functionality and interfaces\n│   ├── frameworks/       # Framework-specific implementations\n│   │   ├── react/        # React SDK\n│   │   ├── angular/      # Angular SDK\n│   │   ├── react-native/ # React Native SDK\n│   ├── providers/        # Communication providers\n│   │   ├── ably/         # Ably provider\n│   │   ├── firebase/     # Firebase provider\n│   │   ├── pusher/       # Pusher provider\n│   │   ├── supabase/     # Supabase provider\n│   ├── server/           # Self-hosted mode server\n├── examples/             # Example applications\n├── docs/                 # Documentation\n```\n\n## Installation\n\n```bash\n# Core package\nnpm install @agentbridge/core\n\n# Framework SDKs\nnpm install @agentbridge/react    # For React applications\nnpm install @agentbridge/angular  # For Angular applications\nnpm install @agentbridge/react-native  # For React Native applications\n\n# Communication Providers\nnpm install @agentbridge/provider-ably     # For using Ably as communication provider\nnpm install @agentbridge/provider-firebase # For using Firebase as communication provider\n```\n\nFor more detailed installation instructions, see [Installation Guide](docs/getting-started/installation.md).\n\n## Quick Start\n\n```jsx\n// React example\nimport { AgentBridgeProvider } from '@agentbridge/react';\nimport { AblyProvider } from '@agentbridge/provider-ably';\n\nconst ablyProvider = new AblyProvider({\n  apiKey: 'your-ably-api-key'\n});\n\nfunction App() {\n  return (\n    \u003cAgentBridgeProvider communicationProvider={ablyProvider}\u003e\n      {/* Your app components */}\n    \u003c/AgentBridgeProvider\u003e\n  );\n}\n```\n\nFor more examples, see [Quick Start Guide](docs/getting-started/quick-start.md).\n\n## Documentation\n\n- [Getting Started](docs/getting-started/quick-start.md)\n- [Communication Modes](docs/getting-started/communication-modes.md)\n- [Architecture](docs/core/architecture.md)\n- [API Reference](docs/api/core.md)\n\n## Roadmap\n\nSee our [Roadmap](docs/development/roadmap.md) for upcoming features and improvements.\n\n## Contributing\n\nContributions are welcome! See [Contributing Guide](CONTRIBUTING.md) for details.\n\n## License\n\nMIT ","funding_links":[],"categories":["Development Utilities"],"sub_categories":["AI"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayoubachak%2Fagentbridge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fayoubachak%2Fagentbridge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayoubachak%2Fagentbridge/lists"}