mindroom 0.0.0__py3-none-any.whl → 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (155) hide show
  1. mindroom/__init__.py +3 -0
  2. mindroom/agent_prompts.py +963 -0
  3. mindroom/agents.py +248 -0
  4. mindroom/ai.py +421 -0
  5. mindroom/api/__init__.py +1 -0
  6. mindroom/api/credentials.py +137 -0
  7. mindroom/api/google_integration.py +355 -0
  8. mindroom/api/google_tools_helper.py +40 -0
  9. mindroom/api/homeassistant_integration.py +421 -0
  10. mindroom/api/integrations.py +189 -0
  11. mindroom/api/main.py +506 -0
  12. mindroom/api/matrix_operations.py +219 -0
  13. mindroom/api/tools.py +94 -0
  14. mindroom/background_tasks.py +87 -0
  15. mindroom/bot.py +2470 -0
  16. mindroom/cli.py +86 -0
  17. mindroom/commands.py +377 -0
  18. mindroom/config.py +343 -0
  19. mindroom/config_commands.py +324 -0
  20. mindroom/config_confirmation.py +411 -0
  21. mindroom/constants.py +52 -0
  22. mindroom/credentials.py +146 -0
  23. mindroom/credentials_sync.py +134 -0
  24. mindroom/custom_tools/__init__.py +8 -0
  25. mindroom/custom_tools/config_manager.py +765 -0
  26. mindroom/custom_tools/gmail.py +92 -0
  27. mindroom/custom_tools/google_calendar.py +92 -0
  28. mindroom/custom_tools/google_sheets.py +92 -0
  29. mindroom/custom_tools/homeassistant.py +341 -0
  30. mindroom/error_handling.py +35 -0
  31. mindroom/file_watcher.py +49 -0
  32. mindroom/interactive.py +313 -0
  33. mindroom/logging_config.py +207 -0
  34. mindroom/matrix/__init__.py +1 -0
  35. mindroom/matrix/client.py +782 -0
  36. mindroom/matrix/event_info.py +173 -0
  37. mindroom/matrix/identity.py +149 -0
  38. mindroom/matrix/large_messages.py +267 -0
  39. mindroom/matrix/mentions.py +141 -0
  40. mindroom/matrix/message_builder.py +94 -0
  41. mindroom/matrix/message_content.py +209 -0
  42. mindroom/matrix/presence.py +178 -0
  43. mindroom/matrix/rooms.py +311 -0
  44. mindroom/matrix/state.py +77 -0
  45. mindroom/matrix/typing.py +91 -0
  46. mindroom/matrix/users.py +217 -0
  47. mindroom/memory/__init__.py +21 -0
  48. mindroom/memory/config.py +137 -0
  49. mindroom/memory/functions.py +396 -0
  50. mindroom/py.typed +0 -0
  51. mindroom/response_tracker.py +128 -0
  52. mindroom/room_cleanup.py +139 -0
  53. mindroom/routing.py +107 -0
  54. mindroom/scheduling.py +758 -0
  55. mindroom/stop.py +207 -0
  56. mindroom/streaming.py +203 -0
  57. mindroom/teams.py +749 -0
  58. mindroom/thread_utils.py +318 -0
  59. mindroom/tools/__init__.py +520 -0
  60. mindroom/tools/agentql.py +64 -0
  61. mindroom/tools/airflow.py +57 -0
  62. mindroom/tools/apify.py +49 -0
  63. mindroom/tools/arxiv.py +64 -0
  64. mindroom/tools/aws_lambda.py +41 -0
  65. mindroom/tools/aws_ses.py +57 -0
  66. mindroom/tools/baidusearch.py +87 -0
  67. mindroom/tools/brightdata.py +116 -0
  68. mindroom/tools/browserbase.py +62 -0
  69. mindroom/tools/cal_com.py +98 -0
  70. mindroom/tools/calculator.py +112 -0
  71. mindroom/tools/cartesia.py +84 -0
  72. mindroom/tools/composio.py +166 -0
  73. mindroom/tools/config_manager.py +44 -0
  74. mindroom/tools/confluence.py +73 -0
  75. mindroom/tools/crawl4ai.py +101 -0
  76. mindroom/tools/csv.py +104 -0
  77. mindroom/tools/custom_api.py +106 -0
  78. mindroom/tools/dalle.py +85 -0
  79. mindroom/tools/daytona.py +180 -0
  80. mindroom/tools/discord.py +81 -0
  81. mindroom/tools/docker.py +73 -0
  82. mindroom/tools/duckdb.py +124 -0
  83. mindroom/tools/duckduckgo.py +99 -0
  84. mindroom/tools/e2b.py +121 -0
  85. mindroom/tools/eleven_labs.py +77 -0
  86. mindroom/tools/email.py +74 -0
  87. mindroom/tools/exa.py +246 -0
  88. mindroom/tools/fal.py +50 -0
  89. mindroom/tools/file.py +80 -0
  90. mindroom/tools/financial_datasets_api.py +112 -0
  91. mindroom/tools/firecrawl.py +124 -0
  92. mindroom/tools/gemini.py +85 -0
  93. mindroom/tools/giphy.py +49 -0
  94. mindroom/tools/github.py +376 -0
  95. mindroom/tools/gmail.py +102 -0
  96. mindroom/tools/google_calendar.py +55 -0
  97. mindroom/tools/google_maps.py +112 -0
  98. mindroom/tools/google_sheets.py +86 -0
  99. mindroom/tools/googlesearch.py +83 -0
  100. mindroom/tools/groq.py +77 -0
  101. mindroom/tools/hackernews.py +54 -0
  102. mindroom/tools/jina.py +108 -0
  103. mindroom/tools/jira.py +70 -0
  104. mindroom/tools/linear.py +103 -0
  105. mindroom/tools/linkup.py +65 -0
  106. mindroom/tools/lumalabs.py +71 -0
  107. mindroom/tools/mem0.py +82 -0
  108. mindroom/tools/modelslabs.py +85 -0
  109. mindroom/tools/moviepy_video_tools.py +62 -0
  110. mindroom/tools/newspaper4k.py +63 -0
  111. mindroom/tools/openai.py +143 -0
  112. mindroom/tools/openweather.py +89 -0
  113. mindroom/tools/oxylabs.py +54 -0
  114. mindroom/tools/pandas.py +35 -0
  115. mindroom/tools/pubmed.py +64 -0
  116. mindroom/tools/python.py +120 -0
  117. mindroom/tools/reddit.py +155 -0
  118. mindroom/tools/replicate.py +56 -0
  119. mindroom/tools/resend.py +55 -0
  120. mindroom/tools/scrapegraph.py +87 -0
  121. mindroom/tools/searxng.py +120 -0
  122. mindroom/tools/serpapi.py +55 -0
  123. mindroom/tools/serper.py +81 -0
  124. mindroom/tools/shell.py +46 -0
  125. mindroom/tools/slack.py +80 -0
  126. mindroom/tools/sleep.py +38 -0
  127. mindroom/tools/spider.py +62 -0
  128. mindroom/tools/sql.py +138 -0
  129. mindroom/tools/tavily.py +104 -0
  130. mindroom/tools/telegram.py +54 -0
  131. mindroom/tools/todoist.py +103 -0
  132. mindroom/tools/trello.py +121 -0
  133. mindroom/tools/twilio.py +97 -0
  134. mindroom/tools/web_browser_tools.py +37 -0
  135. mindroom/tools/webex.py +63 -0
  136. mindroom/tools/website.py +45 -0
  137. mindroom/tools/whatsapp.py +81 -0
  138. mindroom/tools/wikipedia.py +45 -0
  139. mindroom/tools/x.py +97 -0
  140. mindroom/tools/yfinance.py +121 -0
  141. mindroom/tools/youtube.py +81 -0
  142. mindroom/tools/zendesk.py +62 -0
  143. mindroom/tools/zep.py +107 -0
  144. mindroom/tools/zoom.py +62 -0
  145. mindroom/tools_metadata.json +7643 -0
  146. mindroom/tools_metadata.py +220 -0
  147. mindroom/topic_generator.py +153 -0
  148. mindroom/voice_handler.py +266 -0
  149. mindroom-0.1.0.dist-info/METADATA +425 -0
  150. mindroom-0.1.0.dist-info/RECORD +152 -0
  151. {mindroom-0.0.0.dist-info → mindroom-0.1.0.dist-info}/WHEEL +1 -2
  152. mindroom-0.1.0.dist-info/entry_points.txt +2 -0
  153. mindroom-0.0.0.dist-info/METADATA +0 -24
  154. mindroom-0.0.0.dist-info/RECORD +0 -4
  155. mindroom-0.0.0.dist-info/top_level.txt +0 -1
