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.
- cremind-0.0.1/.gitignore +79 -0
- cremind-0.0.1/LICENSE +21 -0
- cremind-0.0.1/PKG-INFO +207 -0
- cremind-0.0.1/README.md +110 -0
- cremind-0.0.1/app/__init__.py +0 -0
- cremind-0.0.1/app/__main__.py +0 -0
- cremind-0.0.1/app/__version__.py +19 -0
- cremind-0.0.1/app/agent/__init__.py +4 -0
- cremind-0.0.1/app/agent/agent.py +352 -0
- cremind-0.0.1/app/agent/context_store.py +40 -0
- cremind-0.0.1/app/agent/executor.py +477 -0
- cremind-0.0.1/app/agent/reasoning_agent.py +1473 -0
- cremind-0.0.1/app/agent/skill_classifier.py +164 -0
- cremind-0.0.1/app/agent/stream_runner.py +565 -0
- cremind-0.0.1/app/agent/summary.py +45 -0
- cremind-0.0.1/app/alembic/__init__.py +0 -0
- cremind-0.0.1/app/alembic/env.py +83 -0
- cremind-0.0.1/app/alembic/script.py.mako +26 -0
- cremind-0.0.1/app/alembic/versions/20260509_baseline.py +106 -0
- cremind-0.0.1/app/alembic/versions/__init__.py +0 -0
- cremind-0.0.1/app/api/__init__.py +77 -0
- cremind-0.0.1/app/api/_auth.py +40 -0
- cremind-0.0.1/app/api/agents.py +720 -0
- cremind-0.0.1/app/api/channels.py +532 -0
- cremind-0.0.1/app/api/config.py +1658 -0
- cremind-0.0.1/app/api/conversations.py +520 -0
- cremind-0.0.1/app/api/embedding_stream.py +99 -0
- cremind-0.0.1/app/api/events.py +542 -0
- cremind-0.0.1/app/api/features.py +261 -0
- cremind-0.0.1/app/api/file_watchers.py +368 -0
- cremind-0.0.1/app/api/files.py +659 -0
- cremind-0.0.1/app/api/llm.py +422 -0
- cremind-0.0.1/app/api/logs_stream.py +70 -0
- cremind-0.0.1/app/api/oauth2.py +140 -0
- cremind-0.0.1/app/api/oauth_loopback.py +182 -0
- cremind-0.0.1/app/api/processes.py +491 -0
- cremind-0.0.1/app/api/profile_events.py +196 -0
- cremind-0.0.1/app/api/profiles.py +270 -0
- cremind-0.0.1/app/api/settings_stream.py +90 -0
- cremind-0.0.1/app/api/setup_stream.py +81 -0
- cremind-0.0.1/app/api/skills.py +253 -0
- cremind-0.0.1/app/api/system.py +77 -0
- cremind-0.0.1/app/api/system_vars.py +50 -0
- cremind-0.0.1/app/api/tokens.py +42 -0
- cremind-0.0.1/app/api/tools.py +768 -0
- cremind-0.0.1/app/api/upgrade.py +363 -0
- cremind-0.0.1/app/api/user_config.py +157 -0
- cremind-0.0.1/app/api/version.py +137 -0
- cremind-0.0.1/app/channels/__init__.py +17 -0
- cremind-0.0.1/app/channels/adapters/__init__.py +0 -0
- cremind-0.0.1/app/channels/adapters/discord.py +19 -0
- cremind-0.0.1/app/channels/adapters/messenger.py +19 -0
- cremind-0.0.1/app/channels/adapters/slack.py +19 -0
- cremind-0.0.1/app/channels/adapters/telegram.py +246 -0
- cremind-0.0.1/app/channels/adapters/telegram_userbot.py +363 -0
- cremind-0.0.1/app/channels/adapters/whatsapp.py +330 -0
- cremind-0.0.1/app/channels/base.py +857 -0
- cremind-0.0.1/app/channels/exceptions.py +17 -0
- cremind-0.0.1/app/channels/registry.py +193 -0
- cremind-0.0.1/app/channels/sidecars/__init__.py +0 -0
- cremind-0.0.1/app/channels/sidecars/bootstrap.py +136 -0
- cremind-0.0.1/app/channels/sidecars/whatsapp/.gitignore +1 -0
- cremind-0.0.1/app/channels/sidecars/whatsapp/index.js +269 -0
- cremind-0.0.1/app/channels/sidecars/whatsapp/package.json +17 -0
- cremind-0.0.1/app/cli/__init__.py +0 -0
- cremind-0.0.1/app/cli/client/__init__.py +11 -0
- cremind-0.0.1/app/cli/client/_base.py +179 -0
- cremind-0.0.1/app/cli/client/_sse.py +70 -0
- cremind-0.0.1/app/cli/client/_ws.py +58 -0
- cremind-0.0.1/app/cli/client/agents.py +75 -0
- cremind-0.0.1/app/cli/client/channels.py +131 -0
- cremind-0.0.1/app/cli/client/config.py +43 -0
- cremind-0.0.1/app/cli/client/conversations.py +137 -0
- cremind-0.0.1/app/cli/client/file_watchers.py +34 -0
- cremind-0.0.1/app/cli/client/llm.py +127 -0
- cremind-0.0.1/app/cli/client/me.py +50 -0
- cremind-0.0.1/app/cli/client/processes.py +97 -0
- cremind-0.0.1/app/cli/client/profiles.py +55 -0
- cremind-0.0.1/app/cli/client/setup.py +81 -0
- cremind-0.0.1/app/cli/client/skill_events.py +62 -0
- cremind-0.0.1/app/cli/client/system_vars.py +30 -0
- cremind-0.0.1/app/cli/client/tools.py +102 -0
- cremind-0.0.1/app/cli/commands/__init__.py +0 -0
- cremind-0.0.1/app/cli/commands/_helpers.py +41 -0
- cremind-0.0.1/app/cli/commands/agents.py +361 -0
- cremind-0.0.1/app/cli/commands/channels.py +401 -0
- cremind-0.0.1/app/cli/commands/chat.py +69 -0
- cremind-0.0.1/app/cli/commands/config.py +195 -0
- cremind-0.0.1/app/cli/commands/conv.py +405 -0
- cremind-0.0.1/app/cli/commands/db.py +167 -0
- cremind-0.0.1/app/cli/commands/file_watchers.py +208 -0
- cremind-0.0.1/app/cli/commands/llm.py +368 -0
- cremind-0.0.1/app/cli/commands/me.py +53 -0
- cremind-0.0.1/app/cli/commands/processes.py +562 -0
- cremind-0.0.1/app/cli/commands/profile.py +258 -0
- cremind-0.0.1/app/cli/commands/serve.py +38 -0
- cremind-0.0.1/app/cli/commands/setup.py +308 -0
- cremind-0.0.1/app/cli/commands/skill_events.py +271 -0
- cremind-0.0.1/app/cli/commands/system_vars.py +43 -0
- cremind-0.0.1/app/cli/commands/tools.py +352 -0
- cremind-0.0.1/app/cli/commands/upgrade.py +125 -0
- cremind-0.0.1/app/cli/config.py +74 -0
- cremind-0.0.1/app/cli/io/__init__.py +0 -0
- cremind-0.0.1/app/cli/io/raw_tty.py +122 -0
- cremind-0.0.1/app/cli/main.py +138 -0
- cremind-0.0.1/app/cli/output/__init__.py +21 -0
- cremind-0.0.1/app/cli/output/console.py +43 -0
- cremind-0.0.1/app/cli/output/formatting.py +29 -0
- cremind-0.0.1/app/cli/output/json_output.py +29 -0
- cremind-0.0.1/app/cli/output/tables.py +66 -0
- cremind-0.0.1/app/cli/streaming.py +167 -0
- cremind-0.0.1/app/cli/tui/__init__.py +0 -0
- cremind-0.0.1/app/cli/tui/chat.py +289 -0
- cremind-0.0.1/app/cli/tui/renderer.py +210 -0
- cremind-0.0.1/app/config/__init__.py +88 -0
- cremind-0.0.1/app/config/bootstrap.py +190 -0
- cremind-0.0.1/app/config/channels/discord.toml +40 -0
- cremind-0.0.1/app/config/channels/messenger.toml +41 -0
- cremind-0.0.1/app/config/channels/slack.toml +43 -0
- cremind-0.0.1/app/config/channels/telegram.toml +44 -0
- cremind-0.0.1/app/config/channels/whatsapp.toml +29 -0
- cremind-0.0.1/app/config/config_schema.py +261 -0
- cremind-0.0.1/app/config/credentials_file.py +285 -0
- cremind-0.0.1/app/config/embedding_state.py +238 -0
- cremind-0.0.1/app/config/install_catalog.py +274 -0
- cremind-0.0.1/app/config/install_catalog.toml +193 -0
- cremind-0.0.1/app/config/provider_auth.py +55 -0
- cremind-0.0.1/app/config/providers/anthropic.toml +80 -0
- cremind-0.0.1/app/config/providers/chutes.toml +50 -0
- cremind-0.0.1/app/config/providers/cloudflare-ai-gateway.toml +30 -0
- cremind-0.0.1/app/config/providers/deepseek.toml +29 -0
- cremind-0.0.1/app/config/providers/fireworks.toml +57 -0
- cremind-0.0.1/app/config/providers/github-copilot.toml +64 -0
- cremind-0.0.1/app/config/providers/google-gemini.toml +64 -0
- cremind-0.0.1/app/config/providers/groq.toml +66 -0
- cremind-0.0.1/app/config/providers/huggingface.toml +50 -0
- cremind-0.0.1/app/config/providers/litellm.toml +22 -0
- cremind-0.0.1/app/config/providers/minimax.toml +46 -0
- cremind-0.0.1/app/config/providers/mistral.toml +57 -0
- cremind-0.0.1/app/config/providers/moonshot.toml +46 -0
- cremind-0.0.1/app/config/providers/nvidia.toml +50 -0
- cremind-0.0.1/app/config/providers/ollama.toml +53 -0
- cremind-0.0.1/app/config/providers/openai.toml +117 -0
- cremind-0.0.1/app/config/providers/openrouter.toml +57 -0
- cremind-0.0.1/app/config/providers/perplexity.toml +43 -0
- cremind-0.0.1/app/config/providers/qwen.toml +67 -0
- cremind-0.0.1/app/config/providers/together.toml +64 -0
- cremind-0.0.1/app/config/providers/vertexai.toml +75 -0
- cremind-0.0.1/app/config/providers/vllm.toml +39 -0
- cremind-0.0.1/app/config/providers/xai.toml +44 -0
- cremind-0.0.1/app/config/settings.py +514 -0
- cremind-0.0.1/app/config/settings.toml +66 -0
- cremind-0.0.1/app/config/setup_profiles.py +185 -0
- cremind-0.0.1/app/config/setup_profiles.toml +201 -0
- cremind-0.0.1/app/config/system_vars.py +120 -0
- cremind-0.0.1/app/config/user_config.py +163 -0
- cremind-0.0.1/app/constants/__init__.py +17 -0
- cremind-0.0.1/app/constants/prompts.py +9 -0
- cremind-0.0.1/app/constants/status.py +10 -0
- cremind-0.0.1/app/databases/__init__.py +51 -0
- cremind-0.0.1/app/databases/base.py +130 -0
- cremind-0.0.1/app/databases/factory.py +59 -0
- cremind-0.0.1/app/databases/postgres.py +465 -0
- cremind-0.0.1/app/databases/sqlite.py +173 -0
- cremind-0.0.1/app/documents/__init__.py +34 -0
- cremind-0.0.1/app/documents/bundled/[cli]cremind agents.md +404 -0
- cremind-0.0.1/app/documents/bundled/[cli]cremind channels.md +521 -0
- cremind-0.0.1/app/documents/bundled/[cli]cremind chat.md +193 -0
- cremind-0.0.1/app/documents/bundled/[cli]cremind config.md +334 -0
- cremind-0.0.1/app/documents/bundled/[cli]cremind conv.md +545 -0
- cremind-0.0.1/app/documents/bundled/[cli]cremind file-watchers.md +423 -0
- cremind-0.0.1/app/documents/bundled/[cli]cremind llm.md +368 -0
- cremind-0.0.1/app/documents/bundled/[cli]cremind me.md +100 -0
- cremind-0.0.1/app/documents/bundled/[cli]cremind proc.md +454 -0
- cremind-0.0.1/app/documents/bundled/[cli]cremind profile.md +342 -0
- cremind-0.0.1/app/documents/bundled/[cli]cremind setup.md +343 -0
- cremind-0.0.1/app/documents/bundled/[cli]cremind skill-events.md +387 -0
- cremind-0.0.1/app/documents/bundled/[cli]cremind system-vars.md +103 -0
- cremind-0.0.1/app/documents/bundled/[cli]cremind tools.md +405 -0
- cremind-0.0.1/app/documents/bundled/document.md +130 -0
- cremind-0.0.1/app/documents/parser.py +101 -0
- cremind-0.0.1/app/documents/sync.py +486 -0
- cremind-0.0.1/app/documents/watcher.py +111 -0
- cremind-0.0.1/app/embeddings/__init__.py +31 -0
- cremind-0.0.1/app/embeddings/base.py +19 -0
- cremind-0.0.1/app/embeddings/gemma.py +36 -0
- cremind-0.0.1/app/embeddings/me5.py +29 -0
- cremind-0.0.1/app/events/__init__.py +35 -0
- cremind-0.0.1/app/events/conversations_list_bus.py +68 -0
- cremind-0.0.1/app/events/embedding_state_bus.py +73 -0
- cremind-0.0.1/app/events/file_watcher_admin_bus.py +54 -0
- cremind-0.0.1/app/events/file_watcher_manager.py +528 -0
- cremind-0.0.1/app/events/file_watcher_runner.py +147 -0
- cremind-0.0.1/app/events/log_stream_bus.py +89 -0
- cremind-0.0.1/app/events/manager.py +290 -0
- cremind-0.0.1/app/events/notifications_buffer.py +73 -0
- cremind-0.0.1/app/events/notifications_bus.py +69 -0
- cremind-0.0.1/app/events/processes_bus.py +53 -0
- cremind-0.0.1/app/events/profile_stream_fanout.py +70 -0
- cremind-0.0.1/app/events/queue.py +202 -0
- cremind-0.0.1/app/events/runner.py +134 -0
- cremind-0.0.1/app/events/settings_state_bus.py +74 -0
- cremind-0.0.1/app/events/setup_progress_bus.py +74 -0
- cremind-0.0.1/app/events/skill_events_admin_bus.py +54 -0
- cremind-0.0.1/app/events/stream_bus.py +166 -0
- cremind-0.0.1/app/features/__init__.py +28 -0
- cremind-0.0.1/app/features/installer.py +256 -0
- cremind-0.0.1/app/features/manifest.py +221 -0
- cremind-0.0.1/app/installer/__init__.py +0 -0
- cremind-0.0.1/app/installer/__main__.py +102 -0
- cremind-0.0.1/app/installer/catalog.py +117 -0
- cremind-0.0.1/app/installer/output.py +75 -0
- cremind-0.0.1/app/installer/releases.py +122 -0
- cremind-0.0.1/app/installer/tui.py +459 -0
- cremind-0.0.1/app/lib/__init__.py +0 -0
- cremind-0.0.1/app/lib/embedding.py +25 -0
- cremind-0.0.1/app/lib/embedding_lifecycle.py +430 -0
- cremind-0.0.1/app/lib/exception.py +15 -0
- cremind-0.0.1/app/lib/llm/__init__.py +29 -0
- cremind-0.0.1/app/lib/llm/__main__.py +125 -0
- cremind-0.0.1/app/lib/llm/anthropic.py +452 -0
- cremind-0.0.1/app/lib/llm/base.py +64 -0
- cremind-0.0.1/app/lib/llm/exceptions.py +47 -0
- cremind-0.0.1/app/lib/llm/factory.py +252 -0
- cremind-0.0.1/app/lib/llm/github_copilot.py +93 -0
- cremind-0.0.1/app/lib/llm/groq.py +251 -0
- cremind-0.0.1/app/lib/llm/model_groups.py +116 -0
- cremind-0.0.1/app/lib/llm/ollama.py +250 -0
- cremind-0.0.1/app/lib/llm/openai.py +253 -0
- cremind-0.0.1/app/lib/llm/vertexai.py +282 -0
- cremind-0.0.1/app/lib/llm/vllm.py +250 -0
- cremind-0.0.1/app/lib/template.py +185 -0
- cremind-0.0.1/app/middleware/__init__.py +31 -0
- cremind-0.0.1/app/runtime.py +70 -0
- cremind-0.0.1/app/server.py +1243 -0
- cremind-0.0.1/app/services/__init__.py +30 -0
- cremind-0.0.1/app/services/manifest.py +206 -0
- cremind-0.0.1/app/services/provisioner/__init__.py +35 -0
- cremind-0.0.1/app/services/provisioner/base.py +98 -0
- cremind-0.0.1/app/services/provisioner/docker.py +370 -0
- cremind-0.0.1/app/services/provisioner/external.py +48 -0
- cremind-0.0.1/app/services/provisioner/native.py +101 -0
- cremind-0.0.1/app/setup/__init__.py +0 -0
- cremind-0.0.1/app/skills/__init__.py +25 -0
- cremind-0.0.1/app/skills/builtin/caldav-calendar/SKILL.md +163 -0
- cremind-0.0.1/app/skills/builtin/caldav-calendar/events/new_event/.gitkeep +0 -0
- cremind-0.0.1/app/skills/builtin/caldav-calendar/events/updated_event/.gitkeep +0 -0
- cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/.gitignore +4 -0
- cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/README.md +93 -0
- cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/__main__.py +20 -0
- cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/app/__init__.py +0 -0
- cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/app/caldav_client.py +151 -0
- cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/app/cli.py +166 -0
- cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/app/config.py +58 -0
- cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/app/formatter.py +83 -0
- cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/app/ical.py +269 -0
- cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/app/listener.py +402 -0
- cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/app/operations.py +318 -0
- cremind-0.0.1/app/skills/builtin/caldav-calendar/scripts/event_listener.py +20 -0
- cremind-0.0.1/app/skills/builtin/confluence/SKILL.md +95 -0
- cremind-0.0.1/app/skills/builtin/confluence/scripts/.gitignore +5 -0
- cremind-0.0.1/app/skills/builtin/confluence/scripts/__main__.py +17 -0
- cremind-0.0.1/app/skills/builtin/confluence/scripts/app/__init__.py +0 -0
- cremind-0.0.1/app/skills/builtin/confluence/scripts/app/atlassian/__init__.py +0 -0
- cremind-0.0.1/app/skills/builtin/confluence/scripts/app/atlassian/account_key.py +40 -0
- cremind-0.0.1/app/skills/builtin/confluence/scripts/app/atlassian/auth.py +300 -0
- cremind-0.0.1/app/skills/builtin/confluence/scripts/app/atlassian/discovery.py +79 -0
- cremind-0.0.1/app/skills/builtin/confluence/scripts/app/cli.py +193 -0
- cremind-0.0.1/app/skills/builtin/confluence/scripts/app/config.py +32 -0
- cremind-0.0.1/app/skills/builtin/confluence/scripts/app/confluence_api.py +155 -0
- cremind-0.0.1/app/skills/builtin/confluence/scripts/app/formatter.py +55 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/SKILL.md +152 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/events/event_changed/.gitkeep +0 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/scripts/.gitignore +8 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/scripts/__main__.py +21 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/__init__.py +0 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/cli.py +225 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/config.py +38 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/formatter.py +148 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/gcal_api.py +115 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/google/__init__.py +0 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/google/account_key.py +40 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/google/auth.py +324 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/google/discovery.py +137 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/google/golden_account_keys.json +13 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/google/relay_client.py +113 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/scripts/app/listener.py +310 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/scripts/event_listener.py +21 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/scripts/tests/test_account_key.py +40 -0
- cremind-0.0.1/app/skills/builtin/gcalendar/scripts/tests/test_link_interrupt.py +86 -0
- cremind-0.0.1/app/skills/builtin/gmail/SKILL.md +146 -0
- cremind-0.0.1/app/skills/builtin/gmail/events/new_email/.gitkeep +0 -0
- cremind-0.0.1/app/skills/builtin/gmail/scripts/.gitignore +8 -0
- cremind-0.0.1/app/skills/builtin/gmail/scripts/__main__.py +21 -0
- cremind-0.0.1/app/skills/builtin/gmail/scripts/app/__init__.py +0 -0
- cremind-0.0.1/app/skills/builtin/gmail/scripts/app/cli.py +214 -0
- cremind-0.0.1/app/skills/builtin/gmail/scripts/app/config.py +43 -0
- cremind-0.0.1/app/skills/builtin/gmail/scripts/app/formatter.py +121 -0
- cremind-0.0.1/app/skills/builtin/gmail/scripts/app/gmail_api.py +146 -0
- cremind-0.0.1/app/skills/builtin/gmail/scripts/app/google/__init__.py +0 -0
- cremind-0.0.1/app/skills/builtin/gmail/scripts/app/google/account_key.py +40 -0
- cremind-0.0.1/app/skills/builtin/gmail/scripts/app/google/auth.py +324 -0
- cremind-0.0.1/app/skills/builtin/gmail/scripts/app/google/discovery.py +137 -0
- cremind-0.0.1/app/skills/builtin/gmail/scripts/app/google/golden_account_keys.json +13 -0
- cremind-0.0.1/app/skills/builtin/gmail/scripts/app/google/relay_client.py +113 -0
- cremind-0.0.1/app/skills/builtin/gmail/scripts/app/listener.py +336 -0
- cremind-0.0.1/app/skills/builtin/gmail/scripts/event_listener.py +21 -0
- cremind-0.0.1/app/skills/builtin/gmail/scripts/tests/test_account_key.py +40 -0
- cremind-0.0.1/app/skills/builtin/gmail/scripts/tests/test_link_interrupt.py +86 -0
- cremind-0.0.1/app/skills/builtin/imap-email/SKILL.md +43 -0
- cremind-0.0.1/app/skills/builtin/imap-email/events/test.md +46 -0
- cremind-0.0.1/app/skills/builtin/imap-email/scripts/.gitignore +4 -0
- cremind-0.0.1/app/skills/builtin/imap-email/scripts/README.md +173 -0
- cremind-0.0.1/app/skills/builtin/imap-email/scripts/__main__.py +15 -0
- cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/__init__.py +0 -0
- cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/__main__.py +0 -0
- cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/cli.py +196 -0
- cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/config.py +54 -0
- cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/formatter.py +93 -0
- cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/imap_client.py +317 -0
- cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/listener.py +211 -0
- cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/message.py +187 -0
- cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/operations.py +180 -0
- cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/search.py +63 -0
- cremind-0.0.1/app/skills/builtin/imap-email/scripts/app/smtp_client.py +53 -0
- cremind-0.0.1/app/skills/builtin/imap-email/scripts/event_listener.py +15 -0
- cremind-0.0.1/app/skills/builtin/jira/SKILL.md +161 -0
- cremind-0.0.1/app/skills/builtin/jira/events/issue_changed/.gitkeep +0 -0
- cremind-0.0.1/app/skills/builtin/jira/scripts/.gitignore +9 -0
- cremind-0.0.1/app/skills/builtin/jira/scripts/__main__.py +17 -0
- cremind-0.0.1/app/skills/builtin/jira/scripts/app/__init__.py +0 -0
- cremind-0.0.1/app/skills/builtin/jira/scripts/app/atlassian/__init__.py +0 -0
- cremind-0.0.1/app/skills/builtin/jira/scripts/app/atlassian/account_key.py +40 -0
- cremind-0.0.1/app/skills/builtin/jira/scripts/app/atlassian/auth.py +300 -0
- cremind-0.0.1/app/skills/builtin/jira/scripts/app/atlassian/discovery.py +86 -0
- cremind-0.0.1/app/skills/builtin/jira/scripts/app/atlassian/relay_client.py +111 -0
- cremind-0.0.1/app/skills/builtin/jira/scripts/app/cli.py +240 -0
- cremind-0.0.1/app/skills/builtin/jira/scripts/app/config.py +58 -0
- cremind-0.0.1/app/skills/builtin/jira/scripts/app/formatter.py +112 -0
- cremind-0.0.1/app/skills/builtin/jira/scripts/app/jira_api.py +171 -0
- cremind-0.0.1/app/skills/builtin/jira/scripts/app/listener.py +345 -0
- cremind-0.0.1/app/skills/builtin/jira/scripts/event_listener.py +18 -0
- cremind-0.0.1/app/skills/env_file.py +58 -0
- cremind-0.0.1/app/skills/importer.py +252 -0
- cremind-0.0.1/app/skills/scanner.py +248 -0
- cremind-0.0.1/app/skills/sync.py +401 -0
- cremind-0.0.1/app/skills/tool.py +116 -0
- cremind-0.0.1/app/skills/watcher.py +105 -0
- cremind-0.0.1/app/static/ui-electron/.built-at +1 -0
- cremind-0.0.1/app/static/ui-electron/agent-avatar.png +0 -0
- cremind-0.0.1/app/static/ui-electron/assets/AboutPage-BYGxzwoO.js +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/AboutPage-Bay673ON.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/AgentsToolsSettings-Buh23J8B.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/AgentsToolsSettings-khxOsBT1.js +5 -0
- cremind-0.0.1/app/static/ui-electron/assets/ChannelPairingDialog-CoVN4B3J.js +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/ChannelPairingDialog-VjAnCvl0.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/ChannelsPage-DAPF3fth.js +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/ChannelsPage-DzSDiaQI.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/ChannelsSettings-BlCM1-iv.js +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/ChannelsSettings-BrOCcfNG.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/DeploymentModeRadio-C4kqRD5H.js +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/DeploymentModeRadio-DGkSGHUG.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/DeveloperPage-CkaY7nr5.js +8 -0
- cremind-0.0.1/app/static/ui-electron/assets/DeveloperPage-DN9Mmz96.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/EmbeddingSettings-BvjQwMTO.js +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/EmbeddingSettings-DsniVY84.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/LLMParametersForm-ZUnInzzp.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/LLMParametersForm.vue_vue_type_script_setup_true_lang-C5rC0IrP.js +6 -0
- cremind-0.0.1/app/static/ui-electron/assets/LLMSettings-BoGhbAi7.js +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/LLMSettings-CxEW2H8a.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/LoginPage-DM4dC1XU.js +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/LoginPage-Dqz8ApJ_.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/ProcessList-BFfXkaXr.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/ProcessList-Bnu8-YEp.js +14 -0
- cremind-0.0.1/app/static/ui-electron/assets/ProcessTerminal-C7MLjalD.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/ProcessTerminal-DSc5DMgs.js +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/ProfileSelector-BciT1BgV.js +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/ProfileSelector-DRoyskoP.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/ProfileSettings-CbPGdXWB.js +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/ProfileSettings-Dph35mkV.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/ProviderConfigFields-CDHncpjj.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/ProviderConfigFields-COOeDNdG.js +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/SettingsPage-Cjg5Aw-5.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/SettingsPage-OiC78qq_.js +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/SetupWizard-Cac9EXqk.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/SetupWizard-hoYGAgWs.js +12 -0
- cremind-0.0.1/app/static/ui-electron/assets/SkillEventsPage-BISy34dp.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/SkillEventsPage-BXkDOfhc.js +11 -0
- cremind-0.0.1/app/static/ui-electron/assets/UpdatesSettings-BHLgMLzd.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/UpdatesSettings-CTZQO3Ek.js +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/UserConfigSettings-CwqAU5ku.css +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/UserConfigSettings-DQqBJp3I.js +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/github-BfC0goYb.css +10 -0
- cremind-0.0.1/app/static/ui-electron/assets/github-dark-BEHUn5zE.css +10 -0
- cremind-0.0.1/app/static/ui-electron/assets/index-B0y39_LV.js +199 -0
- cremind-0.0.1/app/static/ui-electron/assets/index-BBXNjI-t.css +32 -0
- cremind-0.0.1/app/static/ui-electron/assets/useLLMModels-PmLutXyj.js +1 -0
- cremind-0.0.1/app/static/ui-electron/assets/useServerRestart-f9hu5znm.js +1 -0
- cremind-0.0.1/app/static/ui-electron/index.html +17 -0
- cremind-0.0.1/app/static/ui-electron/logo.ico +0 -0
- cremind-0.0.1/app/static/ui-electron/logo.png +0 -0
- cremind-0.0.1/app/static/ui-electron/tray-logo-64x64.png +0 -0
- cremind-0.0.1/app/storage/__init__.py +100 -0
- cremind-0.0.1/app/storage/_sync_base.py +77 -0
- cremind-0.0.1/app/storage/autostart_storage.py +142 -0
- cremind-0.0.1/app/storage/backup.py +93 -0
- cremind-0.0.1/app/storage/conversation_storage.py +760 -0
- cremind-0.0.1/app/storage/dynamic_config_storage.py +162 -0
- cremind-0.0.1/app/storage/event_subscription_storage.py +160 -0
- cremind-0.0.1/app/storage/file_watcher_storage.py +175 -0
- cremind-0.0.1/app/storage/migrations.py +218 -0
- cremind-0.0.1/app/storage/models.py +348 -0
- cremind-0.0.1/app/storage/tool_storage.py +437 -0
- cremind-0.0.1/app/system/__init__.py +0 -0
- cremind-0.0.1/app/system/restart.py +77 -0
- cremind-0.0.1/app/templates/PERSONA.md +1 -0
- cremind-0.0.1/app/templates/assistant.jinja +52 -0
- cremind-0.0.1/app/tools/__init__.py +54 -0
- cremind-0.0.1/app/tools/a2a/__init__.py +17 -0
- cremind-0.0.1/app/tools/a2a/auth.py +392 -0
- cremind-0.0.1/app/tools/a2a/connection.py +194 -0
- cremind-0.0.1/app/tools/a2a/tool.py +290 -0
- cremind-0.0.1/app/tools/base.py +198 -0
- cremind-0.0.1/app/tools/builtin/__init__.py +549 -0
- cremind-0.0.1/app/tools/builtin/adapter.py +658 -0
- cremind-0.0.1/app/tools/builtin/base.py +235 -0
- cremind-0.0.1/app/tools/builtin/browser.py +1240 -0
- cremind-0.0.1/app/tools/builtin/change_working_directory.py +344 -0
- cremind-0.0.1/app/tools/builtin/documentation_search.py +424 -0
- cremind-0.0.1/app/tools/builtin/exec_shell.py +2105 -0
- cremind-0.0.1/app/tools/builtin/exec_shell_autostart.py +376 -0
- cremind-0.0.1/app/tools/builtin/exec_shell_classifier.py +86 -0
- cremind-0.0.1/app/tools/builtin/exec_shell_input_mode.py +261 -0
- cremind-0.0.1/app/tools/builtin/exec_shell_process_inspect.py +227 -0
- cremind-0.0.1/app/tools/builtin/exec_shell_pty.py +485 -0
- cremind-0.0.1/app/tools/builtin/exec_shell_rtk.py +111 -0
- cremind-0.0.1/app/tools/builtin/gg_calendar.py +235 -0
- cremind-0.0.1/app/tools/builtin/gg_places.py +748 -0
- cremind-0.0.1/app/tools/builtin/markdown_converter.py +318 -0
- cremind-0.0.1/app/tools/builtin/message_detail.py +126 -0
- cremind-0.0.1/app/tools/builtin/register_file_watcher.py +617 -0
- cremind-0.0.1/app/tools/builtin/register_skill_event.py +393 -0
- cremind-0.0.1/app/tools/builtin/sleep.py +93 -0
- cremind-0.0.1/app/tools/builtin/system_file.py +1022 -0
- cremind-0.0.1/app/tools/builtin/tool.py +232 -0
- cremind-0.0.1/app/tools/builtin/weather.py +210 -0
- cremind-0.0.1/app/tools/config_manager.py +128 -0
- cremind-0.0.1/app/tools/ids.py +77 -0
- cremind-0.0.1/app/tools/intrinsic/__init__.py +27 -0
- cremind-0.0.1/app/tools/intrinsic/base.py +64 -0
- cremind-0.0.1/app/tools/intrinsic/casual_chat.py +24 -0
- cremind-0.0.1/app/tools/intrinsic/final_answer.py +29 -0
- cremind-0.0.1/app/tools/mcp/__init__.py +32 -0
- cremind-0.0.1/app/tools/mcp/mcp_agent_adapter.py +598 -0
- cremind-0.0.1/app/tools/mcp/mcp_auth.py +519 -0
- cremind-0.0.1/app/tools/mcp/mcp_connection.py +205 -0
- cremind-0.0.1/app/tools/mcp/mcp_remote_shim.py +85 -0
- cremind-0.0.1/app/tools/mcp/tool.py +395 -0
- cremind-0.0.1/app/tools/registry.py +624 -0
- cremind-0.0.1/app/types/__init__.py +32 -0
- cremind-0.0.1/app/types/__main__.py +244 -0
- cremind-0.0.1/app/upgrade/__init__.py +0 -0
- cremind-0.0.1/app/upgrade/channel.py +373 -0
- cremind-0.0.1/app/upgrade/detached.py +230 -0
- cremind-0.0.1/app/upgrade/manifest.py +450 -0
- cremind-0.0.1/app/upgrade/runner.py +765 -0
- cremind-0.0.1/app/upgrade/status.py +205 -0
- cremind-0.0.1/app/upgrade/version_filter.py +33 -0
- cremind-0.0.1/app/utils/__init__.py +13 -0
- cremind-0.0.1/app/utils/accuweather.py +314 -0
- cremind-0.0.1/app/utils/client_storage.py +211 -0
- cremind-0.0.1/app/utils/common.py +392 -0
- cremind-0.0.1/app/utils/context_storage.py +71 -0
- cremind-0.0.1/app/utils/event_parser.py +72 -0
- cremind-0.0.1/app/utils/formatting.py +52 -0
- cremind-0.0.1/app/utils/logger.py +140 -0
- cremind-0.0.1/app/utils/message_tokens.py +68 -0
- cremind-0.0.1/app/utils/persona.py +62 -0
- cremind-0.0.1/app/utils/skill_source.py +38 -0
- cremind-0.0.1/app/utils/task_context.py +13 -0
- cremind-0.0.1/app/utils/template.py +185 -0
- cremind-0.0.1/app/utils/working_directory.py +150 -0
- cremind-0.0.1/app/vectorstores/__init__.py +3 -0
- cremind-0.0.1/app/vectorstores/base.py +315 -0
- cremind-0.0.1/app/vectorstores/cache.py +200 -0
- cremind-0.0.1/app/vectorstores/chroma.py +447 -0
- cremind-0.0.1/app/vectorstores/factory.py +33 -0
- cremind-0.0.1/app/vectorstores/qdrant.py +365 -0
- cremind-0.0.1/helm/cremind/README.md +225 -0
- cremind-0.0.1/install/README.md +227 -0
- cremind-0.0.1/pyproject.toml +223 -0
cremind-0.0.1/.gitignore
ADDED
|
@@ -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
|
+
[](https://pypi.org/project/cremind/)
|
|
103
|
+
[](https://www.python.org/downloads/)
|
|
104
|
+
[](#license)
|
|
105
|
+
[](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.
|
cremind-0.0.1/README.md
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
# Cremind
|
|
2
|
+
|
|
3
|
+
Open personal assistant — server, desktop app, and CLI you run yourself.
|
|
4
|
+
|
|
5
|
+
[](https://pypi.org/project/cremind/)
|
|
6
|
+
[](https://www.python.org/downloads/)
|
|
7
|
+
[](#license)
|
|
8
|
+
[](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"
|