cremind 0.0.1__tar.gz

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 (491) hide show
  1. cremind-0.0.1/.gitignore +79 -0
  2. cremind-0.0.1/LICENSE +21 -0
  3. cremind-0.0.1/PKG-INFO +207 -0
  4. cremind-0.0.1/README.md +110 -0
  5. cremind-0.0.1/app/__init__.py +0 -0
  6. cremind-0.0.1/app/__main__.py +0 -0
  7. cremind-0.0.1/app/__version__.py +19 -0
  8. cremind-0.0.1/app/agent/__init__.py +4 -0
  9. cremind-0.0.1/app/agent/agent.py +352 -0
  10. cremind-0.0.1/app/agent/context_store.py +40 -0
  11. cremind-0.0.1/app/agent/executor.py +477 -0
  12. cremind-0.0.1/app/agent/reasoning_agent.py +1473 -0
  13. cremind-0.0.1/app/agent/skill_classifier.py +164 -0
  14. cremind-0.0.1/app/agent/stream_runner.py +565 -0
  15. cremind-0.0.1/app/agent/summary.py +45 -0
  16. cremind-0.0.1/app/alembic/__init__.py +0 -0
  17. cremind-0.0.1/app/alembic/env.py +83 -0
  18. cremind-0.0.1/app/alembic/script.py.mako +26 -0
  19. cremind-0.0.1/app/alembic/versions/20260509_baseline.py +106 -0
  20. cremind-0.0.1/app/alembic/versions/__init__.py +0 -0
  21. cremind-0.0.1/app/api/__init__.py +77 -0
  22. cremind-0.0.1/app/api/_auth.py +40 -0
  23. cremind-0.0.1/app/api/agents.py +720 -0
  24. cremind-0.0.1/app/api/channels.py +532 -0
  25. cremind-0.0.1/app/api/config.py +1658 -0
  26. cremind-0.0.1/app/api/conversations.py +520 -0
  27. cremind-0.0.1/app/api/embedding_stream.py +99 -0
  28. cremind-0.0.1/app/api/events.py +542 -0
  29. cremind-0.0.1/app/api/features.py +261 -0
  30. cremind-0.0.1/app/api/file_watchers.py +368 -0
  31. cremind-0.0.1/app/api/files.py +659 -0
  32. cremind-0.0.1/app/api/llm.py +422 -0
  33. cremind-0.0.1/app/api/logs_stream.py +70 -0
  34. cremind-0.0.1/app/api/oauth2.py +140 -0
  35. cremind-0.0.1/app/api/oauth_loopback.py +182 -0
  36. cremind-0.0.1/app/api/processes.py +491 -0
  37. cremind-0.0.1/app/api/profile_events.py +196 -0
  38. cremind-0.0.1/app/api/profiles.py +270 -0
  39. cremind-0.0.1/app/api/settings_stream.py +90 -0
  40. cremind-0.0.1/app/api/setup_stream.py +81 -0
  41. cremind-0.0.1/app/api/skills.py +253 -0
  42. cremind-0.0.1/app/api/system.py +77 -0
  43. cremind-0.0.1/app/api/system_vars.py +50 -0
  44. cremind-0.0.1/app/api/tokens.py +42 -0
  45. cremind-0.0.1/app/api/tools.py +768 -0
  46. cremind-0.0.1/app/api/upgrade.py +363 -0
  47. cremind-0.0.1/app/api/user_config.py +157 -0
  48. cremind-0.0.1/app/api/version.py +137 -0
  49. cremind-0.0.1/app/channels/__init__.py +17 -0
  50. cremind-0.0.1/app/channels/adapters/__init__.py +0 -0
  51. cremind-0.0.1/app/channels/adapters/discord.py +19 -0
  52. cremind-0.0.1/app/channels/adapters/messenger.py +19 -0
  53. cremind-0.0.1/app/channels/adapters/slack.py +19 -0
  54. cremind-0.0.1/app/channels/adapters/telegram.py +246 -0
  55. cremind-0.0.1/app/channels/adapters/telegram_userbot.py +363 -0
  56. cremind-0.0.1/app/channels/adapters/whatsapp.py +330 -0
  57. cremind-0.0.1/app/channels/base.py +857 -0
  58. cremind-0.0.1/app/channels/exceptions.py +17 -0
  59. cremind-0.0.1/app/channels/registry.py +193 -0
  60. cremind-0.0.1/app/channels/sidecars/__init__.py +0 -0
  61. cremind-0.0.1/app/channels/sidecars/bootstrap.py +136 -0
  62. cremind-0.0.1/app/channels/sidecars/whatsapp/.gitignore +1 -0
  63. cremind-0.0.1/app/channels/sidecars/whatsapp/index.js +269 -0
  64. cremind-0.0.1/app/channels/sidecars/whatsapp/package.json +17 -0
  65. cremind-0.0.1/app/cli/__init__.py +0 -0
  66. cremind-0.0.1/app/cli/client/__init__.py +11 -0
  67. cremind-0.0.1/app/cli/client/_base.py +179 -0
  68. cremind-0.0.1/app/cli/client/_sse.py +70 -0
  69. cremind-0.0.1/app/cli/client/_ws.py +58 -0
  70. cremind-0.0.1/app/cli/client/agents.py +75 -0
  71. cremind-0.0.1/app/cli/client/channels.py +131 -0
  72. cremind-0.0.1/app/cli/client/config.py +43 -0
  73. cremind-0.0.1/app/cli/client/conversations.py +137 -0
  74. cremind-0.0.1/app/cli/client/file_watchers.py +34 -0
  75. cremind-0.0.1/app/cli/client/llm.py +127 -0
  76. cremind-0.0.1/app/cli/client/me.py +50 -0
  77. cremind-0.0.1/app/cli/client/processes.py +97 -0
  78. cremind-0.0.1/app/cli/client/profiles.py +55 -0
  79. cremind-0.0.1/app/cli/client/setup.py +81 -0
  80. cremind-0.0.1/app/cli/client/skill_events.py +62 -0
  81. cremind-0.0.1/app/cli/client/system_vars.py +30 -0
  82. cremind-0.0.1/app/cli/client/tools.py +102 -0
  83. cremind-0.0.1/app/cli/commands/__init__.py +0 -0
  84. cremind-0.0.1/app/cli/commands/_helpers.py +41 -0
  85. cremind-0.0.1/app/cli/commands/agents.py +361 -0
  86. cremind-0.0.1/app/cli/commands/channels.py +401 -0
  87. cremind-0.0.1/app/cli/commands/chat.py +69 -0
  88. cremind-0.0.1/app/cli/commands/config.py +195 -0
  89. cremind-0.0.1/app/cli/commands/conv.py +405 -0
  90. cremind-0.0.1/app/cli/commands/db.py +167 -0
  91. cremind-0.0.1/app/cli/commands/file_watchers.py +208 -0
  92. cremind-0.0.1/app/cli/commands/llm.py +368 -0
  93. cremind-0.0.1/app/cli/commands/me.py +53 -0
  94. cremind-0.0.1/app/cli/commands/processes.py +562 -0
  95. cremind-0.0.1/app/cli/commands/profile.py +258 -0
  96. cremind-0.0.1/app/cli/commands/serve.py +38 -0
  97. cremind-0.0.1/app/cli/commands/setup.py +308 -0
  98. cremind-0.0.1/app/cli/commands/skill_events.py +271 -0
  99. cremind-0.0.1/app/cli/commands/system_vars.py +43 -0
  100. cremind-0.0.1/app/cli/commands/tools.py +352 -0
  101. cremind-0.0.1/app/cli/commands/upgrade.py +125 -0
  102. cremind-0.0.1/app/cli/config.py +74 -0
  103. cremind-0.0.1/app/cli/io/__init__.py +0 -0
  104. cremind-0.0.1/app/cli/io/raw_tty.py +122 -0
  105. cremind-0.0.1/app/cli/main.py +138 -0
  106. cremind-0.0.1/app/cli/output/__init__.py +21 -0
  107. cremind-0.0.1/app/cli/output/console.py +43 -0
  108. cremind-0.0.1/app/cli/output/formatting.py +29 -0
  109. cremind-0.0.1/app/cli/output/json_output.py +29 -0
  110. cremind-0.0.1/app/cli/output/tables.py +66 -0
  111. cremind-0.0.1/app/cli/streaming.py +167 -0
  112. cremind-0.0.1/app/cli/tui/__init__.py +0 -0
  113. cremind-0.0.1/app/cli/tui/chat.py +289 -0
  114. cremind-0.0.1/app/cli/tui/renderer.py +210 -0
  115. cremind-0.0.1/app/config/__init__.py +88 -0
  116. cremind-0.0.1/app/config/bootstrap.py +190 -0
  117. cremind-0.0.1/app/config/channels/discord.toml +40 -0
  118. cremind-0.0.1/app/config/channels/messenger.toml +41 -0
  119. cremind-0.0.1/app/config/channels/slack.toml +43 -0
  120. cremind-0.0.1/app/config/channels/telegram.toml +44 -0
  121. cremind-0.0.1/app/config/channels/whatsapp.toml +29 -0
  122. cremind-0.0.1/app/config/config_schema.py +261 -0
  123. cremind-0.0.1/app/config/credentials_file.py +285 -0
  124. cremind-0.0.1/app/config/embedding_state.py +238 -0
  125. cremind-0.0.1/app/config/install_catalog.py +274 -0
  126. cremind-0.0.1/app/config/install_catalog.toml +193 -0
  127. cremind-0.0.1/app/config/provider_auth.py +55 -0
  128. cremind-0.0.1/app/config/providers/anthropic.toml +80 -0
  129. cremind-0.0.1/app/config/providers/chutes.toml +50 -0
  130. cremind-0.0.1/app/config/providers/cloudflare-ai-gateway.toml +30 -0
  131. cremind-0.0.1/app/config/providers/deepseek.toml +29 -0
  132. cremind-0.0.1/app/config/providers/fireworks.toml +57 -0
  133. cremind-0.0.1/app/config/providers/github-copilot.toml +64 -0
  134. cremind-0.0.1/app/config/providers/google-gemini.toml +64 -0
  135. cremind-0.0.1/app/config/providers/groq.toml +66 -0
  136. cremind-0.0.1/app/config/providers/huggingface.toml +50 -0
  137. cremind-0.0.1/app/config/providers/litellm.toml +22 -0
  138. cremind-0.0.1/app/config/providers/minimax.toml +46 -0
  139. cremind-0.0.1/app/config/providers/mistral.toml +57 -0
  140. cremind-0.0.1/app/config/providers/moonshot.toml +46 -0
  141. cremind-0.0.1/app/config/providers/nvidia.toml +50 -0
  142. cremind-0.0.1/app/config/providers/ollama.toml +53 -0
  143. cremind-0.0.1/app/config/providers/openai.toml +117 -0
  144. cremind-0.0.1/app/config/providers/openrouter.toml +57 -0
  145. cremind-0.0.1/app/config/providers/perplexity.toml +43 -0
  146. cremind-0.0.1/app/config/providers/qwen.toml +67 -0
  147. cremind-0.0.1/app/config/providers/together.toml +64 -0
  148. cremind-0.0.1/app/config/providers/vertexai.toml +75 -0
  149. cremind-0.0.1/app/config/providers/vllm.toml +39 -0
  150. cremind-0.0.1/app/config/providers/xai.toml +44 -0
  151. cremind-0.0.1/app/config/settings.py +514 -0
  152. cremind-0.0.1/app/config/settings.toml +66 -0
  153. cremind-0.0.1/app/config/setup_profiles.py +185 -0
  154. cremind-0.0.1/app/config/setup_profiles.toml +201 -0
  155. cremind-0.0.1/app/config/system_vars.py +120 -0
  156. cremind-0.0.1/app/config/user_config.py +163 -0
  157. cremind-0.0.1/app/constants/__init__.py +17 -0
  158. cremind-0.0.1/app/constants/prompts.py +9 -0
  159. cremind-0.0.1/app/constants/status.py +10 -0
  160. cremind-0.0.1/app/databases/__init__.py +51 -0
  161. cremind-0.0.1/app/databases/base.py +130 -0
  162. cremind-0.0.1/app/databases/factory.py +59 -0
  163. cremind-0.0.1/app/databases/postgres.py +465 -0
  164. cremind-0.0.1/app/databases/sqlite.py +173 -0
  165. cremind-0.0.1/app/documents/__init__.py +34 -0
  166. cremind-0.0.1/app/documents/bundled/[cli]cremind agents.md +404 -0
  167. cremind-0.0.1/app/documents/bundled/[cli]cremind channels.md +521 -0
  168. cremind-0.0.1/app/documents/bundled/[cli]cremind chat.md +193 -0
  169. cremind-0.0.1/app/documents/bundled/[cli]cremind config.md +334 -0
  170. cremind-0.0.1/app/documents/bundled/[cli]cremind conv.md +545 -0
  171. cremind-0.0.1/app/documents/bundled/[cli]cremind file-watchers.md +423 -0
  172. cremind-0.0.1/app/documents/bundled/[cli]cremind llm.md +368 -0
  173. cremind-0.0.1/app/documents/bundled/[cli]cremind me.md +100 -0
  174. cremind-0.0.1/app/documents/bundled/[cli]cremind proc.md +454 -0
  175. cremind-0.0.1/app/documents/bundled/[cli]cremind profile.md +342 -0
  176. cremind-0.0.1/app/documents/bundled/[cli]cremind setup.md +343 -0
  177. cremind-0.0.1/app/documents/bundled/[cli]cremind skill-events.md +387 -0
  178. cremind-0.0.1/app/documents/bundled/[cli]cremind system-vars.md +103 -0
  179. cremind-0.0.1/app/documents/bundled/[cli]cremind tools.md +405 -0
  180. cremind-0.0.1/app/documents/bundled/document.md +130 -0
  181. cremind-0.0.1/app/documents/parser.py +101 -0
  182. cremind-0.0.1/app/documents/sync.py +486 -0
  183. cremind-0.0.1/app/documents/watcher.py +111 -0
  184. cremind-0.0.1/app/embeddings/__init__.py +31 -0
  185. cremind-0.0.1/app/embeddings/base.py +19 -0
  186. cremind-0.0.1/app/embeddings/gemma.py +36 -0
  187. cremind-0.0.1/app/embeddings/me5.py +29 -0
  188. cremind-0.0.1/app/events/__init__.py +35 -0
  189. cremind-0.0.1/app/events/conversations_list_bus.py +68 -0
  190. cremind-0.0.1/app/events/embedding_state_bus.py +73 -0
  191. cremind-0.0.1/app/events/file_watcher_admin_bus.py +54 -0
  192. cremind-0.0.1/app/events/file_watcher_manager.py +528 -0
  193. cremind-0.0.1/app/events/file_watcher_runner.py +147 -0
  194. cremind-0.0.1/app/events/log_stream_bus.py +89 -0
  195. cremind-0.0.1/app/events/manager.py +290 -0
  196. cremind-0.0.1/app/events/notifications_buffer.py +73 -0
  197. cremind-0.0.1/app/events/notifications_bus.py +69 -0
  198. cremind-0.0.1/app/events/processes_bus.py +53 -0
  199. cremind-0.0.1/app/events/profile_stream_fanout.py +70 -0
  200. cremind-0.0.1/app/events/queue.py +202 -0
  201. cremind-0.0.1/app/events/runner.py +134 -0
  202. cremind-0.0.1/app/events/settings_state_bus.py +74 -0
  203. cremind-0.0.1/app/events/setup_progress_bus.py +74 -0
  204. cremind-0.0.1/app/events/skill_events_admin_bus.py +54 -0
  205. cremind-0.0.1/app/events/stream_bus.py +166 -0
  206. cremind-0.0.1/app/features/__init__.py +28 -0
  207. cremind-0.0.1/app/features/installer.py +256 -0
  208. cremind-0.0.1/app/features/manifest.py +221 -0
  209. cremind-0.0.1/app/installer/__init__.py +0 -0
  210. cremind-0.0.1/app/installer/__main__.py +102 -0
  211. cremind-0.0.1/app/installer/catalog.py +117 -0
  212. cremind-0.0.1/app/installer/output.py +75 -0
  213. cremind-0.0.1/app/installer/releases.py +122 -0
  214. cremind-0.0.1/app/installer/tui.py +459 -0
  215. cremind-0.0.1/app/lib/__init__.py +0 -0
  216. cremind-0.0.1/app/lib/embedding.py +25 -0
  217. cremind-0.0.1/app/lib/embedding_lifecycle.py +430 -0
  218. cremind-0.0.1/app/lib/exception.py +15 -0
  219. cremind-0.0.1/app/lib/llm/__init__.py +29 -0
  220. cremind-0.0.1/app/lib/llm/__main__.py +125 -0
  221. cremind-0.0.1/app/lib/llm/anthropic.py +452 -0
  222. cremind-0.0.1/app/lib/llm/base.py +64 -0
  223. cremind-0.0.1/app/lib/llm/exceptions.py +47 -0
  224. cremind-0.0.1/app/lib/llm/factory.py +252 -0
  225. cremind-0.0.1/app/lib/llm/github_copilot.py +93 -0
  226. cremind-0.0.1/app/lib/llm/groq.py +251 -0
  227. cremind-0.0.1/app/lib/llm/model_groups.py +116 -0
  228. cremind-0.0.1/app/lib/llm/ollama.py +250 -0
  229. cremind-0.0.1/app/lib/llm/openai.py +253 -0
  230. cremind-0.0.1/app/lib/llm/vertexai.py +282 -0
  231. cremind-0.0.1/app/lib/llm/vllm.py +250 -0
  232. cremind-0.0.1/app/lib/template.py +185 -0
  233. cremind-0.0.1/app/middleware/__init__.py +31 -0
  234. cremind-0.0.1/app/runtime.py +70 -0
  235. cremind-0.0.1/app/server.py +1243 -0
  236. cremind-0.0.1/app/services/__init__.py +30 -0
  237. cremind-0.0.1/app/services/manifest.py +206 -0
  238. cremind-0.0.1/app/services/provisioner/__init__.py +35 -0
  239. cremind-0.0.1/app/services/provisioner/base.py +98 -0
  240. cremind-0.0.1/app/services/provisioner/docker.py +370 -0
  241. cremind-0.0.1/app/services/provisioner/external.py +48 -0
  242. cremind-0.0.1/app/services/provisioner/native.py +101 -0
  243. cremind-0.0.1/app/setup/__init__.py +0 -0
  244. cremind-0.0.1/app/skills/__init__.py +25 -0
  245. cremind-0.0.1/app/skills/builtin/caldav-calendar/SKILL.md +163 -0
  246. cremind-0.0.1/app/skills/builtin/caldav-calendar/events/new_event/.gitkeep +0 -0
  247. cremind-0.0.1/app/skills/builtin/caldav-calendar/events/updated_event/.gitkeep +0 -0
  248. cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/.gitignore +4 -0
  249. cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/README.md +93 -0
  250. cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/__main__.py +20 -0
  251. cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/app/__init__.py +0 -0
  252. cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/app/caldav_client.py +151 -0
  253. cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/app/cli.py +166 -0
  254. cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/app/config.py +58 -0
  255. cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/app/formatter.py +83 -0
  256. cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/app/ical.py +269 -0
  257. cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/app/listener.py +402 -0
  258. cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/app/operations.py +318 -0
  259. cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/event_listener.py +20 -0
  260. cremind-0.0.1/app/skills/builtin/confluence/SKILL.md +95 -0
  261. cremind-0.0.1/app/skills/builtin/confluence/scripts/.gitignore +5 -0
  262. cremind-0.0.1/app/skills/builtin/confluence/scripts/__main__.py +17 -0
  263. cremind-0.0.1/app/skills/builtin/confluence/scripts/app/__init__.py +0 -0
  264. cremind-0.0.1/app/skills/builtin/confluence/scripts/app/atlassian/__init__.py +0 -0
  265. cremind-0.0.1/app/skills/builtin/confluence/scripts/app/atlassian/account_key.py +40 -0
  266. cremind-0.0.1/app/skills/builtin/confluence/scripts/app/atlassian/auth.py +300 -0
  267. cremind-0.0.1/app/skills/builtin/confluence/scripts/app/atlassian/discovery.py +79 -0
  268. cremind-0.0.1/app/skills/builtin/confluence/scripts/app/cli.py +193 -0
  269. cremind-0.0.1/app/skills/builtin/confluence/scripts/app/config.py +32 -0
  270. cremind-0.0.1/app/skills/builtin/confluence/scripts/app/confluence_api.py +155 -0
  271. cremind-0.0.1/app/skills/builtin/confluence/scripts/app/formatter.py +55 -0
  272. cremind-0.0.1/app/skills/builtin/gcalendar/SKILL.md +152 -0
  273. cremind-0.0.1/app/skills/builtin/gcalendar/events/event_changed/.gitkeep +0 -0
  274. cremind-0.0.1/app/skills/builtin/gcalendar/scripts/.gitignore +8 -0
  275. cremind-0.0.1/app/skills/builtin/gcalendar/scripts/__main__.py +21 -0
  276. cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/__init__.py +0 -0
  277. cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/cli.py +225 -0
  278. cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/config.py +38 -0
  279. cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/formatter.py +148 -0
  280. cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/gcal_api.py +115 -0
  281. cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/google/__init__.py +0 -0
  282. cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/google/account_key.py +40 -0
  283. cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/google/auth.py +324 -0
  284. cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/google/discovery.py +137 -0
  285. cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/google/golden_account_keys.json +13 -0
  286. cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/google/relay_client.py +113 -0
  287. cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/listener.py +310 -0
  288. cremind-0.0.1/app/skills/builtin/gcalendar/scripts/event_listener.py +21 -0
  289. cremind-0.0.1/app/skills/builtin/gcalendar/scripts/tests/test_account_key.py +40 -0
  290. cremind-0.0.1/app/skills/builtin/gcalendar/scripts/tests/test_link_interrupt.py +86 -0
  291. cremind-0.0.1/app/skills/builtin/gmail/SKILL.md +146 -0
  292. cremind-0.0.1/app/skills/builtin/gmail/events/new_email/.gitkeep +0 -0
  293. cremind-0.0.1/app/skills/builtin/gmail/scripts/.gitignore +8 -0
  294. cremind-0.0.1/app/skills/builtin/gmail/scripts/__main__.py +21 -0
  295. cremind-0.0.1/app/skills/builtin/gmail/scripts/app/__init__.py +0 -0
  296. cremind-0.0.1/app/skills/builtin/gmail/scripts/app/cli.py +214 -0
  297. cremind-0.0.1/app/skills/builtin/gmail/scripts/app/config.py +43 -0
  298. cremind-0.0.1/app/skills/builtin/gmail/scripts/app/formatter.py +121 -0
  299. cremind-0.0.1/app/skills/builtin/gmail/scripts/app/gmail_api.py +146 -0
  300. cremind-0.0.1/app/skills/builtin/gmail/scripts/app/google/__init__.py +0 -0
  301. cremind-0.0.1/app/skills/builtin/gmail/scripts/app/google/account_key.py +40 -0
  302. cremind-0.0.1/app/skills/builtin/gmail/scripts/app/google/auth.py +324 -0
  303. cremind-0.0.1/app/skills/builtin/gmail/scripts/app/google/discovery.py +137 -0
  304. cremind-0.0.1/app/skills/builtin/gmail/scripts/app/google/golden_account_keys.json +13 -0
  305. cremind-0.0.1/app/skills/builtin/gmail/scripts/app/google/relay_client.py +113 -0
  306. cremind-0.0.1/app/skills/builtin/gmail/scripts/app/listener.py +336 -0
  307. cremind-0.0.1/app/skills/builtin/gmail/scripts/event_listener.py +21 -0
  308. cremind-0.0.1/app/skills/builtin/gmail/scripts/tests/test_account_key.py +40 -0
  309. cremind-0.0.1/app/skills/builtin/gmail/scripts/tests/test_link_interrupt.py +86 -0
  310. cremind-0.0.1/app/skills/builtin/imap-email/SKILL.md +43 -0
  311. cremind-0.0.1/app/skills/builtin/imap-email/events/test.md +46 -0
  312. cremind-0.0.1/app/skills/builtin/imap-email/scripts/.gitignore +4 -0
  313. cremind-0.0.1/app/skills/builtin/imap-email/scripts/README.md +173 -0
  314. cremind-0.0.1/app/skills/builtin/imap-email/scripts/__main__.py +15 -0
  315. cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/__init__.py +0 -0
  316. cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/__main__.py +0 -0
  317. cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/cli.py +196 -0
  318. cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/config.py +54 -0
  319. cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/formatter.py +93 -0
  320. cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/imap_client.py +317 -0
  321. cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/listener.py +211 -0
  322. cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/message.py +187 -0
  323. cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/operations.py +180 -0
  324. cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/search.py +63 -0
  325. cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/smtp_client.py +53 -0
  326. cremind-0.0.1/app/skills/builtin/imap-email/scripts/event_listener.py +15 -0
  327. cremind-0.0.1/app/skills/builtin/jira/SKILL.md +161 -0
  328. cremind-0.0.1/app/skills/builtin/jira/events/issue_changed/.gitkeep +0 -0
  329. cremind-0.0.1/app/skills/builtin/jira/scripts/.gitignore +9 -0
  330. cremind-0.0.1/app/skills/builtin/jira/scripts/__main__.py +17 -0
  331. cremind-0.0.1/app/skills/builtin/jira/scripts/app/__init__.py +0 -0
  332. cremind-0.0.1/app/skills/builtin/jira/scripts/app/atlassian/__init__.py +0 -0
  333. cremind-0.0.1/app/skills/builtin/jira/scripts/app/atlassian/account_key.py +40 -0
  334. cremind-0.0.1/app/skills/builtin/jira/scripts/app/atlassian/auth.py +300 -0
  335. cremind-0.0.1/app/skills/builtin/jira/scripts/app/atlassian/discovery.py +86 -0
  336. cremind-0.0.1/app/skills/builtin/jira/scripts/app/atlassian/relay_client.py +111 -0
  337. cremind-0.0.1/app/skills/builtin/jira/scripts/app/cli.py +240 -0
  338. cremind-0.0.1/app/skills/builtin/jira/scripts/app/config.py +58 -0
  339. cremind-0.0.1/app/skills/builtin/jira/scripts/app/formatter.py +112 -0
  340. cremind-0.0.1/app/skills/builtin/jira/scripts/app/jira_api.py +171 -0
  341. cremind-0.0.1/app/skills/builtin/jira/scripts/app/listener.py +345 -0
  342. cremind-0.0.1/app/skills/builtin/jira/scripts/event_listener.py +18 -0
  343. cremind-0.0.1/app/skills/env_file.py +58 -0
  344. cremind-0.0.1/app/skills/importer.py +252 -0
  345. cremind-0.0.1/app/skills/scanner.py +248 -0
  346. cremind-0.0.1/app/skills/sync.py +401 -0
  347. cremind-0.0.1/app/skills/tool.py +116 -0
  348. cremind-0.0.1/app/skills/watcher.py +105 -0
  349. cremind-0.0.1/app/static/ui-electron/.built-at +1 -0
  350. cremind-0.0.1/app/static/ui-electron/agent-avatar.png +0 -0
  351. cremind-0.0.1/app/static/ui-electron/assets/AboutPage-BYGxzwoO.js +1 -0
  352. cremind-0.0.1/app/static/ui-electron/assets/AboutPage-Bay673ON.css +1 -0
  353. cremind-0.0.1/app/static/ui-electron/assets/AgentsToolsSettings-Buh23J8B.css +1 -0
  354. cremind-0.0.1/app/static/ui-electron/assets/AgentsToolsSettings-khxOsBT1.js +5 -0
  355. cremind-0.0.1/app/static/ui-electron/assets/ChannelPairingDialog-CoVN4B3J.js +1 -0
  356. cremind-0.0.1/app/static/ui-electron/assets/ChannelPairingDialog-VjAnCvl0.css +1 -0
  357. cremind-0.0.1/app/static/ui-electron/assets/ChannelsPage-DAPF3fth.js +1 -0
  358. cremind-0.0.1/app/static/ui-electron/assets/ChannelsPage-DzSDiaQI.css +1 -0
  359. cremind-0.0.1/app/static/ui-electron/assets/ChannelsSettings-BlCM1-iv.js +1 -0
  360. cremind-0.0.1/app/static/ui-electron/assets/ChannelsSettings-BrOCcfNG.css +1 -0
  361. cremind-0.0.1/app/static/ui-electron/assets/DeploymentModeRadio-C4kqRD5H.js +1 -0
  362. cremind-0.0.1/app/static/ui-electron/assets/DeploymentModeRadio-DGkSGHUG.css +1 -0
  363. cremind-0.0.1/app/static/ui-electron/assets/DeveloperPage-CkaY7nr5.js +8 -0
  364. cremind-0.0.1/app/static/ui-electron/assets/DeveloperPage-DN9Mmz96.css +1 -0
  365. cremind-0.0.1/app/static/ui-electron/assets/EmbeddingSettings-BvjQwMTO.js +1 -0
  366. cremind-0.0.1/app/static/ui-electron/assets/EmbeddingSettings-DsniVY84.css +1 -0
  367. cremind-0.0.1/app/static/ui-electron/assets/LLMParametersForm-ZUnInzzp.css +1 -0
  368. cremind-0.0.1/app/static/ui-electron/assets/LLMParametersForm.vue_vue_type_script_setup_true_lang-C5rC0IrP.js +6 -0
  369. cremind-0.0.1/app/static/ui-electron/assets/LLMSettings-BoGhbAi7.js +1 -0
  370. cremind-0.0.1/app/static/ui-electron/assets/LLMSettings-CxEW2H8a.css +1 -0
  371. cremind-0.0.1/app/static/ui-electron/assets/LoginPage-DM4dC1XU.js +1 -0
  372. cremind-0.0.1/app/static/ui-electron/assets/LoginPage-Dqz8ApJ_.css +1 -0
  373. cremind-0.0.1/app/static/ui-electron/assets/ProcessList-BFfXkaXr.css +1 -0
  374. cremind-0.0.1/app/static/ui-electron/assets/ProcessList-Bnu8-YEp.js +14 -0
  375. cremind-0.0.1/app/static/ui-electron/assets/ProcessTerminal-C7MLjalD.css +1 -0
  376. cremind-0.0.1/app/static/ui-electron/assets/ProcessTerminal-DSc5DMgs.js +1 -0
  377. cremind-0.0.1/app/static/ui-electron/assets/ProfileSelector-BciT1BgV.js +1 -0
  378. cremind-0.0.1/app/static/ui-electron/assets/ProfileSelector-DRoyskoP.css +1 -0
  379. cremind-0.0.1/app/static/ui-electron/assets/ProfileSettings-CbPGdXWB.js +1 -0
  380. cremind-0.0.1/app/static/ui-electron/assets/ProfileSettings-Dph35mkV.css +1 -0
  381. cremind-0.0.1/app/static/ui-electron/assets/ProviderConfigFields-CDHncpjj.css +1 -0
  382. cremind-0.0.1/app/static/ui-electron/assets/ProviderConfigFields-COOeDNdG.js +1 -0
  383. cremind-0.0.1/app/static/ui-electron/assets/SettingsPage-Cjg5Aw-5.css +1 -0
  384. cremind-0.0.1/app/static/ui-electron/assets/SettingsPage-OiC78qq_.js +1 -0
  385. cremind-0.0.1/app/static/ui-electron/assets/SetupWizard-Cac9EXqk.css +1 -0
  386. cremind-0.0.1/app/static/ui-electron/assets/SetupWizard-hoYGAgWs.js +12 -0
  387. cremind-0.0.1/app/static/ui-electron/assets/SkillEventsPage-BISy34dp.css +1 -0
  388. cremind-0.0.1/app/static/ui-electron/assets/SkillEventsPage-BXkDOfhc.js +11 -0
  389. cremind-0.0.1/app/static/ui-electron/assets/UpdatesSettings-BHLgMLzd.css +1 -0
  390. cremind-0.0.1/app/static/ui-electron/assets/UpdatesSettings-CTZQO3Ek.js +1 -0
  391. cremind-0.0.1/app/static/ui-electron/assets/UserConfigSettings-CwqAU5ku.css +1 -0
  392. cremind-0.0.1/app/static/ui-electron/assets/UserConfigSettings-DQqBJp3I.js +1 -0
  393. cremind-0.0.1/app/static/ui-electron/assets/github-BfC0goYb.css +10 -0
  394. cremind-0.0.1/app/static/ui-electron/assets/github-dark-BEHUn5zE.css +10 -0
  395. cremind-0.0.1/app/static/ui-electron/assets/index-B0y39_LV.js +199 -0
  396. cremind-0.0.1/app/static/ui-electron/assets/index-BBXNjI-t.css +32 -0
  397. cremind-0.0.1/app/static/ui-electron/assets/useLLMModels-PmLutXyj.js +1 -0
  398. cremind-0.0.1/app/static/ui-electron/assets/useServerRestart-f9hu5znm.js +1 -0
  399. cremind-0.0.1/app/static/ui-electron/index.html +17 -0
  400. cremind-0.0.1/app/static/ui-electron/logo.ico +0 -0
  401. cremind-0.0.1/app/static/ui-electron/logo.png +0 -0
  402. cremind-0.0.1/app/static/ui-electron/tray-logo-64x64.png +0 -0
  403. cremind-0.0.1/app/storage/__init__.py +100 -0
  404. cremind-0.0.1/app/storage/_sync_base.py +77 -0
  405. cremind-0.0.1/app/storage/autostart_storage.py +142 -0
  406. cremind-0.0.1/app/storage/backup.py +93 -0
  407. cremind-0.0.1/app/storage/conversation_storage.py +760 -0
  408. cremind-0.0.1/app/storage/dynamic_config_storage.py +162 -0
  409. cremind-0.0.1/app/storage/event_subscription_storage.py +160 -0
  410. cremind-0.0.1/app/storage/file_watcher_storage.py +175 -0
  411. cremind-0.0.1/app/storage/migrations.py +218 -0
  412. cremind-0.0.1/app/storage/models.py +348 -0
  413. cremind-0.0.1/app/storage/tool_storage.py +437 -0
  414. cremind-0.0.1/app/system/__init__.py +0 -0
  415. cremind-0.0.1/app/system/restart.py +77 -0
  416. cremind-0.0.1/app/templates/PERSONA.md +1 -0
  417. cremind-0.0.1/app/templates/assistant.jinja +52 -0
  418. cremind-0.0.1/app/tools/__init__.py +54 -0
  419. cremind-0.0.1/app/tools/a2a/__init__.py +17 -0
  420. cremind-0.0.1/app/tools/a2a/auth.py +392 -0
  421. cremind-0.0.1/app/tools/a2a/connection.py +194 -0
  422. cremind-0.0.1/app/tools/a2a/tool.py +290 -0
  423. cremind-0.0.1/app/tools/base.py +198 -0
  424. cremind-0.0.1/app/tools/builtin/__init__.py +549 -0
  425. cremind-0.0.1/app/tools/builtin/adapter.py +658 -0
  426. cremind-0.0.1/app/tools/builtin/base.py +235 -0
  427. cremind-0.0.1/app/tools/builtin/browser.py +1240 -0
  428. cremind-0.0.1/app/tools/builtin/change_working_directory.py +344 -0
  429. cremind-0.0.1/app/tools/builtin/documentation_search.py +424 -0
  430. cremind-0.0.1/app/tools/builtin/exec_shell.py +2105 -0
  431. cremind-0.0.1/app/tools/builtin/exec_shell_autostart.py +376 -0
  432. cremind-0.0.1/app/tools/builtin/exec_shell_classifier.py +86 -0
  433. cremind-0.0.1/app/tools/builtin/exec_shell_input_mode.py +261 -0
  434. cremind-0.0.1/app/tools/builtin/exec_shell_process_inspect.py +227 -0
  435. cremind-0.0.1/app/tools/builtin/exec_shell_pty.py +485 -0
  436. cremind-0.0.1/app/tools/builtin/exec_shell_rtk.py +111 -0
  437. cremind-0.0.1/app/tools/builtin/gg_calendar.py +235 -0
  438. cremind-0.0.1/app/tools/builtin/gg_places.py +748 -0
  439. cremind-0.0.1/app/tools/builtin/markdown_converter.py +318 -0
  440. cremind-0.0.1/app/tools/builtin/message_detail.py +126 -0
  441. cremind-0.0.1/app/tools/builtin/register_file_watcher.py +617 -0
  442. cremind-0.0.1/app/tools/builtin/register_skill_event.py +393 -0
  443. cremind-0.0.1/app/tools/builtin/sleep.py +93 -0
  444. cremind-0.0.1/app/tools/builtin/system_file.py +1022 -0
  445. cremind-0.0.1/app/tools/builtin/tool.py +232 -0
  446. cremind-0.0.1/app/tools/builtin/weather.py +210 -0
  447. cremind-0.0.1/app/tools/config_manager.py +128 -0
  448. cremind-0.0.1/app/tools/ids.py +77 -0
  449. cremind-0.0.1/app/tools/intrinsic/__init__.py +27 -0
  450. cremind-0.0.1/app/tools/intrinsic/base.py +64 -0
  451. cremind-0.0.1/app/tools/intrinsic/casual_chat.py +24 -0
  452. cremind-0.0.1/app/tools/intrinsic/final_answer.py +29 -0
  453. cremind-0.0.1/app/tools/mcp/__init__.py +32 -0
  454. cremind-0.0.1/app/tools/mcp/mcp_agent_adapter.py +598 -0
  455. cremind-0.0.1/app/tools/mcp/mcp_auth.py +519 -0
  456. cremind-0.0.1/app/tools/mcp/mcp_connection.py +205 -0
  457. cremind-0.0.1/app/tools/mcp/mcp_remote_shim.py +85 -0
  458. cremind-0.0.1/app/tools/mcp/tool.py +395 -0
  459. cremind-0.0.1/app/tools/registry.py +624 -0
  460. cremind-0.0.1/app/types/__init__.py +32 -0
  461. cremind-0.0.1/app/types/__main__.py +244 -0
  462. cremind-0.0.1/app/upgrade/__init__.py +0 -0
  463. cremind-0.0.1/app/upgrade/channel.py +373 -0
  464. cremind-0.0.1/app/upgrade/detached.py +230 -0
  465. cremind-0.0.1/app/upgrade/manifest.py +450 -0
  466. cremind-0.0.1/app/upgrade/runner.py +765 -0
  467. cremind-0.0.1/app/upgrade/status.py +205 -0
  468. cremind-0.0.1/app/upgrade/version_filter.py +33 -0
  469. cremind-0.0.1/app/utils/__init__.py +13 -0
  470. cremind-0.0.1/app/utils/accuweather.py +314 -0
  471. cremind-0.0.1/app/utils/client_storage.py +211 -0
  472. cremind-0.0.1/app/utils/common.py +392 -0
  473. cremind-0.0.1/app/utils/context_storage.py +71 -0
  474. cremind-0.0.1/app/utils/event_parser.py +72 -0
  475. cremind-0.0.1/app/utils/formatting.py +52 -0
  476. cremind-0.0.1/app/utils/logger.py +140 -0
  477. cremind-0.0.1/app/utils/message_tokens.py +68 -0
  478. cremind-0.0.1/app/utils/persona.py +62 -0
  479. cremind-0.0.1/app/utils/skill_source.py +38 -0
  480. cremind-0.0.1/app/utils/task_context.py +13 -0
  481. cremind-0.0.1/app/utils/template.py +185 -0
  482. cremind-0.0.1/app/utils/working_directory.py +150 -0
  483. cremind-0.0.1/app/vectorstores/__init__.py +3 -0
  484. cremind-0.0.1/app/vectorstores/base.py +315 -0
  485. cremind-0.0.1/app/vectorstores/cache.py +200 -0
  486. cremind-0.0.1/app/vectorstores/chroma.py +447 -0
  487. cremind-0.0.1/app/vectorstores/factory.py +33 -0
  488. cremind-0.0.1/app/vectorstores/qdrant.py +365 -0
  489. cremind-0.0.1/helm/cremind/README.md +225 -0
  490. cremind-0.0.1/install/README.md +227 -0
  491. cremind-0.0.1/pyproject.toml +223 -0