@@ -0,0 +1,425 @@
1
+ Metadata-Version: 2.4
2
+ Name: mindroom
3
+ Version: 0.1.0
4
+ Summary: A universal interface for AI agents with persistent memory, where every conversation has a home
5
+ Project-URL: documentation, https://github.com/mindroom-ai/mindroom
6
+ Project-URL: homepage, https://github.com/mindroom-ai/mindroom
7
+ Project-URL: repository, https://github.com/mindroom-ai/mindroom
8
+ Author: mindroom team
9
+ Classifier: Programming Language :: Python :: 3 :: Only
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Classifier: Programming Language :: Python :: 3.13
12
+ Requires-Python: >=3.12
13
+ Requires-Dist: agentql
14
+ Requires-Dist: agno[anthropic,google,ollama,openai]>=1.7.6
15
+ Requires-Dist: aiofiles
16
+ Requires-Dist: aiohttp
17
+ Requires-Dist: apify-client>=1.12.2
18
+ Requires-Dist: arxiv
19
+ Requires-Dist: atlassian-python-api
20
+ Requires-Dist: baidusearch
21
+ Requires-Dist: beautifulsoup4
22
+ Requires-Dist: boto3>=1.40.8
23
+ Requires-Dist: browserbase
24
+ Requires-Dist: cartesia
25
+ Requires-Dist: cerebras-cloud-sdk>=1.46
26
+ Requires-Dist: chromadb>=1.0.15
27
+ Requires-Dist: composio-agno
28
+ Requires-Dist: crawl4ai>=0.7.3
29
+ Requires-Dist: cron-descriptor>=1.4.5
30
+ Requires-Dist: croniter>=6
31
+ Requires-Dist: daytona
32
+ Requires-Dist: ddgs
33
+ Requires-Dist: diskcache>=5.6.3
34
+ Requires-Dist: docker
35
+ Requires-Dist: duckdb
36
+ Requires-Dist: e2b-code-interpreter
37
+ Requires-Dist: elevenlabs
38
+ Requires-Dist: exa-py
39
+ Requires-Dist: fal-client
40
+ Requires-Dist: fastapi[standard]>=0.116.1
41
+ Requires-Dist: firecrawl-py<3
42
+ Requires-Dist: google-api-python-client>=2.178
43
+ Requires-Dist: google-auth-httplib2>=0.2
44
+ Requires-Dist: google-auth-oauthlib>=1.2.2
45
+ Requires-Dist: google-auth>=2.40.3
46
+ Requires-Dist: google-cloud-bigquery
47
+ Requires-Dist: google-genai
48
+ Requires-Dist: google-maps-places
49
+ Requires-Dist: google-search-results>=2.4.2
50
+ Requires-Dist: googlemaps
51
+ Requires-Dist: googlesearch-python
52
+ Requires-Dist: groq>=0.31
53
+ Requires-Dist: httpx>=0.27
54
+ Requires-Dist: humanize>=4.12.3
55
+ Requires-Dist: jira>=3.10.5
56
+ Requires-Dist: linkup-sdk>=0.2.8
57
+ Requires-Dist: loguru>=0.7.3
58
+ Requires-Dist: lumaai
59
+ Requires-Dist: lxml-html-clean
60
+ Requires-Dist: markdown>=3.7
61
+ Requires-Dist: matrix-nio>=0.24
62
+ Requires-Dist: mcp[cli]>=1.12.4
63
+ Requires-Dist: mem0ai>=0.1.115
64
+ Requires-Dist: moviepy
65
+ Requires-Dist: newspaper4k
66
+ Requires-Dist: openai
67
+ Requires-Dist: oxylabs
68
+ Requires-Dist: pandas>=2.2
69
+ Requires-Dist: playwright
70
+ Requires-Dist: praw
71
+ Requires-Dist: psycopg-binary
72
+ Requires-Dist: py-trello
73
+ Requires-Dist: pycountry
74
+ Requires-Dist: pydantic>=2
75
+ Requires-Dist: pygithub>=2.5
76
+ Requires-Dist: pyjwt>=2.8
77
+ Requires-Dist: pypdf
78
+ Requires-Dist: python-dotenv>=1
79
+ Requires-Dist: pytz
80
+ Requires-Dist: pyyaml>=6
81
+ Requires-Dist: replicate>=1.0.7
82
+ Requires-Dist: requests
83
+ Requires-Dist: resend
84
+ Requires-Dist: rich
85
+ Requires-Dist: scrapegraph-py
86
+ Requires-Dist: slack-sdk
87
+ Requires-Dist: spider-client
88
+ Requires-Dist: spotipy>=2.25.1
89
+ Requires-Dist: sqlalchemy
90
+ Requires-Dist: streamlit
91
+ Requires-Dist: structlog>=24.1
92
+ Requires-Dist: supabase>=2.18.1
93
+ Requires-Dist: tavily-python
94
+ Requires-Dist: tenacity>=9.1.2
95
+ Requires-Dist: todoist-api-python
96
+ Requires-Dist: tweepy
97
+ Requires-Dist: twilio
98
+ Requires-Dist: typer>=0.16
99
+ Requires-Dist: uvicorn>=0.35
100
+ Requires-Dist: watchdog>=6
101
+ Requires-Dist: webexpythonsdk
102
+ Requires-Dist: wikipedia
103
+ Requires-Dist: yfinance
104
+ Requires-Dist: youtube-transcript-api
105
+ Requires-Dist: zep-cloud>=3.3
106
+ Description-Content-Type: text/markdown
107
+
108
+ # mindroom
109
+
110
+ **Your AI is trapped in apps. We set it free.**
111
+
112
+ AI agents that learn who you are shouldn't forget everything when you switch apps. MindRoom agents follow you everywhere—Slack, Telegram, Discord, WhatsApp—with persistent memory intact.
113
+
114
+ Deploy once on Matrix. Your agents now work in any chat platform via bridges. They can even visit your client's workspace or join your friend's group chat.
115
+
116
+ Self-host for complete control or use our encrypted service. Either way, your agents remember you and can collaborate across organizations.
117
+
118
+ ## The Problem
119
+
120
+ Every AI app is a prison:
121
+ - ChatGPT knows your coding style... but can't join your team's Slack
122
+ - Claude understands your writing... but can't access your email
123
+ - GitHub Copilot helps with code... but can't see your project specs
124
+ - You teach each AI from scratch, over and over
125
+
126
+ Meanwhile, your human team collaborates across Slack, Discord, Telegram, and email daily. Why can't your AI?
127
+
128
+ ## The Solution
129
+
130
+ MindRoom agents:
131
+ - **Live in Matrix** - A federated protocol like email
132
+ - **Work everywhere** - Via bridges to Slack, Telegram, Discord, WhatsApp, IRC, email
133
+ - **Remember everything** - Persistent memory across all platforms
134
+ - **Collaborate naturally** - Multiple agents working together in threads
135
+ - **Respect boundaries** - You control which agent sees what data
136
+
137
+ ## Built on Proven Infrastructure
138
+
139
+ MindRoom leverages the Matrix protocol, a decade-old open standard with significant real-world adoption:
140
+
141
+ **Foundation**
142
+ - **10+ years** of development by the Matrix.org Foundation
143
+ - **€10M+** invested in protocol development
144
+ - **100+ developers** contributing to the core ecosystem
145
+ - **35+ million users** globally
146
+
147
+ **Enterprise Validation**
148
+ - **German Healthcare**: 150,000+ organizations using Ti-Messenger
149
+ - **French Government**: 5.5 million civil servants on Tchap
150
+ - **Military Adoption**: NATO, U.S. Space Force, and other defense organizations
151
+ - **GDPR Compliant**: Built for European privacy standards
152
+
153
+ **What This Means For You**
154
+
155
+ By building on Matrix, MindRoom inherits:
156
+ - Production-tested federation across organizations
157
+ - Military-grade E2E encryption (Olm/Megolm)
158
+ - Professional clients (Element, FluffyChat, Cinny)
159
+ - 50+ maintained bridges to other platforms
160
+ - Proven scale and reliability
161
+
162
+ This foundation allows MindRoom to focus entirely on agent orchestration and intelligence, rather than reimplementing communication infrastructure.
163
+
164
+ ## See It In Action
165
+
166
+ ```
167
+ Monday, in your Matrix room:
168
+ You: @assistant Remember our project uses Python 3.11 and FastAPI
169
+
170
+ Tuesday, in your team's Slack (via bridge):
171
+ Colleague: What Python version are we using?
172
+ You: @assistant can you help?
173
+ Assistant: [Joins from Matrix] We're using Python 3.11 with FastAPI
174
+
175
+ Wednesday, in client's Telegram (via bridge):
176
+ Client: Can your AI review our API spec?
177
+ You: @assistant please analyze this
178
+ Assistant: [Travels from your server] I'll review this against our FastAPI patterns...
179
+ ```
180
+
181
+ One agent. Every platform. Continuous memory.
182
+
183
+ ## The Magic Moment - Cross-Organization Collaboration
184
+
185
+ ```
186
+ Thursday, your client asks in their Discord:
187
+ Client: Can our architect AI review this with your team?
188
+ You: Sure! @assistant please collaborate with them
189
+
190
+ Your Assistant: [Joins from your Matrix server]
191
+ Client's Architect AI: [Joins from their server]
192
+ Together: [They review architecture, sharing context from both organizations]
193
+ ```
194
+
195
+ **Two AI agents from different companies collaborating.**
196
+ This is impossible with ChatGPT, Claude, or any other platform.
197
+
198
+ ## But It Gets Better - Your Agents Work as a Team
199
+
200
+ ```
201
+ Friday, planning next sprint:
202
+ You: @research @analyst @writer Create a competitive analysis report
203
+ Research: I'll gather data on our top 5 competitors...
204
+ Analyst: I'll identify strategic patterns and opportunities...
205
+ Writer: I'll compile everything into an executive summary...
206
+ [They work together, transparently, delivering a comprehensive report]
207
+ ```
208
+
209
+ ## Key Features
210
+
211
+ ### 🧠 Dual Memory System
212
+ - **Agent Memory**: Each agent remembers conversations, preferences, and patterns across all platforms
213
+ - **Room Memory**: Contextual knowledge that stays within specific rooms (work projects, personal notes)
214
+ - Tags for sharing memories across related threads
215
+
216
+ ### 🤝 Multi-Agent Collaboration
217
+ ```
218
+ You: @research @analyst @email Create weekly competitor analysis reports
219
+ Research: I'll gather competitor updates
220
+ Analyst: I'll identify strategic patterns
221
+ Email: I'll compile and send every Friday
222
+ [They work together, automatically, every week]
223
+ ```
224
+
225
+ ### 💬 Direct Messages (DMs)
226
+ - Agents respond naturally in 1:1 DMs without needing mentions
227
+ - Add more agents to existing DM rooms for collaborative private work
228
+ - Complete privacy separate from configured public rooms
229
+
230
+ ### 🔐 Intelligent Trust Boundaries
231
+ - Route sensitive data to local Ollama models on your hardware
232
+ - Use GPT-5 for complex reasoning
233
+ - Send general queries to cost-effective cloud models
234
+ - You decide which AI sees what
235
+
236
+ ### 🔌 80+ Integrations
237
+ Gmail, GitHub, Spotify, Home Assistant, Google Drive, Reddit, weather services, news APIs, financial data, and many more. Your agents can interact with all your tools.
238
+
239
+ ### 📅 Automation & Scheduling
240
+ - Daily check-ins from your mindfulness agent
241
+ - Scheduled reports and summaries
242
+ - Event-based triggers (coming soon)
243
+ - Background tasks with human escalation
244
+
245
+ ## Who This Is For
246
+
247
+ - **Teams using Matrix/Element** - Add AI to your existing secure infrastructure without migration
248
+ - **Open Source Projects** - Agents that remember all decisions and can visit contributor chats
249
+ - **Consultants & Agencies** - Your AI can securely join client workspaces
250
+ - **Privacy-Focused Organizations** - Self-host everything, own your data completely
251
+ - **Developers** - Build on our platform, contribute agents, extend functionality
252
+
253
+ ## Quick Start
254
+
255
+ ### Prerequisites
256
+ - Python 3.12+
257
+ - [uv](https://github.com/astral-sh/uv) for Python package management
258
+ - Node.js 20+ and [bun](https://bun.sh/) (optional, for web UI)
259
+
260
+ ### Installation and starting
261
+
262
+ ```bash
263
+ # Clone and install
264
+ git clone https://github.com/mindroom-ai/mindroom
265
+ cd mindroom
266
+ uv sync --all-extras
267
+ ```
268
+
269
+ ```bash
270
+ # Terminal 1: Start backend (agents + API)
271
+ ./run-backend.sh
272
+
273
+ # Terminal 2: Start frontend (optional, for web UI)
274
+ ./run-frontend.sh
275
+ ```
276
+
277
+ The web interface will be available at http://localhost:3003
278
+
279
+ ### First Steps
280
+
281
+ In any Matrix client (Element, FluffyChat, etc):
282
+ ```
283
+ You: @mindroom_assistant What can you do?
284
+ Assistant: I can coordinate our team of specialized agents...
285
+
286
+ You: @mindroom_research @mindroom_analyst What are the latest AI breakthroughs?
287
+ [Agents collaborate to research and analyze]
288
+ ```
289
+
290
+ ## How Agents Work
291
+
292
+ ### Agent Response Rules
293
+ Agents ONLY respond in threads (not main room). Within threads:
294
+
295
+ 1. **Mentioned agents always respond** - Tag them to get their attention
296
+ 2. **Single agent continues** - One agent in thread? It keeps responding
297
+ 3. **Multiple agents collaborate** - They work together, not compete
298
+ 4. **Smart routing** - System picks the best agent for new threads
299
+
300
+ ### Available Commands
301
+
302
+ <!-- CODE:START -->
303
+ <!-- import sys -->
304
+ <!-- sys.path.insert(0, 'src') -->
305
+ <!-- from mindroom.commands import _get_command_entries -->
306
+ <!-- for entry in _get_command_entries(format_code=True): -->
307
+ <!-- print(entry) -->
308
+ <!-- CODE:END -->
309
+ <!-- OUTPUT:START -->
310
+ <!-- ⚠️ This content is auto-generated by `markdown-code-runner`. -->
311
+ - `!help [topic]` - Get help
312
+ - `!schedule <task>` - Schedule a task
313
+ - `!list_schedules` - List scheduled tasks
314
+ - `!cancel_schedule <id>` - Cancel a scheduled task
315
+ - `!widget [url]` - Add configuration widget
316
+ - `!config <operation>` - Manage configuration
317
+ - `!hi` - Show welcome message
318
+
319
+ <!-- OUTPUT:END -->
320
+
321
+ ## Note for Self-Hosters
322
+
323
+ This repository contains everything you need to self-host MindRoom. The `saas-platform/` directory contains infrastructure and code specific to running MindRoom as a hosted service and can be safely ignored by self-hosters.
324
+
325
+ ## Configuration
326
+
327
+ ### Basic Setup
328
+
329
+ 1. Copy the example configuration:
330
+ ```bash
331
+ cp config.example.yaml config.yaml
332
+ ```
333
+
334
+ 2. Edit `config.yaml` to add your API keys (optional):
335
+ ```yaml
336
+ models:
337
+ - provider: openai
338
+ api_key: your-key-here # Or use environment variable
339
+ - provider: anthropic
340
+ api_key: your-key-here
341
+ - provider: ollama
342
+ host: http://localhost:11434 # For local models
343
+ ```
344
+
345
+ 3. Configure your Matrix homeserver (optional, defaults to localhost:8008):
346
+ ```bash
347
+ export MATRIX_HOMESERVER=https://your-matrix.server
348
+ ```
349
+
350
+ ## Deployment Options
351
+
352
+ ### 🏠 Self-Hosted
353
+ Complete control on your infrastructure:
354
+ ```bash
355
+ # Using your existing Matrix server
356
+ MATRIX_HOMESERVER=https://your-matrix.server uv run mindroom run
357
+
358
+ # Or let MindRoom handle everything locally
359
+ uv run mindroom run
360
+ ```
361
+
362
+ ### ☁️ Our Hosted Service (Coming Soon)
363
+ Zero setup, enterprise security:
364
+ - End-to-end encrypted (we can't read your data)
365
+ - Automatic updates and scaling
366
+ - 99.9% uptime SLA
367
+ - Start free, scale as needed
368
+
369
+ ### 🔀 Hybrid
370
+ Mix and match:
371
+ - Sensitive rooms on your server
372
+ - General rooms on our cloud
373
+ - Agents collaborate seamlessly across both
374
+
375
+ ## Architecture
376
+
377
+ ### Technical Stack
378
+ - **Matrix**: Conduit server (only 20-30MB RAM!)
379
+ - **Agents**: Python with matrix-nio
380
+ - **AI Models**: OpenAI, Anthropic, Ollama, or any provider
381
+ - **Memory**: Conversation-based (no separate database)
382
+ - **UI**: Web widget + any Matrix client
383
+
384
+ ## Philosophy
385
+
386
+ We believe AI should be:
387
+
388
+ 1. **Persistent**: Your AI should remember and learn from every interaction
389
+ 2. **Ubiquitous**: Available wherever you communicate
390
+ 3. **Collaborative**: Multiple specialists working together
391
+ 4. **Private**: You control where your data lives
392
+ 5. **Natural**: Just chat—no complex interfaces
393
+
394
+ ## Status
395
+
396
+ - ✅ **Production ready** with 1000+ commits
397
+ - ✅ **80+ integrations** working today
398
+ - ✅ **Multi-agent collaboration** with persistent memory
399
+ - ✅ **Federation** across organizations and platforms
400
+ - ✅ **Self-hosted & cloud** options available
401
+ - 🚧 Voice interaction (STT/TTS) coming soon
402
+ - 🚧 Mobile apps in development
403
+ - 🚧 Agent marketplace planned
404
+
405
+
406
+ ## Contributing
407
+
408
+ We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
409
+
410
+ From the developer of 10+ successful open source projects with thousands of users. MindRoom represents 1000+ commits of production-ready code, not a weekend experiment.
411
+
412
+ ## License
413
+
414
+ MIT License - see [LICENSE](LICENSE) for details.
415
+
416
+ ## Acknowledgments
417
+
418
+ Built with:
419
+ - [Matrix](https://matrix.org/) - The federated communication protocol
420
+ - [Agno](https://agno.dev/) - AI agent framework
421
+ - [matrix-nio](https://github.com/poljar/matrix-nio) - Python Matrix client
422
+
423
+ ---
424
+
425
+ **mindroom** - AI that follows you everywhere, remembers everything, and stays under your control.
@@ -0,0 +1,152 @@
1
+ mindroom/__init__.py,sha256=VmUGNoOOtLFDVv5nxS3_IRvmpX0ZUC5VonguKuCbQGM,99
2
+ mindroom/agent_prompts.py,sha256=uv726zGVqYIJpmyvZDdI8GNjswiwvwjR-_lhUXmM_y0,43827
3
+ mindroom/agents.py,sha256=fRMWEu4T2rnqjK28Blju4srcJH51HcbOi2vMFmS_7n4,8440
4
+ mindroom/ai.py,sha256=_GNbbVcL3paDD9tMWvJBvd9c4LU9aQlcKOwtklvBNaQ,14331
5
+ mindroom/background_tasks.py,sha256=Yg47noGS2s0BEsD3dUTEhi9j8_Pv2LXTeUcykOyvJvU,2822
6
+ mindroom/bot.py,sha256=yVivCDQmZDUt4_E_4mp8sIBiETfV2KRb9eVZYh9illA,101154
7
+ mindroom/cli.py,sha256=38mTfxM3t3LMN21ZPXeC0d3OoPDCGyAO4XY56j1JJow,2387
8
+ mindroom/commands.py,sha256=2D_puancvmVxS5S1j7KcEb24JrML6EWzWXk3xmvmMls,12738
9
+ mindroom/config.py,sha256=OzOODTn_SA9aGMu_5HzSRJUAeqKLt6VORhX8rGuktSw,13762
10
+ mindroom/config_commands.py,sha256=EIBsGOQW-W5hU1cpHLDkuOYSxUwKJ78vtDOuCVzT9EA,10606
11
+ mindroom/config_confirmation.py,sha256=qTdZaK3UbJ0izoEcARlDNAQCKOK-X0oikvv1KY8DIPk,12385
12
+ mindroom/constants.py,sha256=cDJ6J1wUOknB-L1Y6m2s6I1kSFvmADGqUMUd1yL4AZw,2124
13
+ mindroom/credentials.py,sha256=1dDAtCut6TIpx9OdHMg1yXa9UZ7ewJ5wonkISnkG9kM,4386
14
+ mindroom/credentials_sync.py,sha256=peLyoEAliK8ugOfKSQ8SsWlAUJFmkQdD3P_E7dddnNo,4563
15
+ mindroom/error_handling.py,sha256=uPggFDyXFXMJmylpHU3VkAr5sNVPqM2ywnSj9BUO-gA,1297
16
+ mindroom/file_watcher.py,sha256=-HjKKIkJlaCjDTeu5QummkmlXDdeR085DtlqhalDgFE,1593
17
+ mindroom/interactive.py,sha256=UN6u76zgu8OXn2HeG2-BVBfsiYG9D7UjxwK77TYUor4,9475
18
+ mindroom/logging_config.py,sha256=bxUinbH-LQ6sr8wPXZklFEW6caL5rU5X5rbAlht6gkw,6876
19
+ mindroom/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ mindroom/response_tracker.py,sha256=l2raJY-Hv-m9ipGCAQWMZ1wEqKYDI8rsINKPyQz9cI8,4200
21
+ mindroom/room_cleanup.py,sha256=zBBvmYJuM-mfQ9monAnzTsszideVyd2UtktQC-Bx8YU,4364
22
+ mindroom/routing.py,sha256=Ou_44pgGXydn4lSs0LGqT-rKKieGJO_kxe3_2D3YLLU,3811
23
+ mindroom/scheduling.py,sha256=HNjjj-MDFOa8xzY6G5_HOsJgtEXeJb9X-x8hJkbwTfo,28089
24
+ mindroom/stop.py,sha256=jIpfjJiURoixNwiAUz5r7RbDUjE06Wg99NvAgKrxEqY,7876
25
+ mindroom/streaming.py,sha256=1HttQiN-VHOBJSJMfUhS9AUs8vjFeFs8Mu6cgw-gJk0,7624
26
+ mindroom/teams.py,sha256=JlUJlo-OOKxh_27eVIEJAkuybw4GPROLjFzAbpqnOPk,26948
27
+ mindroom/thread_utils.py,sha256=swMMBeFed0MgqnNfcVNKZaldUSWnQUEc0SMoGSmjDr0,10740
28
+ mindroom/tools_metadata.json,sha256=YOaHIq5MbdSc30y3OJcpp9nwm5i5mJdMei3fBUaGDHE,239114
29
+ mindroom/tools_metadata.py,sha256=2hTTTr6el79nR3AF2IPosaVF4augkeA7jecmNSSE-DQ,6868
30
+ mindroom/topic_generator.py,sha256=eZ5t8cfe-SzBX8eAZnGqmA4vQzjIgy_aJogZOPi1i1k,5190
31
+ mindroom/voice_handler.py,sha256=bp14hd3kDf4t0DvHU64orp3KgLvHiaWmTluE8EebMUQ,9600
32
+ mindroom/api/__init__.py,sha256=RKzyK_oOe5lpSnA80tAFkUxdxDsFt7eAmFYqz_s6arg,52
33
+ mindroom/api/credentials.py,sha256=mnOYJjHPcV0ehzQUJKJRGtUAD5PUm2-h8TrRuKqR2To,4396
34
+ mindroom/api/google_integration.py,sha256=SarerkdcJhVeuFNCQ1aZeKWcxlsmUyqLFRJkL8uoNFM,12435
35
+ mindroom/api/google_tools_helper.py,sha256=sA77b1A9RA5yeR5kfp_GnLGLB0iGaUruMeoSrf9lNb8,1385
36
+ mindroom/api/homeassistant_integration.py,sha256=YL5Ml0Xb-CjR55AOC0phgecAYLw3W05sjMEqrtxKsuE,13726
37
+ mindroom/api/integrations.py,sha256=4LEqI9w7JDsvRRuBx58UjtDJMypaOE7txxs4vB7hAZM,6251
38
+ mindroom/api/main.py,sha256=Onmkq8ivwh99RaECTPtfl5d4HCjcVGs7j4PTgh1UniE,16433
39
+ mindroom/api/matrix_operations.py,sha256=zBUnNRYKtJ4ucgsmvpyCXPTFJ-SVcOxkaAucj5xq9sM,6384
40
+ mindroom/api/tools.py,sha256=ZkvavPlGNakOZOxQ1HkVLRWLdef0FXM21mzol9848xM,3486
41
+ mindroom/custom_tools/__init__.py,sha256=m4KzviXZE_j1eJ1v2Naqtd1D43a_uGnLJHFzQ9NDcfM,300
42
+ mindroom/custom_tools/config_manager.py,sha256=yNh-NA9eAsO4_B2CrbR54d9KKzY8mpquBETFbtempqU,30287
43
+ mindroom/custom_tools/gmail.py,sha256=uYw207aGcKz-ExFraxsAZJ387lzNu9APLs6mB0tnUOo,3771
44
+ mindroom/custom_tools/google_calendar.py,sha256=E3YgzeNOTqs0Y5tH0FDq9bMaa6rjHyVIDtuSkr9KJ_8,3914
45
+ mindroom/custom_tools/google_sheets.py,sha256=Z0kieAx8_gZdmSjmhfsHFYtVsqxX1bqZIFHPHnHTop0,3884
46
+ mindroom/custom_tools/homeassistant.py,sha256=JeHp-xcX4c2Av3i84ndEhWnj8NVX96eAbvzvt_IzJc0,10887
47
+ mindroom/matrix/__init__.py,sha256=fIdCIxmOWmW_5qhbHFkkNiZtD0uF22F8Pbj3X83iito,45
48
+ mindroom/matrix/client.py,sha256=K4I1bxSXXv2kGYhKLbY8-0ZuYhkxIh-ciEy1YHR-H3E,24468
49
+ mindroom/matrix/event_info.py,sha256=JNC7C5n-9Wm3Ps1_0vt18kgXqu8QZVpZOAsKhX9GegA,5800
50
+ mindroom/matrix/identity.py,sha256=HADilBOFMxFW9o5Mhf1PmnBgUPmsE2ZWk2V1_6UvPrM,4934
51
+ mindroom/matrix/large_messages.py,sha256=a6Ab5rq8m_mmwvxQvYhLVa6icOAVQ2kmQJa5lmP__Mo,8835
52
+ mindroom/matrix/mentions.py,sha256=N02yicSyB-0eVaDQDqS56JpcR6V0AOB21JV2T7s7-jw,4998
53
+ mindroom/matrix/message_builder.py,sha256=-rleolVw9VXmWSG8gLWT8FY0y5yWNZpEqaL6mYl77Bw,3297
54
+ mindroom/matrix/message_content.py,sha256=V1O7ebhPsqzZT5K7LsnajWQ5p2mMnbOwcYJ1RuD1LYw,6654
55
+ mindroom/matrix/presence.py,sha256=ytCeoxe9s7Sih7kxa3tuHYdi1AfAJGo0tUbV-zL4j5k,5373
56
+ mindroom/matrix/rooms.py,sha256=y3ntrwIsYapd1IxOpxINsm6Ps25jh-dFiijgNvaDvA0,10300
57
+ mindroom/matrix/state.py,sha256=Brprm6_X1rLCtfYA4IzP6_PnaHK1R8T5mM7HrmLarRI,2454
58
+ mindroom/matrix/typing.py,sha256=CHsc4QXHMlzbJ4WzyFdWWO7tU0tws6xf7P7oVRTDK-Q,2649
59
+ mindroom/matrix/users.py,sha256=9KeROUPtiQOIrdtL-m1mfZv-KnSI3TwICdV-U08vs50,7236
60
+ mindroom/memory/__init__.py,sha256=yL1zK6qkucX3tJWryL2wlyeAOnpntfLky_wFi9XDfVQ,498
61
+ mindroom/memory/config.py,sha256=RqeF6vXbpUQxJ4oLfJuRUQSxB0XmpJfcG_lkXqZqVvQ,4898
62
+ mindroom/memory/functions.py,sha256=Rpv1YBK_5rFhb9Gjr2cssYcMkVsW6ufbPGQiOWyyD-Y,12527
63
+ mindroom/tools/__init__.py,sha256=-X5cHX9aa6ACiUAUF1i9XYWN797MDUHQdP8SyvsYvQM,15249
64
+ mindroom/tools/agentql.py,sha256=nfJ9iYEB4UW4dEu6BEM9Rl4PZRjgv1n5T4767wpT-n8,1920
65
+ mindroom/tools/airflow.py,sha256=Z7-ySY22c9JpteIri_XmG4cBpef3SvkB77Ej1jhtVn0,1722
66
+ mindroom/tools/apify.py,sha256=GWRsD3W6EadBK1ANgw8-mL2pTZ6E2d9_8errqAhwtBQ,1878
67
+ mindroom/tools/arxiv.py,sha256=n0ITxNeGD-PiPeonsX75IjWFLt3e2XP8706pfFeV40M,1798
68
+ mindroom/tools/aws_lambda.py,sha256=5d8l43KQ-RoxsNEpRzo-7TBzc8mxAhrC0_9of3QhqDU,1247
69
+ mindroom/tools/aws_ses.py,sha256=nCwihtYBqyr2OySqNeSYw-nBt9ZVrlNVsVxpndA43yE,1709
70
+ mindroom/tools/baidusearch.py,sha256=dyWrIqT6P6Jvm7z0MFc8ptfFtHUCIQiw8vu0UBMwpW0,2588
71
+ mindroom/tools/brightdata.py,sha256=Z-hE6at_ahs1h8MsfBYoq74_Qw40zqc5-f2LGcHxFsA,3574
72
+ mindroom/tools/browserbase.py,sha256=cS7UXX47BjeTSFUvbkzUXuFOjD2BQzgl-3Fg84BRf6Y,2052
73
+ mindroom/tools/cal_com.py,sha256=WooYB8iBAY1cHy3V7rgotrdoK71qTBqrXNYdN1v1wGs,3199
74
+ mindroom/tools/calculator.py,sha256=2ioKC8LQS2W-Sir0Qa8BnuYDLzpXPVxJcT9qI64qrwU,3433
75
+ mindroom/tools/cartesia.py,sha256=v4_Gnu2RbG6S6exIQjp0HPU5h7fFAgX1oswNgDVIqys,2904
76
+ mindroom/tools/composio.py,sha256=6xFInSQ8EaOhy3OPDtAnm8KjGC1WKMDeYttoeTWiXi0,5453
77
+ mindroom/tools/config_manager.py,sha256=EQPU5ArlEKyrIgiHTl4nkeEF4xUCrPXFohux8NymPhA,1278
78
+ mindroom/tools/confluence.py,sha256=2Gk2SfV_Exlo-B3S8Vw0vmdIm7s2BcYUkOz21cX0M6Y,2504
79
+ mindroom/tools/crawl4ai.py,sha256=SwmcCWjPt2soHTEYCuLITU-JFG3yDTlR24s3-7bJS4k,3043
80
+ mindroom/tools/csv.py,sha256=HR01u9TXFmWGzItNfY5yIbRGuh2_fUk_c81W-2wGvSg,3112
81
+ mindroom/tools/custom_api.py,sha256=CqFqno7vVziFgM3UgfzeHXlFCW_ngi3xaHbMh8n7Hdw,3351
82
+ mindroom/tools/dalle.py,sha256=4bgVAZcjj2v-7JwT9JOCJ9-A_dE-id2qKqgJR8pUZsE,2797
83
+ mindroom/tools/daytona.py,sha256=DEIcrDG4bEJqWBjix9pn-v7qTTBP3JzBgf-ER8S6go4,5984
84
+ mindroom/tools/discord.py,sha256=2GYnivu_S0RzB3NE1n03sKaVZkOHGcPoKk8uDz_zgJ4,2520
85
+ mindroom/tools/docker.py,sha256=PEaQgYAKGZQ9RzCdtJ9vfr-jqCbtJMQODiIaVs341sE,2236
86
+ mindroom/tools/duckdb.py,sha256=PUbzwrFgcpa4o7hZATqrrRn14OB_TJjT3Z5cLupmQaU,3830
87
+ mindroom/tools/duckduckgo.py,sha256=WwXCbaH7NixoDmDBLisr3BzLE6P_9P_eHFZcFJCtHpI,2855
88
+ mindroom/tools/e2b.py,sha256=A2wOS_E8Jq5WGWFQMpT_6eMQuSIexmBN-luEXnicWvQ,3961
89
+ mindroom/tools/eleven_labs.py,sha256=mIwi5EZJdWZoLnW3z9xLhIcJJRbfbdg7xJyfIVXk5Jw,2589
90
+ mindroom/tools/email.py,sha256=NHnVn--lupmLurnLKIfQLKfSl0zzsDqnT-1JG7K0Fmo,2138
91
+ mindroom/tools/exa.py,sha256=6RxbryWBOozySDDK4Jyb6JQ5h_nAr9c3zAyZGpFsUX0,7917
92
+ mindroom/tools/fal.py,sha256=WbSQZ_gek5ooEVHG81hCimKc_o383ruJUaq-eL_FnMA,1769
93
+ mindroom/tools/file.py,sha256=KeVGhuuIln92hcpyUlhGXv5bEcH83GGFiKnAeNPy-u4,2391
94
+ mindroom/tools/financial_datasets_api.py,sha256=G9sT1Dm8_HaxjUYp9gUt0PzUKFA-RoQ_Fks5vzX0oow,3986
95
+ mindroom/tools/firecrawl.py,sha256=wXGWhAVLPWBHcHK6akhxpXjFiUX2438nlTyPxdEX4Ps,3995
96
+ mindroom/tools/gemini.py,sha256=3GeMf2rQbobdpv75XQa54NlylmIuH037m0_aGdNM2K0,2924
97
+ mindroom/tools/giphy.py,sha256=Hi414EvakA9tMWXA_RbCrIHYf-n2ZHM1YSBk9nHlLmE,1422
98
+ mindroom/tools/github.py,sha256=D14CGzL7mNp85mLZCpCe1ot73WQna6aOAPToX5uaz7o,11797
99
+ mindroom/tools/gmail.py,sha256=0KWEUqqHR2V0jNVRPdcL8QK4qZN3XAHoTCG935QSvOo,3054
100
+ mindroom/tools/google_calendar.py,sha256=luzshJ3mvnmm7vtV5hTwliwXydfHumvYhlDZ3sPk7vg,1826
101
+ mindroom/tools/google_maps.py,sha256=eChYbuJ12kbAkNPCa2zuVG3SJeqIgJboiTOtmndwW2A,3599
102
+ mindroom/tools/google_sheets.py,sha256=aTZPkdutX-Rg7l8-dptwJyqUYIEw5OmM4Q4mIZqKrPg,2824
103
+ mindroom/tools/googlesearch.py,sha256=ttUC-qGuHyR4GD8zwkpHIJSurUhdonRNYg38tkJW7aE,2526
104
+ mindroom/tools/groq.py,sha256=Qa0Y-eLLDo_IvHS-RZ0UpT9GzD3lqJLxulmCd_1TwOo,2538
105
+ mindroom/tools/hackernews.py,sha256=Tyc4NA8kmUR_YmeUR4MwQO7FrKFDqVi79NL22Aw6krY,1533
106
+ mindroom/tools/jina.py,sha256=5NBTvbQ4oS8_yf3Ux2fn4zuZsqJ-5QVUHHJ8qH5JBvQ,3264
107
+ mindroom/tools/jira.py,sha256=Iz_gngu-KR_vp1QYeMr2T3eSfJa9gs7wPtiAFAct9qc,2132
108
+ mindroom/tools/linear.py,sha256=7Qmk0GT6-1sclo2P5Wy1vcCPN_Sn-DOIJgVQS-7bqeY,3140
109
+ mindroom/tools/linkup.py,sha256=uhFMouaka9ukQ7bevkBmiguzvpXDatQ6ZD98C3cUIQc,2013
110
+ mindroom/tools/lumalabs.py,sha256=Xm6kTYDdh8f7l8Cdllhj2w8Q11p-QpdlbRpU-Q12SoQ,2297
111
+ mindroom/tools/mem0.py,sha256=OFQwc7rHhby3Ss53MQqaeAWdjlMlUQ1Q-Osxbyg_GHA,2954
112
+ mindroom/tools/modelslabs.py,sha256=Okb-wwsBei0BOhcEkVdwqQ7RK-Dx-_XDmN9aD7l51VA,2894
113
+ mindroom/tools/moviepy_video_tools.py,sha256=Tqyixj7FzoX0218oLTKQZ7lvBZ3jCABbHJ67fwBFqyI,2228
114
+ mindroom/tools/newspaper4k.py,sha256=QuR-y6IJ0PA2g4F3W7hg4GytBv1Xe381AOuD33VFStQ,1920
115
+ mindroom/tools/openai.py,sha256=cuFeqgvC0dSRp8TtmfsGklrIo9KauGvUW_aUsEQcRXk,4555
116
+ mindroom/tools/openweather.py,sha256=omxA2Hd863dRO0U0JlOHtre6sLwBr2yASlhBZD7h3Ig,2773
117
+ mindroom/tools/oxylabs.py,sha256=GCGMSgkYDVFsu_owYhhW_mOy2c2ySNUTuc-oIRDWSZI,1740
118
+ mindroom/tools/pandas.py,sha256=N9kRpTUlB-kltdUi9kdtOJwy_50UKiBgLwT8o3ezpww,885
119
+ mindroom/tools/pubmed.py,sha256=JLH92fDUrnTrbhnCiNfok7f7FEfp4yQAx7O2TFI9gyI,1963
120
+ mindroom/tools/python.py,sha256=fYopWFZyOuHLUED_AmxktE_PSRNYZHpTrLJ7yNQf8gA,3592
121
+ mindroom/tools/reddit.py,sha256=1rJA7VGE-Q-lNeJskDSz8a9QXCbaV9Q4ovmu41p9ic4,5022
122
+ mindroom/tools/replicate.py,sha256=rtrEZWZ7A3cw69Q3fujQGR-vfjWyKjL2Y4e4hLIVO9o,1599
123
+ mindroom/tools/resend.py,sha256=QJCiYLkye9ObYLLdIhq74O26ES8pcoIlyFx4ZXrEEj0,1534
124
+ mindroom/tools/scrapegraph.py,sha256=RxA5XvY6_MfMmLaXmvNLvje7QGLIHYxcXU7oBLfxx4s,2649
125
+ mindroom/tools/searxng.py,sha256=AALKE_mpyAOpY_2hqlVW_btLniV3wwznfEjpA65gYaU,3625
126
+ mindroom/tools/serpapi.py,sha256=WO1NlDeBq_UMLwdOfc1C5daqj6TrlxR2SBOFWILYIdQ,1526
127
+ mindroom/tools/serper.py,sha256=VZdKy3vZ_eZ_ahQnvS8NQ3R3ivYac3KWM4R8r5J2Vjo,2448
128
+ mindroom/tools/shell.py,sha256=fSzcDkoVmQ-BoTyJGx6L8WMAoQsqTe19eqSve_ol0rA,1200
129
+ mindroom/tools/slack.py,sha256=W_T-aq5cSCvGrTdP_qvlRBwXQsV1AjAN4-qrpEY7ZAE,2261
130
+ mindroom/tools/sleep.py,sha256=mu-u6ORPbhGhtw4LCU1Sjr6mlr-nFvMyg3uZXsBhhZ0,1183
131
+ mindroom/tools/spider.py,sha256=9f9cFcVPmu5yo0sOE3FMyRjsI5LxIh0yJi-9iZP4cZI,1937
132
+ mindroom/tools/sql.py,sha256=mX42Rwrkf0HtcGz0-3xaoiOllS3sg9RyzQxnKtBLZ3c,4258
133
+ mindroom/tools/tavily.py,sha256=rTkvilcZx5SVgj_0GUpo05ZDtaH31Wx3w8geLB3cc8k,3120
134
+ mindroom/tools/telegram.py,sha256=qDdnHdI0xNGzse2skUbk-jHRBj6pPRYPvUuIlwnKLTg,1526
135
+ mindroom/tools/todoist.py,sha256=AmLUFYtVTHwxQ6vOFlkZhY5B2PBKyd_GrGEKTJ8_e0Q,3106
136
+ mindroom/tools/trello.py,sha256=6lE7DpuwNxsJBrLoF84cc_1CuQx6TSqVmZejsG-rF1U,3588
137
+ mindroom/tools/twilio.py,sha256=xInsnM1b2v9Qol9muDb5ZokRKJGVxIbI3yh6fTVq6q0,3194
138
+ mindroom/tools/web_browser_tools.py,sha256=ZO4Sl8E8WzpV7OVSwoMZyVyp7aGvf44fjbRKKSQvPEg,1175
139
+ mindroom/tools/webex.py,sha256=bb02ARI74H62LltCd6S99YbnmG66nZsX6M4VQBJ6Ft8,1802
140
+ mindroom/tools/website.py,sha256=fFwHq3k1TYz1SiF6j7doQ6yRAeWxmSgqHlu5LbNxMTM,1282
141
+ mindroom/tools/whatsapp.py,sha256=8s0OJwKC65ofD4U5D927ztMJD5vu2wHCnFjlsyVpKoY,2569
142
+ mindroom/tools/wikipedia.py,sha256=xbWGzPVzhblU1U3-yl7brlLkh6fZHs_G_KM8DJ9z6cg,1248
143
+ mindroom/tools/x.py,sha256=p8yM5YXZAeA6bx7vHeI0WMCjenLXan2HsJwiIh2d808,3194
144
+ mindroom/tools/yfinance.py,sha256=fuqLQOwP_HqQ4bQoRIZGT6_CK8Y7ijuxKh7PrPlDZRg,3664
145
+ mindroom/tools/youtube.py,sha256=CJbi8IgN635CUw9sj82siZrkh5ey-HVJ6LdHmE93mqY,2581
146
+ mindroom/tools/zendesk.py,sha256=B63Xgl5JpAoxT739nMyiVnJG6QqmfQKVDD8owtB2xRs,2160
147
+ mindroom/tools/zep.py,sha256=RxYVcaiyem_cj8x3T0G4F5SGQis9dsVtb4dPYSwXSsE,3525
148
+ mindroom/tools/zoom.py,sha256=agaKCRKqZIkZ2sONImVYrmdTiMzo27a5stZ5JJZSTTM,1907
149
+ mindroom-0.1.0.dist-info/METADATA,sha256=ckL0KwawtlBIawCWYh6ebMkRMOYUN9tFpgVyfb4VXn8,14074
150
+ mindroom-0.1.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
151
+ mindroom-0.1.0.dist-info/entry_points.txt,sha256=Ju47f4SJD7zgG7pE954J3N6m1jbs_HF8LTrunLasGLs,47
152
+ mindroom-0.1.0.dist-info/RECORD,,
@@ -1,5 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: hatchling 1.28.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
-
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ mindroom = mindroom.cli:main
@@ -1,24 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: mindroom
3
- Version: 0.0.0
4
- Summary: A universal interface for AI agents with persistent memory, where every conversation has a home.
5
- Home-page: https://github.com/basnijholt/mindroom
6
- Author: Bas Nijholt
7
- Author-email: bas@nijho.lt
8
- Classifier: Development Status :: 3 - Alpha
9
- Classifier: Intended Audience :: Developers
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3.10
13
- Classifier: Programming Language :: Python :: 3.11
14
- Classifier: Programming Language :: Python :: 3.12
15
- Classifier: Programming Language :: Python :: 3.13
16
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
- Dynamic: author
18
- Dynamic: author-email
19
- Dynamic: classifier
20
- Dynamic: description
21
- Dynamic: home-page
22
- Dynamic: summary
23
-
24
- A universal interface for AI agents with persistent memory, where every conversation has a home.
@@ -1,4 +0,0 @@
1
- mindroom-0.0.0.dist-info/METADATA,sha256=mzNFtAMgaV3xq9KqvqrtkM7SV1SjxYJrYQRn-l6Qmrc,932
2
- mindroom-0.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
3
- mindroom-0.0.0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
4
- mindroom-0.0.0.dist-info/RECORD,,
@@ -1 +0,0 @@
1
-