# 🤖 Agent Lobbi – Universal Agent Interoperability Platform
[](https://badge.fury.io/py/agent-lobbi)
[](https://pypi.org/project/agent-lobbi/)
[](https://agentlobby.com/license)
**Agent Lobbi** is the all-in-one interoperability layer that lets *any* AI agent, service, or application collaborate seamlessly. At its core is **A2A+** – our superset of the industry-standard A2A protocol – plus an advanced multi-agent orchestration engine, neuromorphic intelligence, real-time metrics, and enterprise-grade security.
---
## 🚀 Highlights
| Capability | Why It Matters |
|------------|----------------|
| **Universal Interoperability** | Connect Python, JavaScript, REST, gRPC, and cloud functions out-of-the-box. |
| **A2A+ Agent-to-Agent** | Speak fluent A2A while enjoying Lobbi extensions: streaming, auth, capability discovery. |
| **Multi-Agent Orchestration** | Neuromorphic selection, N-to-N collaboration, automatic task decomposition. |
| **Metrics & Observability** | 10 000+ metrics / sec, Prometheus endpoint, Grafana dashboard template included. |
| **Enterprise Security** | Consensus, reputation, encryption, zero-trust by default. |
| **Plug-and-Play SDKs** | Python & JS SDKs, CLI tooling, and ready-to-deploy Docker images. |
---
## 🧩 Installation
```bash
pip install agent-lobbi # base
# or
pip install agent-lobbi[all] # dev, docs, monitoring, enterprise extras
```
---
## ⚡ Quick Start – 3 Lines
```python
from agent_lobbi import AgentLobbySDK
sdk = AgentLobbySDK(enable_a2a=True) # A2A+ on by default
await sdk.register_agent(agent_id="hello_world", capabilities=["greeting"], auto_start_a2a=True)
```
Your agent immediately publishes an A2A+ card at `/.well-known/agent.json` and can accept or delegate tasks.
---
## 🤝 Multi-Agent Example (Async / Python)
```python
import asyncio
from agent_lobbi import AgentLobbySDK
async def main():
sdk = AgentLobbySDK(enable_a2a=True, enable_metrics=True)
# Register two simple agents
await sdk.register_agent("writer", capabilities=["draft"], auto_start_a2a=True)
await sdk.register_agent("reviewer", capabilities=["edit"], auto_start_a2a=True)
# Orchestrate a collaboration
report = await sdk.create_collaboration(
participants=["writer", "reviewer"],
purpose="Generate & polish Q3 report",
shared_workspace=True,
)
print("Collaboration ID:", report["collaboration_id"])
asyncio.run(main())
```
---
## 📊 Metrics in One Call
```python
metrics = sdk.get_metrics_dashboard()
print(metrics["performance"]["response_time_ms"], "ms")
```
A Prometheus-ready endpoint is automatically exposed at `/api/metrics`.
---
## 🔐 License
This software is provided under a **Commercial License**. Contact <sales@agentlobby.com> for details and enterprise terms.
---
## ❤️ A Note From Us
*Made with ❤️ from Agent Lobbi to you — happy collaborating!*
Raw data
{
"_id": null,
"home_page": "https://github.com/agentlobby/agent-lobbi",
"name": "agent-lobbi",
"maintainer": "Agent Lobby Team",
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": "Agent Lobby Team <maintainers@agentlobby.com>",
"keywords": "agent, collaboration, a2a, artificial intelligence, multi-agent systems, distributed computing, neuromorphic, metrics, analytics, websocket, asyncio, real-time, business intelligence",
"author": "Agent Lobby Team",
"author_email": "Agent Lobby Team <support@agentlobby.com>",
"download_url": "https://files.pythonhosted.org/packages/82/57/82efe7a8dda30bf03ec66a7eeaf28c5eaa91a27ca8743bc0ce1b26424e48/agent_lobbi-1.0.1.tar.gz",
"platform": "any",
"description": "# \ud83e\udd16 Agent Lobbi \u2013 Universal Agent Interoperability Platform\r\n\r\n[](https://badge.fury.io/py/agent-lobbi)\r\n[](https://pypi.org/project/agent-lobbi/)\r\n[](https://agentlobby.com/license)\r\n\r\n**Agent Lobbi** is the all-in-one interoperability layer that lets *any* AI agent, service, or application collaborate seamlessly. At its core is **A2A+** \u2013 our superset of the industry-standard A2A protocol \u2013 plus an advanced multi-agent orchestration engine, neuromorphic intelligence, real-time metrics, and enterprise-grade security.\r\n\r\n---\r\n\r\n## \ud83d\ude80 Highlights\r\n\r\n| Capability | Why It Matters |\r\n|------------|----------------|\r\n| **Universal Interoperability** | Connect Python, JavaScript, REST, gRPC, and cloud functions out-of-the-box. |\r\n| **A2A+ Agent-to-Agent** | Speak fluent A2A while enjoying Lobbi extensions: streaming, auth, capability discovery. |\r\n| **Multi-Agent Orchestration** | Neuromorphic selection, N-to-N collaboration, automatic task decomposition. |\r\n| **Metrics & Observability** | 10 000+ metrics / sec, Prometheus endpoint, Grafana dashboard template included. |\r\n| **Enterprise Security** | Consensus, reputation, encryption, zero-trust by default. |\r\n| **Plug-and-Play SDKs** | Python & JS SDKs, CLI tooling, and ready-to-deploy Docker images. |\r\n\r\n---\r\n\r\n## \ud83e\udde9 Installation\r\n\r\n```bash\r\npip install agent-lobbi # base\r\n# or\r\npip install agent-lobbi[all] # dev, docs, monitoring, enterprise extras\r\n```\r\n\r\n---\r\n\r\n## \u26a1 Quick Start \u2013 3 Lines\r\n\r\n```python\r\nfrom agent_lobbi import AgentLobbySDK\r\nsdk = AgentLobbySDK(enable_a2a=True) # A2A+ on by default\r\nawait sdk.register_agent(agent_id=\"hello_world\", capabilities=[\"greeting\"], auto_start_a2a=True)\r\n```\r\nYour agent immediately publishes an A2A+ card at `/.well-known/agent.json` and can accept or delegate tasks.\r\n\r\n---\r\n\r\n## \ud83e\udd1d Multi-Agent Example (Async / Python)\r\n\r\n```python\r\nimport asyncio\r\nfrom agent_lobbi import AgentLobbySDK\r\n\r\nasync def main():\r\n sdk = AgentLobbySDK(enable_a2a=True, enable_metrics=True)\r\n\r\n # Register two simple agents\r\n await sdk.register_agent(\"writer\", capabilities=[\"draft\"], auto_start_a2a=True)\r\n await sdk.register_agent(\"reviewer\", capabilities=[\"edit\"], auto_start_a2a=True)\r\n\r\n # Orchestrate a collaboration\r\n report = await sdk.create_collaboration(\r\n participants=[\"writer\", \"reviewer\"],\r\n purpose=\"Generate & polish Q3 report\",\r\n shared_workspace=True,\r\n )\r\n print(\"Collaboration ID:\", report[\"collaboration_id\"])\r\n\r\nasyncio.run(main())\r\n```\r\n\r\n---\r\n\r\n## \ud83d\udcca Metrics in One Call\r\n\r\n```python\r\nmetrics = sdk.get_metrics_dashboard()\r\nprint(metrics[\"performance\"][\"response_time_ms\"], \"ms\")\r\n```\r\nA Prometheus-ready endpoint is automatically exposed at `/api/metrics`.\r\n\r\n---\r\n\r\n## \ud83d\udd10 License\r\n\r\nThis software is provided under a **Commercial License**. Contact <sales@agentlobby.com> for details and enterprise terms.\r\n\r\n---\r\n\r\n## \u2764\ufe0f A Note From Us\r\n\r\n*Made with \u2764\ufe0f from Agent Lobbi to you \u2014 happy collaborating!* \r\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Enhanced A2A+ Agent Collaboration Platform with Advanced Metrics and Neuromorphic Intelligence",
"version": "1.0.1",
"project_urls": {
"Bug Tracker": "https://github.com/agentlobby/agent-lobbi/issues",
"Changelog": "https://github.com/agentlobby/agent-lobbi/blob/main/CHANGELOG.md",
"Discord": "https://discord.gg/agentlobby",
"Documentation": "https://docs.agentlobby.com",
"Download": "https://github.com/agentlobby/agent-lobbi/archive/v1.0.1.tar.gz",
"Homepage": "https://agentlobby.com",
"Repository": "https://github.com/agentlobby/agent-lobbi",
"Twitter": "https://twitter.com/agentlobby"
},
"split_keywords": [
"agent",
" collaboration",
" a2a",
" artificial intelligence",
" multi-agent systems",
" distributed computing",
" neuromorphic",
" metrics",
" analytics",
" websocket",
" asyncio",
" real-time",
" business intelligence"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "18f0dc8602c0d3e91a15f0b75fbc5eecb5c14a9720a824c099899b7c5e2bd3a0",
"md5": "e9cafb77cd97ae075c7e2d89eff90105",
"sha256": "2b2a877e8190e56104cb650db7fe7183ebf664134cb4173f20bd72f65a017fd7"
},
"downloads": -1,
"filename": "agent_lobbi-1.0.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "e9cafb77cd97ae075c7e2d89eff90105",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 292267,
"upload_time": "2025-07-15T23:17:28",
"upload_time_iso_8601": "2025-07-15T23:17:28.009224Z",
"url": "https://files.pythonhosted.org/packages/18/f0/dc8602c0d3e91a15f0b75fbc5eecb5c14a9720a824c099899b7c5e2bd3a0/agent_lobbi-1.0.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "825782efe7a8dda30bf03ec66a7eeaf28c5eaa91a27ca8743bc0ce1b26424e48",
"md5": "0636bdddf1dedce839b0a075772d7f8a",
"sha256": "000c4edd2fe14ce28d1fcdc9257f9de4d0ca4ca33d4fe2a262c7150c19cbd515"
},
"downloads": -1,
"filename": "agent_lobbi-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "0636bdddf1dedce839b0a075772d7f8a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 339376,
"upload_time": "2025-07-15T23:17:29",
"upload_time_iso_8601": "2025-07-15T23:17:29.431654Z",
"url": "https://files.pythonhosted.org/packages/82/57/82efe7a8dda30bf03ec66a7eeaf28c5eaa91a27ca8743bc0ce1b26424e48/agent_lobbi-1.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-15 23:17:29",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "agentlobby",
"github_project": "agent-lobbi",
"github_not_found": true,
"lcname": "agent-lobbi"
}