@@ -0,0 +1,79 @@
1
+ .vscode/
2
+ dump.rdb
3
+ **/__pycache__
4
+
5
+ # local env files
6
+ .env.*
7
+ .env
8
+ env
9
+
10
+ # Log files
11
+ npm-debug.log*
12
+ yarn-debug.log*
13
+ yarn-error.log*
14
+ pnpm-debug.log*
15
+
16
+ # Lockfiles. We track ui/package-lock.json only — every other lockfile
17
+ # (e.g. app/channels/sidecars/whatsapp/) is build-machine state, not
18
+ # something we want creeping into PRs.
19
+ package-lock.json
20
+ !ui/package-lock.json
21
+ yarn.lock
22
+
23
+ # Editor directories and files
24
+ .idea
25
+ .vscode
26
+ *.suo
27
+ *.ntvs*
28
+ *.njsproj
29
+ *.sln
30
+ *.sw?
31
+
32
+ # Logs
33
+ logs
34
+ *.log
35
+
36
+ # OSX
37
+ **/.DS_Store
38
+
39
+ **/ai_models
40
+
41
+ .venv
42
+
43
+ output.txt
44
+ .client_storage
45
+ .auth_client_storage*
46
+ .profiles/
47
+ .remote_agents/
48
+ .mcp_servers/
49
+ *.egg-info/
50
+ .claude/
51
+ .playwright-mcp/
52
+
53
+ cli/cremind
54
+ cli/cremind.exe
55
+
56
+ # Built SPA — populated by scripts/build_ui.sh, picked up by
57
+ # ``cremind serve`` and bundled into the wheel. The built artifacts are
58
+ # regenerated on every release so we don't track them in git.
59
+ app/static/ui/*
60
+ !app/static/ui/.gitkeep
61
+
62
+ # UI source build outputs (ui/.gitignore also covers these, but root-level
63
+ # entries help tools that don't traverse nested gitignores).
64
+ ui/node_modules/
65
+ ui/dist/
66
+ ui/dist-electron/
67
+ ui/dist-web/
68
+ ui/dist-server/
69
+ ui/release/
70
+ ui/components.d.ts
71
+ ui/*.tsbuildinfo
72
+ ui/.cache/
73
+
74
+ # Helm: subchart archives fetched by `helm dependency build`. Chart.lock pins
75
+ # the exact versions and IS committed; the .tgz blobs are rebuilt by CI (and
76
+ # the PR helm job is path-gated). To make resolution offline (e.g. if Bitnami's
77
+ # free catalog disappears), vendor a pinned postgresql-*.tgz and un-ignore it.
78
+ helm/*/charts/
79
+ helm/*/dist-helm/
cremind-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 cremind
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
cremind-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,207 @@
1
+ Metadata-Version: 2.4
2
+ Name: cremind
3
+ Version: 0.0.1
4
+ Summary: Cremind — open personal assistant server and CLI
5
+ Project-URL: Homepage, https://github.com/cremind-ai/cremind
6
+ Project-URL: Issues, https://github.com/cremind-ai/cremind/issues
7
+ Author: Cremind contributors
8
+ License: MIT
9
+ License-File: LICENSE
10
+ Classifier: Environment :: Console
11
+ Classifier: Operating System :: MacOS
12
+ Classifier: Operating System :: Microsoft :: Windows
13
+ Classifier: Operating System :: POSIX :: Linux
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Topic :: Communications :: Chat
17
+ Requires-Python: >=3.13.9
18
+ Requires-Dist: a2a-sdk[http-server,sql]<1.0,>=0.3.10
19
+ Requires-Dist: aiosqlite>=0.21.0
20
+ Requires-Dist: alembic>=1.13.0
21
+ Requires-Dist: dynaconf>=3.2.0
22
+ Requires-Dist: fastmcp>=2.12.5
23
+ Requires-Dist: httpx-sse>=0.4
24
+ Requires-Dist: httpx[http2]>=0.27
25
+ Requires-Dist: jinja2>=3.1.6
26
+ Requires-Dist: jsonschema>=4.23.0
27
+ Requires-Dist: loguru>=0.7.3
28
+ Requires-Dist: prompt-toolkit>=3.0.47
29
+ Requires-Dist: pydantic>=2.12.3
30
+ Requires-Dist: pyjwt>=2.8.0
31
+ Requires-Dist: python-dotenv>=1.1.1
32
+ Requires-Dist: python-multipart>=0.0.9
33
+ Requires-Dist: pywinpty>=2.0; sys_platform == 'win32'
34
+ Requires-Dist: pyyaml>=6.0
35
+ Requires-Dist: qrcode>=7
36
+ Requires-Dist: rich>=13
37
+ Requires-Dist: starlette<1.0,>=0.52.1
38
+ Requires-Dist: tenacity>=8.2.0
39
+ Requires-Dist: toml>=0.10.2
40
+ Requires-Dist: typer>=0.12
41
+ Requires-Dist: uvicorn>=0.41.0
42
+ Requires-Dist: watchdog>=4.0.0
43
+ Requires-Dist: websockets>=13.0
44
+ Provides-Extra: all
45
+ Requires-Dist: anthropic>=0.52.0; extra == 'all'
46
+ Requires-Dist: asyncpg>=0.29; extra == 'all'
47
+ Requires-Dist: chromadb>=0.5.0; extra == 'all'
48
+ Requires-Dist: google-api-python-client>=2.0.0; extra == 'all'
49
+ Requires-Dist: google-auth>=2.0.0; extra == 'all'
50
+ Requires-Dist: groq>=0.33.0; extra == 'all'
51
+ Requires-Dist: markitdown[all]>=0.1.0; extra == 'all'
52
+ Requires-Dist: openai>=2.6.0; extra == 'all'
53
+ Requires-Dist: pandas>=3.0.1; extra == 'all'
54
+ Requires-Dist: playwright>=1.52.0; extra == 'all'
55
+ Requires-Dist: psycopg[binary]>=3.1; extra == 'all'
56
+ Requires-Dist: python-telegram-bot>=21.0; extra == 'all'
57
+ Requires-Dist: qdrant-client>=1.9.0; extra == 'all'
58
+ Requires-Dist: sentence-transformers>=3.0.0; extra == 'all'
59
+ Requires-Dist: telethon>=1.36.0; extra == 'all'
60
+ Requires-Dist: tiktoken>=0.12.0; extra == 'all'
61
+ Provides-Extra: browser
62
+ Requires-Dist: playwright>=1.52.0; extra == 'browser'
63
+ Provides-Extra: channel-telegram-bot
64
+ Requires-Dist: python-telegram-bot>=21.0; extra == 'channel-telegram-bot'
65
+ Provides-Extra: channel-telegram-userbot
66
+ Requires-Dist: telethon>=1.36.0; extra == 'channel-telegram-userbot'
67
+ Provides-Extra: documents
68
+ Requires-Dist: markitdown[all]>=0.1.0; extra == 'documents'
69
+ Requires-Dist: pandas>=3.0.1; extra == 'documents'
70
+ Provides-Extra: embeddings-gemma
71
+ Requires-Dist: pandas>=3.0.1; extra == 'embeddings-gemma'
72
+ Requires-Dist: sentence-transformers>=3.0.0; extra == 'embeddings-gemma'
73
+ Provides-Extra: embeddings-me5
74
+ Requires-Dist: pandas>=3.0.1; extra == 'embeddings-me5'
75
+ Requires-Dist: sentence-transformers>=3.0.0; extra == 'embeddings-me5'
76
+ Provides-Extra: google
77
+ Requires-Dist: google-api-python-client>=2.0.0; extra == 'google'
78
+ Requires-Dist: google-auth>=2.0.0; extra == 'google'
79
+ Provides-Extra: llm-anthropic
80
+ Requires-Dist: anthropic>=0.52.0; extra == 'llm-anthropic'
81
+ Provides-Extra: llm-groq
82
+ Requires-Dist: groq>=0.33.0; extra == 'llm-groq'
83
+ Requires-Dist: tiktoken>=0.12.0; extra == 'llm-groq'
84
+ Provides-Extra: llm-openai
85
+ Requires-Dist: openai>=2.6.0; extra == 'llm-openai'
86
+ Requires-Dist: tiktoken>=0.12.0; extra == 'llm-openai'
87
+ Provides-Extra: postgres
88
+ Requires-Dist: asyncpg>=0.29; extra == 'postgres'
89
+ Requires-Dist: psycopg[binary]>=3.1; extra == 'postgres'
90
+ Provides-Extra: tokenization
91
+ Requires-Dist: tiktoken>=0.12.0; extra == 'tokenization'
92
+ Provides-Extra: vectorstore-chroma
93
+ Requires-Dist: chromadb>=0.5.0; extra == 'vectorstore-chroma'
94
+ Provides-Extra: vectorstore-qdrant
95
+ Requires-Dist: qdrant-client>=1.9.0; extra == 'vectorstore-qdrant'
96
+ Description-Content-Type: text/markdown
97
+
98
+ # Cremind
99
+
100
+ Open personal assistant — server, desktop app, and CLI you run yourself.
101
+
102
+ [![PyPI](https://img.shields.io/pypi/v/cremind.svg)](https://pypi.org/project/cremind/)
103
+ [![Python](https://img.shields.io/badge/python-%E2%89%A53.13-blue.svg)](https://www.python.org/downloads/)
104
+ [![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](#license)
105
+ [![CI](https://github.com/cremind-ai/cremind/actions/workflows/pr.yml/badge.svg)](https://github.com/cremind-ai/cremind/actions/workflows/pr.yml)
106
+
107
+ ## What is Cremind?
108
+
109
+ Cremind is a personal AI assistant that runs on your own machine or server. It
110
+ bundles a multi-profile agent runtime, a tool plane, a web UI, and a CLI into
111
+ one package. Profiles isolate personas, LLM keys, skills, and conversations,
112
+ so the same install can host a work assistant, a coding assistant, and a
113
+ home assistant side by side without bleeding context across them.
114
+
115
+ Under the hood, Cremind speaks two open protocols: **A2A** for pluggable agents
116
+ and **MCP** for pluggable tools. Bring your own LLM (Anthropic, OpenAI, Groq),
117
+ plug in any MCP server, and reach the assistant through whichever surface
118
+ fits — browser, desktop app, terminal, or a chat channel like Telegram.
119
+
120
+ ## Features
121
+
122
+ - **Multi-profile agents** with isolated personas, skills, browser profiles, and conversation history.
123
+ - **Pluggable LLMs** — Anthropic, OpenAI, and Groq, installed on demand via feature flags.
124
+ - **Tool plane** — built-in file browser, terminal, document RAG, and Playwright browser automation; add any MCP server.
125
+ - **Document ingestion** — drop files in a watched folder; Cremind indexes them for retrieval.
126
+ - **Storage that scales with you** — SQLite by default; switch any service to Postgres, Qdrant, or ChromaDB as a Docker sidecar or external endpoint, from the Setup Wizard.
127
+ - **Chat channels** — Telegram bot and userbot adapters included; channel API for adding more.
128
+ - **Three surfaces** — Web UI at `:1515`, the **Cremind App** desktop client (Windows / macOS / Linux), and an `cremind` CLI for chat, conversations, tools, and admin.
129
+ - **Cross-platform** — runs on Linux, macOS, and Windows; sandboxed Docker mode available for stronger isolation.
130
+
131
+ ## Install
132
+
133
+ ### Cremind App (desktop)
134
+
135
+ Download the prebuilt installer for your OS from the
136
+ [Releases page](https://github.com/cremind-ai/cremind/releases):
137
+
138
+ | OS | File |
139
+ |---------|------|
140
+ | Windows | `Cremind App-Windows-<version>-Setup.exe` (NSIS) |
141
+ | macOS | `Cremind App-macOS-<version>.dmg` |
142
+ | Linux | `Cremind App-Linux-<version>.AppImage` |
143
+
144
+ The desktop app auto-updates from GitHub Releases and bundles the agent — no
145
+ separate server install needed.
146
+
147
+ ### One-line install (Linux / macOS)
148
+
149
+ ```bash
150
+ curl -fsSL https://cremind.io/install.sh | bash
151
+ ```
152
+
153
+ Or fetch the same script straight from GitHub:
154
+
155
+ ```bash
156
+ curl -fsSL https://raw.githubusercontent.com/cremind-ai/cremind/main/install/install.sh | bash
157
+ ```
158
+
159
+ ### One-line install (Windows)
160
+
161
+ ```powershell
162
+ iwr -useb https://cremind.io/install.ps1 | iex
163
+ ```
164
+
165
+ Or fetch the same script straight from GitHub:
166
+
167
+ ```powershell
168
+ iwr -useb https://raw.githubusercontent.com/cremind-ai/cremind/main/install/install.ps1 | iex
169
+ ```
170
+
171
+ The installer detects Docker and asks which mode to use:
172
+
173
+ - **Docker** *(recommended)* — agent runs in a sandboxed XFCE container with
174
+ VNC at `:6080`. Postgres / Qdrant / ChromaDB activate as sibling
175
+ containers on demand.
176
+ - **Native** — Python 3.13+ venv at `~/.cremind/venv`, SQLite, agent shares
177
+ your desktop.
178
+
179
+ Both modes are idempotent — re-running upgrades in place. See
180
+ [`install/README.md`](install/README.md) for the full flag reference and
181
+ deployment-type options (`local` / `server` / `custom`).
182
+
183
+ ## First run
184
+
185
+ 1. Wait for the installer to finish (it pulls images or builds a venv, runs migrations, and starts the server).
186
+ 2. Your browser opens automatically to **`http://<host>:1515/#/setup`** — the Setup Wizard.
187
+ 3. Pick an LLM provider, paste an API key, create your first profile, and you're chatting.
188
+
189
+ Prefer the terminal? `cremind chat` gives you a streamed REPL against the same
190
+ profile. `cremind --help` lists every command (profiles, conversations, tools,
191
+ agents, channels, LLM config, …).
192
+
193
+ ## Requirements
194
+
195
+ - **Docker mode**: Docker Engine with Compose v2. Any OS.
196
+ - **Native mode**: Python **3.13.9+** on Linux, macOS, or Windows.
197
+
198
+ ## Documentation
199
+
200
+ - [`install/README.md`](install/README.md) — installer reference, flags, deployment types, and file layout.
201
+ - [`CONTRIBUTING.md`](CONTRIBUTING.md) — development setup and contribution workflow.
202
+ - [`RELEASING.md`](RELEASING.md) — release channels (production / test / dev) and the release process.
203
+ - In-app docs live under [`documents/`](documents/) and are auto-indexed for retrieval.
204
+
205
+ ## License
206
+
207
+ MIT.
@@ -0,0 +1,110 @@
1
+ # Cremind
2
+
3
+ Open personal assistant — server, desktop app, and CLI you run yourself.
4
+
5
+ [![PyPI](https://img.shields.io/pypi/v/cremind.svg)](https://pypi.org/project/cremind/)
6
+ [![Python](https://img.shields.io/badge/python-%E2%89%A53.13-blue.svg)](https://www.python.org/downloads/)
7
+ [![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](#license)
8
+ [![CI](https://github.com/cremind-ai/cremind/actions/workflows/pr.yml/badge.svg)](https://github.com/cremind-ai/cremind/actions/workflows/pr.yml)
9
+
10
+ ## What is Cremind?
11
+
12
+ Cremind is a personal AI assistant that runs on your own machine or server. It
13
+ bundles a multi-profile agent runtime, a tool plane, a web UI, and a CLI into
14
+ one package. Profiles isolate personas, LLM keys, skills, and conversations,
15
+ so the same install can host a work assistant, a coding assistant, and a
16
+ home assistant side by side without bleeding context across them.
17
+
18
+ Under the hood, Cremind speaks two open protocols: **A2A** for pluggable agents
19
+ and **MCP** for pluggable tools. Bring your own LLM (Anthropic, OpenAI, Groq),
20
+ plug in any MCP server, and reach the assistant through whichever surface
21
+ fits — browser, desktop app, terminal, or a chat channel like Telegram.
22
+
23
+ ## Features
24
+
25
+ - **Multi-profile agents** with isolated personas, skills, browser profiles, and conversation history.
26
+ - **Pluggable LLMs** — Anthropic, OpenAI, and Groq, installed on demand via feature flags.
27
+ - **Tool plane** — built-in file browser, terminal, document RAG, and Playwright browser automation; add any MCP server.
28
+ - **Document ingestion** — drop files in a watched folder; Cremind indexes them for retrieval.
29
+ - **Storage that scales with you** — SQLite by default; switch any service to Postgres, Qdrant, or ChromaDB as a Docker sidecar or external endpoint, from the Setup Wizard.
30
+ - **Chat channels** — Telegram bot and userbot adapters included; channel API for adding more.
31
+ - **Three surfaces** — Web UI at `:1515`, the **Cremind App** desktop client (Windows / macOS / Linux), and an `cremind` CLI for chat, conversations, tools, and admin.
32
+ - **Cross-platform** — runs on Linux, macOS, and Windows; sandboxed Docker mode available for stronger isolation.
33
+
34
+ ## Install
35
+
36
+ ### Cremind App (desktop)
37
+
38
+ Download the prebuilt installer for your OS from the
39
+ [Releases page](https://github.com/cremind-ai/cremind/releases):
40
+
41
+ | OS | File |
42
+ |---------|------|
43
+ | Windows | `Cremind App-Windows-<version>-Setup.exe` (NSIS) |
44
+ | macOS | `Cremind App-macOS-<version>.dmg` |
45
+ | Linux | `Cremind App-Linux-<version>.AppImage` |
46
+
47
+ The desktop app auto-updates from GitHub Releases and bundles the agent — no
48
+ separate server install needed.
49
+
50
+ ### One-line install (Linux / macOS)
51
+
52
+ ```bash
53
+ curl -fsSL https://cremind.io/install.sh | bash
54
+ ```
55
+
56
+ Or fetch the same script straight from GitHub:
57
+
58
+ ```bash
59
+ curl -fsSL https://raw.githubusercontent.com/cremind-ai/cremind/main/install/install.sh | bash
60
+ ```
61
+
62
+ ### One-line install (Windows)
63
+
64
+ ```powershell
65
+ iwr -useb https://cremind.io/install.ps1 | iex
66
+ ```
67
+
68
+ Or fetch the same script straight from GitHub:
69
+
70
+ ```powershell
71
+ iwr -useb https://raw.githubusercontent.com/cremind-ai/cremind/main/install/install.ps1 | iex
72
+ ```
73
+
74
+ The installer detects Docker and asks which mode to use:
75
+
76
+ - **Docker** *(recommended)* — agent runs in a sandboxed XFCE container with
77
+ VNC at `:6080`. Postgres / Qdrant / ChromaDB activate as sibling
78
+ containers on demand.
79
+ - **Native** — Python 3.13+ venv at `~/.cremind/venv`, SQLite, agent shares
80
+ your desktop.
81
+
82
+ Both modes are idempotent — re-running upgrades in place. See
83
+ [`install/README.md`](install/README.md) for the full flag reference and
84
+ deployment-type options (`local` / `server` / `custom`).
85
+
86
+ ## First run
87
+
88
+ 1. Wait for the installer to finish (it pulls images or builds a venv, runs migrations, and starts the server).
89
+ 2. Your browser opens automatically to **`http://<host>:1515/#/setup`** — the Setup Wizard.
90
+ 3. Pick an LLM provider, paste an API key, create your first profile, and you're chatting.
91
+
92
+ Prefer the terminal? `cremind chat` gives you a streamed REPL against the same
93
+ profile. `cremind --help` lists every command (profiles, conversations, tools,
94
+ agents, channels, LLM config, …).
95
+
96
+ ## Requirements
97
+
98
+ - **Docker mode**: Docker Engine with Compose v2. Any OS.
99
+ - **Native mode**: Python **3.13.9+** on Linux, macOS, or Windows.
100
+
101
+ ## Documentation
102
+
103
+ - [`install/README.md`](install/README.md) — installer reference, flags, deployment types, and file layout.
104
+ - [`CONTRIBUTING.md`](CONTRIBUTING.md) — development setup and contribution workflow.
105
+ - [`RELEASING.md`](RELEASING.md) — release channels (production / test / dev) and the release process.
106
+ - In-app docs live under [`documents/`](documents/) and are auto-indexed for retrieval.
107
+
108
+ ## License
109
+
110
+ MIT.
File without changes
File without changes
@@ -0,0 +1,19 @@
1
+ """Single source of truth for the Cremind version.
2
+
3
+ Read by ``pyproject.toml`` (via ``tool.hatch.version``) and by the runtime
4
+ ``/version`` endpoint, the ``cremind version`` CLI, and the upgrader. Bump this
5
+ on release and the package metadata, the API response, and the CLI output
6
+ all move together.
7
+
8
+ Schema migrations are tracked separately by Alembic — see ``alembic/`` at the
9
+ repo root. ``MIN_SUPPORTED_UPGRADE_FROM`` is the oldest version this build
10
+ knows how to migrate from; the upgrader refuses to proceed when the live
11
+ install is older than this.
12
+
13
+ NOTE on ``"0.0.0"``: the upgrade floor accepts any install. Bump it the
14
+ next time Alembic introduces a migration that genuinely requires a minimum
15
+ schema version, not before.
16
+ """
17
+
18
+ __version__ = "0.0.1"
19
+ MIN_SUPPORTED_UPGRADE_FROM = "0.0.0"
@@ -0,0 +1,4 @@
1
+
2
+ from .executor import CremindAgentExecutor
3
+
4
+ __all__ = ['CremindAgentExecutor']