├── .claude └── settings.local.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation_issue.yml │ └── feature_request.yml └── workflows │ ├── AUTOMATE_DOCS_WORKFLOW.md │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .renderignore ├── DOCUMENTATION_COMPREHENSIVE_GUIDE.md ├── DOCUMENTATION_FIXES_NEEDED.md ├── LICENSE ├── README.md ├── core_docs ├── JEAN_MEMORY_BIBLE.md ├── NEW_AUTH.md └── SDK_COMPREHENSIVE_OVERVIEW.md ├── docs ├── ASYNC_AI_REASONING_ANALYSIS.md ├── CLAUDE_CONNECTION_CLEAN_UI.md ├── CLAUDE_CONNECTION_DIALOG_COPY.md ├── CLAUDE_OAUTH_MINIMAL.md ├── CLAUDE_WEB_CONNECTION_UI.md ├── COMPLETE_OAUTH_FLOW.md ├── ENVIRONMENT_SETUP.md ├── VSCODE_MCP_SETUP.md ├── archive │ ├── API_IMPLEMENTATION_PLAN.md │ ├── BACKGROUND_DOCUMENT_PROCESSING_ANALYSIS.md │ ├── CHATGPT_DEEP_MEMORY_IMPLEMENTATION_PLAN.md │ ├── CHATGPT_DEPLOYMENT_GUIDE.md │ ├── CHATGPT_HANDOVER_SUMMARY.md │ ├── CHATGPT_MCP_IMPLEMENTATION_PLAN.md │ ├── CLAUDE_DESKTOP_EXTENSIONS.md │ ├── CODEBASE_OVERVIEW.md │ ├── CURSOR_INSTALL_BUTTON_PROJECT.md │ ├── DATABASE_MIGRATION_CHECKLIST.md │ ├── DEBUGGING_CHATGPT_INTEGRATION.md │ ├── DEPLOYMENT_GUIDE.md │ ├── DOCUMENT_STORAGE_PLAN.md │ ├── DOCUMENT_STORAGE_SUMMARY.md │ ├── HTTP_TRANSPORT_IMPLEMENTATION_GUIDE.md │ ├── HTTP_TRANSPORT_MIGRATION_ANALYSIS.md │ ├── HTTP_TRANSPORT_PHASE1_SUMMARY.md │ ├── INTEGRATION_ARCHITECTURE.md │ ├── LICENSE-JEAN.md │ ├── LOCAL_DEVELOPMENT.md │ ├── LOCAL_DEVELOPMENT_SETUP.md │ ├── MCP_COMPATIBILITY.md │ ├── MEMORY_INGESTION_PIPELINE.md │ ├── METADATA_COLUMN_FIX_INSTRUCTIONS.md │ ├── NARRATIVE_CRON_DEPLOYMENT_GUIDE.md │ ├── PHASE_1_MIGRATION_PROMPT.md │ ├── PURE_AI_ORCHESTRATION_PLANNING.md │ ├── RAG_ENHANCEMENT_PLAN.md │ ├── REVERTED_CHANGES_SUMMARY.md │ ├── SAFE_MIGRATION_STRATEGY.md │ ├── SANDBOX_IMPLEMENTATION_SUMMARY.md │ ├── SMART_CONTEXT_DEBUG_STATUS.md │ ├── SMART_CONTEXT_ORCHESTRATION.md │ ├── SMART_CONTEXT_ORCHESTRATION_STATUS.md │ ├── SMS_CONVERSATION_CONTINUITY.md │ ├── SMS_INTEGRATION_PLAN.md │ ├── STATUS.md │ ├── STORE_DOCUMENT_TOOL_GUIDE.md │ ├── TWILIO_SETUP_GUIDE.md │ ├── USER_NARRATIVE_BACKFILL_PLAN.md │ ├── VCF_DOWNLOAD_FEATURE.md │ ├── api_key_implementation_plan.md │ ├── architecture.md │ ├── build_summary.md │ ├── claude-code-multi-agent │ │ ├── CLAUDE_CODE_MULTI_AGENT_USER_WORKFLOW.md │ │ ├── IMPLEMENTATION_GUIDE.md │ │ ├── IMPLEMENTATION_GUIDE_CORRECTED.md │ │ ├── LESSONS_LEARNED.md │ │ ├── PRODUCTION_DEPLOYMENT.md │ │ ├── SECURITY_REQUIREMENTS.md │ │ └── TECHNICAL_ARCHITECTURE.md │ ├── implementation_debrief.md │ ├── jonathans_memory_saas_plan.md │ ├── journey_and_plan.md │ └── oauth_implementation_roadmap.md ├── contributing │ └── CONTRIBUTING.md └── developer_feedback_request.md ├── gemini_test_results.json ├── openmemory ├── .api.pid ├── .gitignore ├── .ui.pid ├── Makefile ├── api │ ├── .env.example │ ├── .jean_memory_token │ ├── .python-version │ ├── Dockerfile │ ├── README.md │ ├── alembic.ini │ ├── alembic │ │ ├── README │ │ ├── env.py │ │ ├── script.py.mako │ │ └── versions │ │ │ ├── 0b53c747049a_initial_migration.py │ │ │ ├── 0d81e543af1a_add_user_narratives_table.py │ │ │ ├── 143338ceedf6_add_unique_constraint_owner_id_app_name.py │ │ │ ├── 2834f44d4d7d_add_document_chunks_table_for_efficient_.py │ │ │ ├── 3a1b2c3d4e5f_add_loops_integration.py │ │ │ ├── 3d72586d0607_fix_subscription_tier_enum.py │ │ │ ├── 4970823f31ba_add_sync_tracking_fields_only.py │ │ │ ├── 49aad20c1d17_merge_conflicting_migration_heads.py │ │ │ ├── 6a4b2e8f5c91_add_sms_fields_to_users.py │ │ │ ├── a1b2c3d4e5f6_add_fulltext_search_index_to_chunks.py │ │ │ ├── dd63364e6ace_add_firstname_and_lastname_fields_to_.py │ │ │ ├── f1074f6618e2_merge_narrative_sms_branches.py │ │ │ ├── f8c6e2d514fc_add_document_table_for_storing_full_.py │ │ │ └── sms_conversation_manual.py │ ├── app │ │ ├── __init__.py │ │ ├── analytics.py │ │ ├── auth.py │ │ ├── background_tasks.py │ │ ├── clients │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── base.py │ │ │ ├── chatgpt.py │ │ │ ├── chorus.py │ │ │ ├── claude.py │ │ │ ├── cursor.py │ │ │ └── default.py │ │ ├── config.py │ │ ├── config │ │ │ ├── __init__.py │ │ │ └── memory_limits.py │ │ ├── context.py │ │ ├── coordination_schema.sql │ │ ├── database.py │ │ ├── db_init.py │ │ ├── init_coordination_db.py │ │ ├── integrations │ │ │ ├── notion_service.py │ │ │ ├── substack_scraper.py │ │ │ ├── substack_service.py │ │ │ └── twitter_service.py │ │ ├── local_auth_helper.py │ │ ├── mcp_claude_simple.py │ │ ├── mcp_fastmcp_oauth.py │ │ ├── mcp_instance.py │ │ ├── mcp_orchestration.py │ │ ├── mcp_streamable_http.py │ │ ├── middleware │ │ │ ├── __init__.py │ │ │ ├── memory_monitor.py │ │ │ └── subscription_middleware.py │ │ ├── models.py │ │ ├── oauth_simple.py │ │ ├── oauth_simple_new.py │ │ ├── routers │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── agent_mcp.py │ │ │ ├── apps.py │ │ │ ├── fastmcp_oauth.py │ │ │ ├── integrations.py │ │ │ ├── jean_memory_api.py │ │ │ ├── keys.py │ │ │ ├── local_auth.py │ │ │ ├── memories.py │ │ │ ├── profile.py │ │ │ ├── sdk_demo.py │ │ │ ├── sdk_mcp.py │ │ │ ├── sdk_oauth.py │ │ │ ├── sdk_secure.py │ │ │ ├── stats.py │ │ │ ├── stripe_webhooks.py │ │ │ ├── test_user.py │ │ │ └── webhooks.py │ │ ├── routing │ │ │ ├── chorus.py │ │ │ └── mcp.py │ │ ├── schemas.py │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── background_processor.py │ │ │ ├── background_sync.py │ │ │ └── chunking_service.py │ │ ├── settings.py │ │ ├── static │ │ │ ├── jean-memory-claude.dxt │ │ │ ├── jean-memory-http-v2.dxt │ │ │ ├── jean-memory-legacy.dxt │ │ │ ├── jean-memory.dxt │ │ │ ├── oauth_authorize.html │ │ │ └── oauth_callback.html │ │ ├── tool_registry.py │ │ ├── tools │ │ │ ├── __init__.py │ │ │ ├── coordination.py │ │ │ ├── debug.py │ │ │ ├── documents.py │ │ │ ├── memory.py │ │ │ ├── memory_modules │ │ │ │ ├── __init__.py │ │ │ │ ├── chunk_search.py │ │ │ │ ├── crud_operations.py │ │ │ │ ├── search_operations.py │ │ │ │ └── utils.py │ │ │ ├── orchestration.py │ │ │ └── orchestration_v2.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── auth_utils.py │ │ │ ├── categorization.py │ │ │ ├── db.py │ │ │ ├── decorators.py │ │ │ ├── error_handlers.py │ │ │ ├── gemini.py │ │ │ ├── mcp_modules │ │ │ ├── __init__.py │ │ │ ├── ai_service.py │ │ │ ├── background_tasks.py │ │ │ ├── cache_manager.py │ │ │ └── memory_analysis.py │ │ │ ├── memory.py │ │ │ ├── memory_analysis.py │ │ │ ├── neo4j_connection.py │ │ │ ├── permissions.py │ │ │ ├── pgvector_connection.py │ │ │ ├── posthog_client.py │ │ │ ├── prompts.py │ │ │ ├── router_utils.py │ │ │ └── sms.py │ ├── evaluation_metrics │ │ ├── metrics_2025-08-15.jsonl │ │ └── metrics_2025-08-16.jsonl │ ├── jean-memory-mcp-server.js │ ├── jean_memory │ │ ├── __init__.py │ │ ├── api_optimized.py │ │ ├── config.py │ │ ├── custom_fact_extraction.py │ │ ├── exceptions.py │ │ ├── mem0_adapter_optimized.py │ │ └── models.py │ ├── main.py │ ├── requirements.txt │ ├── scripts │ │ ├── fix_jonathan_subscription.py │ │ ├── fix_production_subscription_enum.py │ │ └── fix_subscription_enum.sql │ ├── synthetic_datasets │ │ ├── datasets │ │ │ ├── 49b4f879-463f-44ff-b07b-d312312bdd28.json │ │ │ ├── 66fd9ed3-e63a-4a6e-9fab-aa9d4ed1b123.json │ │ │ ├── 7b740503-dff6-4e9d-b451-5ffd4cec58a4.json │ │ │ ├── d9b22415-e7d4-4d4c-adf9-8a15e38f63e9.json │ │ │ └── f7e69a7e-7417-4a66-8791-d1ee76b90858.json │ │ └── metadata │ │ │ ├── 49b4f879-463f-44ff-b07b-d312312bdd28.json │ │ │ ├── 66fd9ed3-e63a-4a6e-9fab-aa9d4ed1b123.json │ │ │ ├── 7b740503-dff6-4e9d-b451-5ffd4cec58a4.json │ │ │ ├── d9b22415-e7d4-4d4c-adf9-8a15e38f63e9.json │ │ │ └── f7e69a7e-7417-4a66-8791-d1ee76b90858.json │ ├── test_datasets │ │ ├── conversation_Debug_Test_20250816_004336.json │ │ ├── conversation_Fallback_Test_20250816_004611.json │ │ ├── conversation_Fixed_Test_20250816_003909.json │ │ ├── conversation_Simple_Test_20250816_003342.json │ │ ├── conversation_mixed_5turns_20250816_005113_20250816_005152.json │ │ ├── conversation_progressive_5turns_20250816_005204_20250816_005255.json │ │ ├── conversation_progressive_5turns_20250816_010925_20250816_011008.json │ │ ├── conversation_progressive_5turns_20250816_012657_20250816_012732.json │ │ └── conversation_progressive_5turns_20250816_013036_20250816_013114.json │ └── tests │ │ └── debug │ │ ├── debug_smart_context.py │ │ ├── test_smart_context.py │ │ └── test_sms_continuity.py ├── docker-compose.yml ├── env.example ├── env.local.example ├── package.json ├── scripts │ ├── configure-env.sh │ ├── setup-dev-environment.sh │ └── validate-env.sh ├── sdk │ └── client.py ├── supabase │ ├── config.toml │ └── migrations │ │ ├── 20250101000000_initial_schema.sql │ │ ├── 20250618000000_add_subscription_columns_to_users.sql │ │ └── 20250618000001_add_metadata_to_chunks.sql ├── tests │ ├── demo_sms_continuity.py │ ├── placeholder-logo.svg │ ├── test-local-setup.py │ ├── test-production-compatibility.py │ ├── test_mcp.py │ ├── test_phase1_neo4j.py │ ├── test_phase2_pgvector.py │ └── test_sms_continuity_standalone.py └── ui │ ├── .cursor │ └── rules │ │ └── posthog-integration.mdc │ ├── .dockerignore │ ├── .env.example │ ├── .eslintrc.json │ ├── .gitignore │ ├── .npmrc │ ├── Dockerfile │ ├── Dockerfile.dev │ ├── app │ ├── api-docs │ │ └── page.tsx │ ├── api │ │ ├── chat │ │ │ ├── gemini │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── narrative │ │ │ └── generate │ │ │ │ └── route.ts │ │ └── support │ │ │ └── route.ts │ ├── apple-icon.png │ ├── apps │ │ ├── [appId] │ │ │ ├── components │ │ │ │ ├── AppDetailCard.tsx │ │ │ │ └── MemoryCard.tsx │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── AppCard.tsx │ │ │ ├── AppFilters.tsx │ │ │ └── AppGrid.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── auth │ │ ├── callback │ │ │ └── page.tsx │ │ └── page.tsx │ ├── dashboard │ │ ├── ProfileCompletionBanner.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── explorer │ │ └── components │ │ │ └── LifeGraph.tsx │ ├── globals.css │ ├── how-to-use-tools │ │ └── page.tsx │ ├── icon.png │ ├── layout.tsx │ ├── loading.tsx │ ├── mcp-docs │ │ └── page.tsx │ ├── memories │ │ ├── components │ │ │ ├── CreateMemoryDialog.tsx │ │ │ ├── DeepQueryDialog.tsx │ │ │ ├── FilterComponent.tsx │ │ │ ├── MemoriesSection.tsx │ │ │ ├── MemoryFilters.tsx │ │ │ ├── MemoryPagination.tsx │ │ │ ├── MemoryTable.tsx │ │ │ └── PageSizeSelector.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── memory │ │ └── [id] │ │ │ ├── components │ │ │ ├── AccessLog.tsx │ │ │ ├── MemoryActions.tsx │ │ │ ├── MemoryDetails.tsx │ │ │ └── RelatedMemories.tsx │ │ │ └── page.tsx │ ├── my-life │ │ ├── components │ │ │ ├── AdvancedKnowledgeGraph.tsx │ │ │ ├── ChatInterface.tsx │ │ │ ├── GraphRenderer.tsx │ │ │ ├── KnowledgeGraph.tsx │ │ │ ├── SimpleLifeTimeline.tsx │ │ │ └── graph-types.ts │ │ ├── layout.tsx │ │ └── page.tsx │ ├── not-found.tsx │ ├── onboarding │ │ └── page.tsx │ ├── page.tsx │ ├── privacy │ │ └── page.tsx │ ├── pro │ │ └── page.tsx │ ├── providers.tsx │ ├── settings │ │ └── page.tsx │ ├── sms-preview │ │ └── page.tsx │ ├── sms-terms │ │ └── page.tsx │ ├── template.tsx │ └── test │ │ └── page.tsx │ ├── components.json │ ├── components │ ├── Navbar.tsx │ ├── PostHogProvider.tsx │ ├── ProtectedRoute.tsx │ ├── ThemeToggle.tsx │ ├── UserNav.tsx │ ├── auth │ │ ├── AuthForm.tsx │ │ └── LogoutButton.tsx │ ├── dashboard │ │ ├── AnalysisPanel.tsx │ │ ├── AppCard.tsx │ │ ├── Install.tsx │ │ ├── InstallModal.tsx │ │ ├── InstallModalFixed.tsx │ │ ├── NotionIntegration.tsx │ │ ├── RefreshAllButton.tsx.disabled │ │ ├── RequestIntegrationModal.tsx │ │ ├── SmsModal.tsx │ │ ├── Stats.tsx │ │ ├── SubstackIntegration.tsx │ │ ├── SyncModal.tsx │ │ └── TwitterIntegration.tsx │ ├── icons.tsx │ ├── landing │ │ ├── AnimatedCodeBlock.tsx │ │ ├── AnimatedIcons.tsx │ │ ├── AnimatedSphere.tsx │ │ ├── MouseFollowArrow.tsx │ │ └── ParticleNetwork.tsx │ ├── memory-v3 │ │ └── STMToggle.tsx │ ├── shared │ │ ├── ParticleBackground.tsx │ │ ├── categories.tsx │ │ ├── source-app.tsx │ │ └── update-memory.tsx │ ├── theme-provider.tsx │ ├── tools │ │ └── RequestFeatureModal.tsx │ ├── types.ts │ └── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── code-block.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── mobile-optimized-dialog.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── subscription-modal.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts │ ├── contexts │ ├── AuthContext.tsx │ └── ThemeContext.tsx │ ├── docs-mintlify │ ├── README.md │ ├── architecture.mdx │ ├── authentication.mdx │ ├── context-engineering.mdx │ ├── favicon.png │ ├── generated │ │ └── docs.ts │ ├── introduction.mdx │ ├── logo │ │ ├── dark.png │ │ ├── graph-system.png │ │ ├── jean-bug-white.png │ │ ├── jean-bug.png │ │ ├── jean-dark-no-bg.png │ │ ├── jean-dark.png │ │ ├── light.png │ │ ├── light.svg │ │ ├── logo-dark-theme.png │ │ ├── logo-full.png │ │ └── logo-light-theme.png │ ├── mcp-api.mdx │ ├── mint.json │ ├── quickstart.mdx │ ├── sdk │ │ ├── nodejs.mdx │ │ ├── overview.mdx │ │ ├── python.mdx │ │ └── react.mdx │ ├── snippets │ │ └── CopyToClipboard.tsx │ ├── speed-modes.mdx │ ├── static │ │ └── consolidated-docs.md │ ├── styles.css │ ├── tools.mdx │ └── use-cases.mdx │ ├── entrypoint.sh │ ├── env.example │ ├── hooks │ ├── useAppConfig.ts │ ├── useAppSync.ts │ ├── useAppsApi.ts │ ├── useCopyToClipboard.ts │ ├── useExplorerCache.ts │ ├── useFiltersApi.ts │ ├── useMemoriesApi.ts │ ├── useMemoriesApiV3.ts │ ├── useProfile.ts │ ├── useStats.ts │ └── useUI.ts │ ├── lib │ ├── apiClient.ts │ ├── gemini.ts │ ├── generated │ │ └── docs.ts │ ├── helpers.ts │ ├── memory-v3 │ │ ├── config.ts │ │ ├── embedding.ts │ │ ├── index.ts │ │ ├── service.ts │ │ ├── storage.ts │ │ └── types.ts │ ├── posthog.ts │ ├── sessionUtils.ts.disabled │ ├── supabaseClient.ts │ └── utils.ts │ ├── next-env.d.ts │ ├── next.config.mjs │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.mjs │ ├── public │ ├── images │ │ ├── ChatGPT-Logo.svg │ │ ├── chorus.avif │ │ ├── chorus.jpg │ │ ├── claude.webp │ │ ├── cline.png │ │ ├── cursor.png │ │ ├── default.png │ │ ├── enconvo.png │ │ ├── jean-bug.png │ │ ├── jean-logo-full-bw-transparent.png │ │ ├── jean-logo-full-bw.png │ │ ├── jean-white-theme-bug.png │ │ ├── jean.png │ │ ├── notion.svg │ │ ├── obsidian.svg │ │ ├── open-memory.svg │ │ ├── roocline.png │ │ ├── substack.png │ │ ├── vscode.png │ │ ├── vscode.svg │ │ ├── windsurf.png │ │ ├── witsy.png │ │ └── x.svg │ ├── jean-logo.png │ ├── logo.svg │ ├── oauth-bridge.html │ ├── og-image.png │ ├── placeholder-logo.png │ ├── placeholder-user.jpg │ ├── placeholder.jpg │ └── placeholder.svg │ ├── skeleton │ ├── AppCardSkeleton.tsx │ ├── AppDetailCardSkeleton.tsx │ ├── AppFiltersSkeleton.tsx │ ├── MemoryCardSkeleton.tsx │ ├── MemorySkeleton.tsx │ └── MemoryTableSkeleton.tsx │ ├── store │ ├── appsSlice.ts │ ├── filtersSlice.ts │ ├── memoriesSlice.ts │ ├── profileSlice.ts │ ├── store.ts │ └── uiSlice.ts │ ├── styles │ ├── animation.css │ └── notfound.scss │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── tsconfig.tsbuildinfo ├── package.json ├── render.yaml ├── scripts ├── README_SDK_DEPLOYMENT.md ├── clear_sqlalchemy_cache.py ├── create_consolidated_docs.py ├── create_local_api_key.py ├── deploy_all_sdks.py ├── utils │ └── standalone_backfill.py └── validate_docs_consistency.py ├── sdk ├── REACT_SDK_V1.11.0_CHANGES.md ├── README.md ├── TEAM_COMMUNICATION_SUMMARY.md ├── examples │ ├── python-chatbot │ │ └── main.py │ ├── react-advanced │ │ └── App.tsx │ ├── react-chatbot │ │ └── App.tsx │ ├── ultimate-nextjs │ │ └── pages │ │ │ ├── api │ │ │ └── chat.ts │ │ │ └── index.tsx │ └── ultimate-react │ │ └── App.tsx ├── node │ ├── README.md │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── auth.ts │ │ ├── client.ts │ │ ├── index.ts │ │ ├── mcp.ts │ │ ├── test.ts │ │ └── types.ts │ └── tsconfig.json ├── python │ ├── README.md │ ├── jeanmemory │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── cli.py │ │ ├── client.py │ │ ├── mcp.py │ │ └── models.py │ └── setup.py ├── react │ ├── JeanAuthGuard.tsx │ ├── JeanChat.tsx │ ├── JeanChatComplete.tsx │ ├── README.md │ ├── SignInWithJean.tsx │ ├── config.ts │ ├── index.ts │ ├── mcp.ts │ ├── oauth.ts │ ├── package-lock.json │ ├── package.json │ ├── provider.tsx │ ├── tsconfig.json │ └── useJeanMCP.tsx └── scripts │ └── README.md └── test-app ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.test.tsx ├── App.tsx ├── index.css ├── index.tsx ├── logo.svg ├── react-app-env.d.ts ├── reportWebVitals.ts └── setupTests.ts └── tsconfig.json /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | Support: ['https://buy.stripe.com/8x214n2K0cmVadx3pIabK01'] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/.github/ISSUE_TEMPLATE/documentation_issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/AUTOMATE_DOCS_WORKFLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/.github/workflows/AUTOMATE_DOCS_WORKFLOW.md -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.renderignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/.renderignore -------------------------------------------------------------------------------- /DOCUMENTATION_COMPREHENSIVE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/DOCUMENTATION_COMPREHENSIVE_GUIDE.md -------------------------------------------------------------------------------- /DOCUMENTATION_FIXES_NEEDED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/DOCUMENTATION_FIXES_NEEDED.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/README.md -------------------------------------------------------------------------------- /core_docs/JEAN_MEMORY_BIBLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/core_docs/JEAN_MEMORY_BIBLE.md -------------------------------------------------------------------------------- /core_docs/NEW_AUTH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/core_docs/NEW_AUTH.md -------------------------------------------------------------------------------- /core_docs/SDK_COMPREHENSIVE_OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/core_docs/SDK_COMPREHENSIVE_OVERVIEW.md -------------------------------------------------------------------------------- /docs/ASYNC_AI_REASONING_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/ASYNC_AI_REASONING_ANALYSIS.md -------------------------------------------------------------------------------- /docs/CLAUDE_CONNECTION_CLEAN_UI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/CLAUDE_CONNECTION_CLEAN_UI.md -------------------------------------------------------------------------------- /docs/CLAUDE_CONNECTION_DIALOG_COPY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/CLAUDE_CONNECTION_DIALOG_COPY.md -------------------------------------------------------------------------------- /docs/CLAUDE_OAUTH_MINIMAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/CLAUDE_OAUTH_MINIMAL.md -------------------------------------------------------------------------------- /docs/CLAUDE_WEB_CONNECTION_UI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/CLAUDE_WEB_CONNECTION_UI.md -------------------------------------------------------------------------------- /docs/COMPLETE_OAUTH_FLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/COMPLETE_OAUTH_FLOW.md -------------------------------------------------------------------------------- /docs/ENVIRONMENT_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/ENVIRONMENT_SETUP.md -------------------------------------------------------------------------------- /docs/VSCODE_MCP_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/VSCODE_MCP_SETUP.md -------------------------------------------------------------------------------- /docs/archive/API_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/API_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /docs/archive/BACKGROUND_DOCUMENT_PROCESSING_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/BACKGROUND_DOCUMENT_PROCESSING_ANALYSIS.md -------------------------------------------------------------------------------- /docs/archive/CHATGPT_DEEP_MEMORY_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/CHATGPT_DEEP_MEMORY_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /docs/archive/CHATGPT_DEPLOYMENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/CHATGPT_DEPLOYMENT_GUIDE.md -------------------------------------------------------------------------------- /docs/archive/CHATGPT_HANDOVER_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/CHATGPT_HANDOVER_SUMMARY.md -------------------------------------------------------------------------------- /docs/archive/CHATGPT_MCP_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/CHATGPT_MCP_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /docs/archive/CLAUDE_DESKTOP_EXTENSIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/CLAUDE_DESKTOP_EXTENSIONS.md -------------------------------------------------------------------------------- /docs/archive/CODEBASE_OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/CODEBASE_OVERVIEW.md -------------------------------------------------------------------------------- /docs/archive/CURSOR_INSTALL_BUTTON_PROJECT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/CURSOR_INSTALL_BUTTON_PROJECT.md -------------------------------------------------------------------------------- /docs/archive/DATABASE_MIGRATION_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/DATABASE_MIGRATION_CHECKLIST.md -------------------------------------------------------------------------------- /docs/archive/DEBUGGING_CHATGPT_INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/DEBUGGING_CHATGPT_INTEGRATION.md -------------------------------------------------------------------------------- /docs/archive/DEPLOYMENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/DEPLOYMENT_GUIDE.md -------------------------------------------------------------------------------- /docs/archive/DOCUMENT_STORAGE_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/DOCUMENT_STORAGE_PLAN.md -------------------------------------------------------------------------------- /docs/archive/DOCUMENT_STORAGE_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/DOCUMENT_STORAGE_SUMMARY.md -------------------------------------------------------------------------------- /docs/archive/HTTP_TRANSPORT_IMPLEMENTATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/HTTP_TRANSPORT_IMPLEMENTATION_GUIDE.md -------------------------------------------------------------------------------- /docs/archive/HTTP_TRANSPORT_MIGRATION_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/HTTP_TRANSPORT_MIGRATION_ANALYSIS.md -------------------------------------------------------------------------------- /docs/archive/HTTP_TRANSPORT_PHASE1_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/HTTP_TRANSPORT_PHASE1_SUMMARY.md -------------------------------------------------------------------------------- /docs/archive/INTEGRATION_ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/INTEGRATION_ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/archive/LICENSE-JEAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/LICENSE-JEAN.md -------------------------------------------------------------------------------- /docs/archive/LOCAL_DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/LOCAL_DEVELOPMENT.md -------------------------------------------------------------------------------- /docs/archive/LOCAL_DEVELOPMENT_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/LOCAL_DEVELOPMENT_SETUP.md -------------------------------------------------------------------------------- /docs/archive/MCP_COMPATIBILITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/MCP_COMPATIBILITY.md -------------------------------------------------------------------------------- /docs/archive/MEMORY_INGESTION_PIPELINE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/MEMORY_INGESTION_PIPELINE.md -------------------------------------------------------------------------------- /docs/archive/METADATA_COLUMN_FIX_INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/METADATA_COLUMN_FIX_INSTRUCTIONS.md -------------------------------------------------------------------------------- /docs/archive/NARRATIVE_CRON_DEPLOYMENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/NARRATIVE_CRON_DEPLOYMENT_GUIDE.md -------------------------------------------------------------------------------- /docs/archive/PHASE_1_MIGRATION_PROMPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/PHASE_1_MIGRATION_PROMPT.md -------------------------------------------------------------------------------- /docs/archive/PURE_AI_ORCHESTRATION_PLANNING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/PURE_AI_ORCHESTRATION_PLANNING.md -------------------------------------------------------------------------------- /docs/archive/RAG_ENHANCEMENT_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/RAG_ENHANCEMENT_PLAN.md -------------------------------------------------------------------------------- /docs/archive/REVERTED_CHANGES_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/REVERTED_CHANGES_SUMMARY.md -------------------------------------------------------------------------------- /docs/archive/SAFE_MIGRATION_STRATEGY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/SAFE_MIGRATION_STRATEGY.md -------------------------------------------------------------------------------- /docs/archive/SANDBOX_IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/SANDBOX_IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/archive/SMART_CONTEXT_DEBUG_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/SMART_CONTEXT_DEBUG_STATUS.md -------------------------------------------------------------------------------- /docs/archive/SMART_CONTEXT_ORCHESTRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/SMART_CONTEXT_ORCHESTRATION.md -------------------------------------------------------------------------------- /docs/archive/SMART_CONTEXT_ORCHESTRATION_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/SMART_CONTEXT_ORCHESTRATION_STATUS.md -------------------------------------------------------------------------------- /docs/archive/SMS_CONVERSATION_CONTINUITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/SMS_CONVERSATION_CONTINUITY.md -------------------------------------------------------------------------------- /docs/archive/SMS_INTEGRATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/SMS_INTEGRATION_PLAN.md -------------------------------------------------------------------------------- /docs/archive/STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/STATUS.md -------------------------------------------------------------------------------- /docs/archive/STORE_DOCUMENT_TOOL_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/STORE_DOCUMENT_TOOL_GUIDE.md -------------------------------------------------------------------------------- /docs/archive/TWILIO_SETUP_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/TWILIO_SETUP_GUIDE.md -------------------------------------------------------------------------------- /docs/archive/USER_NARRATIVE_BACKFILL_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/USER_NARRATIVE_BACKFILL_PLAN.md -------------------------------------------------------------------------------- /docs/archive/VCF_DOWNLOAD_FEATURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/VCF_DOWNLOAD_FEATURE.md -------------------------------------------------------------------------------- /docs/archive/api_key_implementation_plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/api_key_implementation_plan.md -------------------------------------------------------------------------------- /docs/archive/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/architecture.md -------------------------------------------------------------------------------- /docs/archive/build_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/build_summary.md -------------------------------------------------------------------------------- /docs/archive/claude-code-multi-agent/CLAUDE_CODE_MULTI_AGENT_USER_WORKFLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/claude-code-multi-agent/CLAUDE_CODE_MULTI_AGENT_USER_WORKFLOW.md -------------------------------------------------------------------------------- /docs/archive/claude-code-multi-agent/IMPLEMENTATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/claude-code-multi-agent/IMPLEMENTATION_GUIDE.md -------------------------------------------------------------------------------- /docs/archive/claude-code-multi-agent/IMPLEMENTATION_GUIDE_CORRECTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/claude-code-multi-agent/IMPLEMENTATION_GUIDE_CORRECTED.md -------------------------------------------------------------------------------- /docs/archive/claude-code-multi-agent/LESSONS_LEARNED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/claude-code-multi-agent/LESSONS_LEARNED.md -------------------------------------------------------------------------------- /docs/archive/claude-code-multi-agent/PRODUCTION_DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/claude-code-multi-agent/PRODUCTION_DEPLOYMENT.md -------------------------------------------------------------------------------- /docs/archive/claude-code-multi-agent/SECURITY_REQUIREMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/claude-code-multi-agent/SECURITY_REQUIREMENTS.md -------------------------------------------------------------------------------- /docs/archive/claude-code-multi-agent/TECHNICAL_ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/claude-code-multi-agent/TECHNICAL_ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/archive/implementation_debrief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/implementation_debrief.md -------------------------------------------------------------------------------- /docs/archive/jonathans_memory_saas_plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/jonathans_memory_saas_plan.md -------------------------------------------------------------------------------- /docs/archive/journey_and_plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/journey_and_plan.md -------------------------------------------------------------------------------- /docs/archive/oauth_implementation_roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/archive/oauth_implementation_roadmap.md -------------------------------------------------------------------------------- /docs/contributing/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/contributing/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/developer_feedback_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/docs/developer_feedback_request.md -------------------------------------------------------------------------------- /gemini_test_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/gemini_test_results.json -------------------------------------------------------------------------------- /openmemory/.api.pid: -------------------------------------------------------------------------------- 1 | 76779 2 | -------------------------------------------------------------------------------- /openmemory/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/.gitignore -------------------------------------------------------------------------------- /openmemory/.ui.pid: -------------------------------------------------------------------------------- 1 | 76780 2 | -------------------------------------------------------------------------------- /openmemory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/Makefile -------------------------------------------------------------------------------- /openmemory/api/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/.env.example -------------------------------------------------------------------------------- /openmemory/api/.jean_memory_token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/.jean_memory_token -------------------------------------------------------------------------------- /openmemory/api/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 -------------------------------------------------------------------------------- /openmemory/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/Dockerfile -------------------------------------------------------------------------------- /openmemory/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/README.md -------------------------------------------------------------------------------- /openmemory/api/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/alembic.ini -------------------------------------------------------------------------------- /openmemory/api/alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /openmemory/api/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/alembic/env.py -------------------------------------------------------------------------------- /openmemory/api/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/alembic/script.py.mako -------------------------------------------------------------------------------- /openmemory/api/alembic/versions/0b53c747049a_initial_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/alembic/versions/0b53c747049a_initial_migration.py -------------------------------------------------------------------------------- /openmemory/api/alembic/versions/0d81e543af1a_add_user_narratives_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/alembic/versions/0d81e543af1a_add_user_narratives_table.py -------------------------------------------------------------------------------- /openmemory/api/alembic/versions/143338ceedf6_add_unique_constraint_owner_id_app_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/alembic/versions/143338ceedf6_add_unique_constraint_owner_id_app_name.py -------------------------------------------------------------------------------- /openmemory/api/alembic/versions/2834f44d4d7d_add_document_chunks_table_for_efficient_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/alembic/versions/2834f44d4d7d_add_document_chunks_table_for_efficient_.py -------------------------------------------------------------------------------- /openmemory/api/alembic/versions/3a1b2c3d4e5f_add_loops_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/alembic/versions/3a1b2c3d4e5f_add_loops_integration.py -------------------------------------------------------------------------------- /openmemory/api/alembic/versions/3d72586d0607_fix_subscription_tier_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/alembic/versions/3d72586d0607_fix_subscription_tier_enum.py -------------------------------------------------------------------------------- /openmemory/api/alembic/versions/4970823f31ba_add_sync_tracking_fields_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/alembic/versions/4970823f31ba_add_sync_tracking_fields_only.py -------------------------------------------------------------------------------- /openmemory/api/alembic/versions/49aad20c1d17_merge_conflicting_migration_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/alembic/versions/49aad20c1d17_merge_conflicting_migration_heads.py -------------------------------------------------------------------------------- /openmemory/api/alembic/versions/6a4b2e8f5c91_add_sms_fields_to_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/alembic/versions/6a4b2e8f5c91_add_sms_fields_to_users.py -------------------------------------------------------------------------------- /openmemory/api/alembic/versions/a1b2c3d4e5f6_add_fulltext_search_index_to_chunks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/alembic/versions/a1b2c3d4e5f6_add_fulltext_search_index_to_chunks.py -------------------------------------------------------------------------------- /openmemory/api/alembic/versions/dd63364e6ace_add_firstname_and_lastname_fields_to_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/alembic/versions/dd63364e6ace_add_firstname_and_lastname_fields_to_.py -------------------------------------------------------------------------------- /openmemory/api/alembic/versions/f1074f6618e2_merge_narrative_sms_branches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/alembic/versions/f1074f6618e2_merge_narrative_sms_branches.py -------------------------------------------------------------------------------- /openmemory/api/alembic/versions/f8c6e2d514fc_add_document_table_for_storing_full_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/alembic/versions/f8c6e2d514fc_add_document_table_for_storing_full_.py -------------------------------------------------------------------------------- /openmemory/api/alembic/versions/sms_conversation_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/alembic/versions/sms_conversation_manual.py -------------------------------------------------------------------------------- /openmemory/api/app/__init__.py: -------------------------------------------------------------------------------- 1 | # This file makes the app directory a Python package -------------------------------------------------------------------------------- /openmemory/api/app/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/analytics.py -------------------------------------------------------------------------------- /openmemory/api/app/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/auth.py -------------------------------------------------------------------------------- /openmemory/api/app/background_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/background_tasks.py -------------------------------------------------------------------------------- /openmemory/api/app/clients/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/clients/__init__.py -------------------------------------------------------------------------------- /openmemory/api/app/clients/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/clients/api.py -------------------------------------------------------------------------------- /openmemory/api/app/clients/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/clients/base.py -------------------------------------------------------------------------------- /openmemory/api/app/clients/chatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/clients/chatgpt.py -------------------------------------------------------------------------------- /openmemory/api/app/clients/chorus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/clients/chorus.py -------------------------------------------------------------------------------- /openmemory/api/app/clients/claude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/clients/claude.py -------------------------------------------------------------------------------- /openmemory/api/app/clients/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/clients/cursor.py -------------------------------------------------------------------------------- /openmemory/api/app/clients/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/clients/default.py -------------------------------------------------------------------------------- /openmemory/api/app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/config.py -------------------------------------------------------------------------------- /openmemory/api/app/config/__init__.py: -------------------------------------------------------------------------------- 1 | # This file makes the config directory a Python package -------------------------------------------------------------------------------- /openmemory/api/app/config/memory_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/config/memory_limits.py -------------------------------------------------------------------------------- /openmemory/api/app/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/context.py -------------------------------------------------------------------------------- /openmemory/api/app/coordination_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/coordination_schema.sql -------------------------------------------------------------------------------- /openmemory/api/app/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/database.py -------------------------------------------------------------------------------- /openmemory/api/app/db_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/db_init.py -------------------------------------------------------------------------------- /openmemory/api/app/init_coordination_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/init_coordination_db.py -------------------------------------------------------------------------------- /openmemory/api/app/integrations/notion_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/integrations/notion_service.py -------------------------------------------------------------------------------- /openmemory/api/app/integrations/substack_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/integrations/substack_scraper.py -------------------------------------------------------------------------------- /openmemory/api/app/integrations/substack_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/integrations/substack_service.py -------------------------------------------------------------------------------- /openmemory/api/app/integrations/twitter_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/integrations/twitter_service.py -------------------------------------------------------------------------------- /openmemory/api/app/local_auth_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/local_auth_helper.py -------------------------------------------------------------------------------- /openmemory/api/app/mcp_claude_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/mcp_claude_simple.py -------------------------------------------------------------------------------- /openmemory/api/app/mcp_fastmcp_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/mcp_fastmcp_oauth.py -------------------------------------------------------------------------------- /openmemory/api/app/mcp_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/mcp_instance.py -------------------------------------------------------------------------------- /openmemory/api/app/mcp_orchestration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/mcp_orchestration.py -------------------------------------------------------------------------------- /openmemory/api/app/mcp_streamable_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/mcp_streamable_http.py -------------------------------------------------------------------------------- /openmemory/api/app/middleware/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/middleware/__init__.py -------------------------------------------------------------------------------- /openmemory/api/app/middleware/memory_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/middleware/memory_monitor.py -------------------------------------------------------------------------------- /openmemory/api/app/middleware/subscription_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/middleware/subscription_middleware.py -------------------------------------------------------------------------------- /openmemory/api/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/models.py -------------------------------------------------------------------------------- /openmemory/api/app/oauth_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/oauth_simple.py -------------------------------------------------------------------------------- /openmemory/api/app/oauth_simple_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/oauth_simple_new.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/__init__.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/admin.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/agent_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/agent_mcp.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/apps.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/fastmcp_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/fastmcp_oauth.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/integrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/integrations.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/jean_memory_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/jean_memory_api.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/keys.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/local_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/local_auth.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/memories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/memories.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/profile.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/sdk_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/sdk_demo.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/sdk_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/sdk_mcp.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/sdk_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/sdk_oauth.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/sdk_secure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/sdk_secure.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/stats.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/stripe_webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/stripe_webhooks.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/test_user.py -------------------------------------------------------------------------------- /openmemory/api/app/routers/webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routers/webhooks.py -------------------------------------------------------------------------------- /openmemory/api/app/routing/chorus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routing/chorus.py -------------------------------------------------------------------------------- /openmemory/api/app/routing/mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/routing/mcp.py -------------------------------------------------------------------------------- /openmemory/api/app/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/schemas.py -------------------------------------------------------------------------------- /openmemory/api/app/services/__init__.py: -------------------------------------------------------------------------------- 1 | # Services package -------------------------------------------------------------------------------- /openmemory/api/app/services/background_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/services/background_processor.py -------------------------------------------------------------------------------- /openmemory/api/app/services/background_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/services/background_sync.py -------------------------------------------------------------------------------- /openmemory/api/app/services/chunking_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/services/chunking_service.py -------------------------------------------------------------------------------- /openmemory/api/app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/settings.py -------------------------------------------------------------------------------- /openmemory/api/app/static/jean-memory-claude.dxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/static/jean-memory-claude.dxt -------------------------------------------------------------------------------- /openmemory/api/app/static/jean-memory-http-v2.dxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/static/jean-memory-http-v2.dxt -------------------------------------------------------------------------------- /openmemory/api/app/static/jean-memory-legacy.dxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/static/jean-memory-legacy.dxt -------------------------------------------------------------------------------- /openmemory/api/app/static/jean-memory.dxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/static/jean-memory.dxt -------------------------------------------------------------------------------- /openmemory/api/app/static/oauth_authorize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/static/oauth_authorize.html -------------------------------------------------------------------------------- /openmemory/api/app/static/oauth_callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/static/oauth_callback.html -------------------------------------------------------------------------------- /openmemory/api/app/tool_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/tool_registry.py -------------------------------------------------------------------------------- /openmemory/api/app/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/tools/__init__.py -------------------------------------------------------------------------------- /openmemory/api/app/tools/coordination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/tools/coordination.py -------------------------------------------------------------------------------- /openmemory/api/app/tools/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/tools/debug.py -------------------------------------------------------------------------------- /openmemory/api/app/tools/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/tools/documents.py -------------------------------------------------------------------------------- /openmemory/api/app/tools/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/tools/memory.py -------------------------------------------------------------------------------- /openmemory/api/app/tools/memory_modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/tools/memory_modules/__init__.py -------------------------------------------------------------------------------- /openmemory/api/app/tools/memory_modules/chunk_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/tools/memory_modules/chunk_search.py -------------------------------------------------------------------------------- /openmemory/api/app/tools/memory_modules/crud_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/tools/memory_modules/crud_operations.py -------------------------------------------------------------------------------- /openmemory/api/app/tools/memory_modules/search_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/tools/memory_modules/search_operations.py -------------------------------------------------------------------------------- /openmemory/api/app/tools/memory_modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/tools/memory_modules/utils.py -------------------------------------------------------------------------------- /openmemory/api/app/tools/orchestration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/tools/orchestration.py -------------------------------------------------------------------------------- /openmemory/api/app/tools/orchestration_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/tools/orchestration_v2.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openmemory/api/app/utils/auth_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/auth_utils.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/categorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/categorization.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/db.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/decorators.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/error_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/error_handlers.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/gemini.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/mcp_modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/mcp_modules/__init__.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/mcp_modules/ai_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/mcp_modules/ai_service.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/mcp_modules/background_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/mcp_modules/background_tasks.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/mcp_modules/cache_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/mcp_modules/cache_manager.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/mcp_modules/memory_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/mcp_modules/memory_analysis.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/memory.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/memory_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/memory_analysis.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/neo4j_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/neo4j_connection.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/permissions.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/pgvector_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/pgvector_connection.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/posthog_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/posthog_client.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/prompts.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/router_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/router_utils.py -------------------------------------------------------------------------------- /openmemory/api/app/utils/sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/app/utils/sms.py -------------------------------------------------------------------------------- /openmemory/api/evaluation_metrics/metrics_2025-08-15.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/evaluation_metrics/metrics_2025-08-15.jsonl -------------------------------------------------------------------------------- /openmemory/api/evaluation_metrics/metrics_2025-08-16.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/evaluation_metrics/metrics_2025-08-16.jsonl -------------------------------------------------------------------------------- /openmemory/api/jean-memory-mcp-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/jean-memory-mcp-server.js -------------------------------------------------------------------------------- /openmemory/api/jean_memory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/jean_memory/__init__.py -------------------------------------------------------------------------------- /openmemory/api/jean_memory/api_optimized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/jean_memory/api_optimized.py -------------------------------------------------------------------------------- /openmemory/api/jean_memory/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/jean_memory/config.py -------------------------------------------------------------------------------- /openmemory/api/jean_memory/custom_fact_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/jean_memory/custom_fact_extraction.py -------------------------------------------------------------------------------- /openmemory/api/jean_memory/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/jean_memory/exceptions.py -------------------------------------------------------------------------------- /openmemory/api/jean_memory/mem0_adapter_optimized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/jean_memory/mem0_adapter_optimized.py -------------------------------------------------------------------------------- /openmemory/api/jean_memory/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/jean_memory/models.py -------------------------------------------------------------------------------- /openmemory/api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/main.py -------------------------------------------------------------------------------- /openmemory/api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/requirements.txt -------------------------------------------------------------------------------- /openmemory/api/scripts/fix_jonathan_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/scripts/fix_jonathan_subscription.py -------------------------------------------------------------------------------- /openmemory/api/scripts/fix_production_subscription_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/scripts/fix_production_subscription_enum.py -------------------------------------------------------------------------------- /openmemory/api/scripts/fix_subscription_enum.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/scripts/fix_subscription_enum.sql -------------------------------------------------------------------------------- /openmemory/api/synthetic_datasets/datasets/49b4f879-463f-44ff-b07b-d312312bdd28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/synthetic_datasets/datasets/49b4f879-463f-44ff-b07b-d312312bdd28.json -------------------------------------------------------------------------------- /openmemory/api/synthetic_datasets/datasets/66fd9ed3-e63a-4a6e-9fab-aa9d4ed1b123.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/synthetic_datasets/datasets/66fd9ed3-e63a-4a6e-9fab-aa9d4ed1b123.json -------------------------------------------------------------------------------- /openmemory/api/synthetic_datasets/datasets/7b740503-dff6-4e9d-b451-5ffd4cec58a4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/synthetic_datasets/datasets/7b740503-dff6-4e9d-b451-5ffd4cec58a4.json -------------------------------------------------------------------------------- /openmemory/api/synthetic_datasets/datasets/d9b22415-e7d4-4d4c-adf9-8a15e38f63e9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/synthetic_datasets/datasets/d9b22415-e7d4-4d4c-adf9-8a15e38f63e9.json -------------------------------------------------------------------------------- /openmemory/api/synthetic_datasets/datasets/f7e69a7e-7417-4a66-8791-d1ee76b90858.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/synthetic_datasets/datasets/f7e69a7e-7417-4a66-8791-d1ee76b90858.json -------------------------------------------------------------------------------- /openmemory/api/synthetic_datasets/metadata/49b4f879-463f-44ff-b07b-d312312bdd28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/synthetic_datasets/metadata/49b4f879-463f-44ff-b07b-d312312bdd28.json -------------------------------------------------------------------------------- /openmemory/api/synthetic_datasets/metadata/66fd9ed3-e63a-4a6e-9fab-aa9d4ed1b123.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/synthetic_datasets/metadata/66fd9ed3-e63a-4a6e-9fab-aa9d4ed1b123.json -------------------------------------------------------------------------------- /openmemory/api/synthetic_datasets/metadata/7b740503-dff6-4e9d-b451-5ffd4cec58a4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/synthetic_datasets/metadata/7b740503-dff6-4e9d-b451-5ffd4cec58a4.json -------------------------------------------------------------------------------- /openmemory/api/synthetic_datasets/metadata/d9b22415-e7d4-4d4c-adf9-8a15e38f63e9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/synthetic_datasets/metadata/d9b22415-e7d4-4d4c-adf9-8a15e38f63e9.json -------------------------------------------------------------------------------- /openmemory/api/synthetic_datasets/metadata/f7e69a7e-7417-4a66-8791-d1ee76b90858.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/synthetic_datasets/metadata/f7e69a7e-7417-4a66-8791-d1ee76b90858.json -------------------------------------------------------------------------------- /openmemory/api/test_datasets/conversation_Debug_Test_20250816_004336.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/test_datasets/conversation_Debug_Test_20250816_004336.json -------------------------------------------------------------------------------- /openmemory/api/test_datasets/conversation_Fallback_Test_20250816_004611.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/test_datasets/conversation_Fallback_Test_20250816_004611.json -------------------------------------------------------------------------------- /openmemory/api/test_datasets/conversation_Fixed_Test_20250816_003909.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/test_datasets/conversation_Fixed_Test_20250816_003909.json -------------------------------------------------------------------------------- /openmemory/api/test_datasets/conversation_Simple_Test_20250816_003342.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/test_datasets/conversation_Simple_Test_20250816_003342.json -------------------------------------------------------------------------------- /openmemory/api/test_datasets/conversation_mixed_5turns_20250816_005113_20250816_005152.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/test_datasets/conversation_mixed_5turns_20250816_005113_20250816_005152.json -------------------------------------------------------------------------------- /openmemory/api/test_datasets/conversation_progressive_5turns_20250816_005204_20250816_005255.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/test_datasets/conversation_progressive_5turns_20250816_005204_20250816_005255.json -------------------------------------------------------------------------------- /openmemory/api/test_datasets/conversation_progressive_5turns_20250816_010925_20250816_011008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/test_datasets/conversation_progressive_5turns_20250816_010925_20250816_011008.json -------------------------------------------------------------------------------- /openmemory/api/test_datasets/conversation_progressive_5turns_20250816_012657_20250816_012732.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/test_datasets/conversation_progressive_5turns_20250816_012657_20250816_012732.json -------------------------------------------------------------------------------- /openmemory/api/test_datasets/conversation_progressive_5turns_20250816_013036_20250816_013114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/test_datasets/conversation_progressive_5turns_20250816_013036_20250816_013114.json -------------------------------------------------------------------------------- /openmemory/api/tests/debug/debug_smart_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/tests/debug/debug_smart_context.py -------------------------------------------------------------------------------- /openmemory/api/tests/debug/test_smart_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/tests/debug/test_smart_context.py -------------------------------------------------------------------------------- /openmemory/api/tests/debug/test_sms_continuity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/api/tests/debug/test_sms_continuity.py -------------------------------------------------------------------------------- /openmemory/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/docker-compose.yml -------------------------------------------------------------------------------- /openmemory/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/env.example -------------------------------------------------------------------------------- /openmemory/env.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/env.local.example -------------------------------------------------------------------------------- /openmemory/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/package.json -------------------------------------------------------------------------------- /openmemory/scripts/configure-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/scripts/configure-env.sh -------------------------------------------------------------------------------- /openmemory/scripts/setup-dev-environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/scripts/setup-dev-environment.sh -------------------------------------------------------------------------------- /openmemory/scripts/validate-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/scripts/validate-env.sh -------------------------------------------------------------------------------- /openmemory/sdk/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/sdk/client.py -------------------------------------------------------------------------------- /openmemory/supabase/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/supabase/config.toml -------------------------------------------------------------------------------- /openmemory/supabase/migrations/20250101000000_initial_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/supabase/migrations/20250101000000_initial_schema.sql -------------------------------------------------------------------------------- /openmemory/supabase/migrations/20250618000000_add_subscription_columns_to_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/supabase/migrations/20250618000000_add_subscription_columns_to_users.sql -------------------------------------------------------------------------------- /openmemory/supabase/migrations/20250618000001_add_metadata_to_chunks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/supabase/migrations/20250618000001_add_metadata_to_chunks.sql -------------------------------------------------------------------------------- /openmemory/tests/demo_sms_continuity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/tests/demo_sms_continuity.py -------------------------------------------------------------------------------- /openmemory/tests/placeholder-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/tests/placeholder-logo.svg -------------------------------------------------------------------------------- /openmemory/tests/test-local-setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/tests/test-local-setup.py -------------------------------------------------------------------------------- /openmemory/tests/test-production-compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/tests/test-production-compatibility.py -------------------------------------------------------------------------------- /openmemory/tests/test_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/tests/test_mcp.py -------------------------------------------------------------------------------- /openmemory/tests/test_phase1_neo4j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/tests/test_phase1_neo4j.py -------------------------------------------------------------------------------- /openmemory/tests/test_phase2_pgvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/tests/test_phase2_pgvector.py -------------------------------------------------------------------------------- /openmemory/tests/test_sms_continuity_standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/tests/test_sms_continuity_standalone.py -------------------------------------------------------------------------------- /openmemory/ui/.cursor/rules/posthog-integration.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/.cursor/rules/posthog-integration.mdc -------------------------------------------------------------------------------- /openmemory/ui/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/.dockerignore -------------------------------------------------------------------------------- /openmemory/ui/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/.env.example -------------------------------------------------------------------------------- /openmemory/ui/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/.eslintrc.json -------------------------------------------------------------------------------- /openmemory/ui/.gitignore: -------------------------------------------------------------------------------- 1 | .env.local 2 | -------------------------------------------------------------------------------- /openmemory/ui/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/.npmrc -------------------------------------------------------------------------------- /openmemory/ui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/Dockerfile -------------------------------------------------------------------------------- /openmemory/ui/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/Dockerfile.dev -------------------------------------------------------------------------------- /openmemory/ui/app/api-docs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/api-docs/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/api/chat/gemini/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/api/chat/gemini/route.ts -------------------------------------------------------------------------------- /openmemory/ui/app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/api/chat/route.ts -------------------------------------------------------------------------------- /openmemory/ui/app/api/narrative/generate/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/api/narrative/generate/route.ts -------------------------------------------------------------------------------- /openmemory/ui/app/api/support/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/api/support/route.ts -------------------------------------------------------------------------------- /openmemory/ui/app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/apple-icon.png -------------------------------------------------------------------------------- /openmemory/ui/app/apps/[appId]/components/AppDetailCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/apps/[appId]/components/AppDetailCard.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/apps/[appId]/components/MemoryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/apps/[appId]/components/MemoryCard.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/apps/[appId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/apps/[appId]/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/apps/components/AppCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/apps/components/AppCard.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/apps/components/AppFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/apps/components/AppFilters.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/apps/components/AppGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/apps/components/AppGrid.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/apps/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/apps/layout.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/apps/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/apps/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/auth/callback/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/auth/callback/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/auth/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/auth/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/dashboard/ProfileCompletionBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/dashboard/ProfileCompletionBanner.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/dashboard/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/explorer/components/LifeGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/explorer/components/LifeGraph.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/globals.css -------------------------------------------------------------------------------- /openmemory/ui/app/how-to-use-tools/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/how-to-use-tools/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/icon.png -------------------------------------------------------------------------------- /openmemory/ui/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/layout.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/loading.tsx: -------------------------------------------------------------------------------- 1 | export default function Loading() { 2 | return null; 3 | } 4 | -------------------------------------------------------------------------------- /openmemory/ui/app/mcp-docs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/mcp-docs/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/memories/components/CreateMemoryDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/memories/components/CreateMemoryDialog.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/memories/components/DeepQueryDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/memories/components/DeepQueryDialog.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/memories/components/FilterComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/memories/components/FilterComponent.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/memories/components/MemoriesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/memories/components/MemoriesSection.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/memories/components/MemoryFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/memories/components/MemoryFilters.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/memories/components/MemoryPagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/memories/components/MemoryPagination.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/memories/components/MemoryTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/memories/components/MemoryTable.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/memories/components/PageSizeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/memories/components/PageSizeSelector.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/memories/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/memories/layout.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/memories/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/memories/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/memory/[id]/components/AccessLog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/memory/[id]/components/AccessLog.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/memory/[id]/components/MemoryActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/memory/[id]/components/MemoryActions.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/memory/[id]/components/MemoryDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/memory/[id]/components/MemoryDetails.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/memory/[id]/components/RelatedMemories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/memory/[id]/components/RelatedMemories.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/memory/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/memory/[id]/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/my-life/components/AdvancedKnowledgeGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/my-life/components/AdvancedKnowledgeGraph.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/my-life/components/ChatInterface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/my-life/components/ChatInterface.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/my-life/components/GraphRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/my-life/components/GraphRenderer.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/my-life/components/KnowledgeGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/my-life/components/KnowledgeGraph.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/my-life/components/SimpleLifeTimeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/my-life/components/SimpleLifeTimeline.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/my-life/components/graph-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/my-life/components/graph-types.ts -------------------------------------------------------------------------------- /openmemory/ui/app/my-life/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/my-life/layout.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/my-life/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/my-life/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/not-found.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/onboarding/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/onboarding/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/privacy/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/pro/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/pro/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/providers.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/settings/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/sms-preview/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/sms-preview/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/sms-terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/sms-terms/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/template.tsx -------------------------------------------------------------------------------- /openmemory/ui/app/test/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/app/test/page.tsx -------------------------------------------------------------------------------- /openmemory/ui/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components.json -------------------------------------------------------------------------------- /openmemory/ui/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/Navbar.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/PostHogProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/PostHogProvider.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ProtectedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ProtectedRoute.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ThemeToggle.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/UserNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/UserNav.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/auth/AuthForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/auth/AuthForm.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/auth/LogoutButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/auth/LogoutButton.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/dashboard/AnalysisPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/dashboard/AnalysisPanel.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/dashboard/AppCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/dashboard/AppCard.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/dashboard/Install.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/dashboard/Install.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/dashboard/InstallModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/dashboard/InstallModal.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/dashboard/InstallModalFixed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/dashboard/InstallModalFixed.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/dashboard/NotionIntegration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/dashboard/NotionIntegration.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/dashboard/RefreshAllButton.tsx.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/dashboard/RefreshAllButton.tsx.disabled -------------------------------------------------------------------------------- /openmemory/ui/components/dashboard/RequestIntegrationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/dashboard/RequestIntegrationModal.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/dashboard/SmsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/dashboard/SmsModal.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/dashboard/Stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/dashboard/Stats.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/dashboard/SubstackIntegration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/dashboard/SubstackIntegration.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/dashboard/SyncModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/dashboard/SyncModal.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/dashboard/TwitterIntegration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/dashboard/TwitterIntegration.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/icons.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/landing/AnimatedCodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/landing/AnimatedCodeBlock.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/landing/AnimatedIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/landing/AnimatedIcons.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/landing/AnimatedSphere.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/landing/AnimatedSphere.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/landing/MouseFollowArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/landing/MouseFollowArrow.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/landing/ParticleNetwork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/landing/ParticleNetwork.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/memory-v3/STMToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/memory-v3/STMToggle.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/shared/ParticleBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/shared/ParticleBackground.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/shared/categories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/shared/categories.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/shared/source-app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/shared/source-app.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/shared/update-memory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/shared/update-memory.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/theme-provider.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/tools/RequestFeatureModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/tools/RequestFeatureModal.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/types.ts -------------------------------------------------------------------------------- /openmemory/ui/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/accordion.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/alert.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/avatar.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/badge.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/button.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/calendar.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/card.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/carousel.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/chart.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/code-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/code-block.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/command.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/dialog.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/drawer.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/form.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/input.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/label.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/menubar.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/mobile-optimized-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/mobile-optimized-dialog.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/pagination.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/popover.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/progress.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/resizable.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/select.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/separator.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/sheet.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/slider.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/sonner.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/subscription-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/subscription-modal.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/switch.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/table.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/tabs.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/textarea.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/toast.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/toaster.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/toggle.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /openmemory/ui/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/components/ui/use-toast.ts -------------------------------------------------------------------------------- /openmemory/ui/contexts/AuthContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/contexts/AuthContext.tsx -------------------------------------------------------------------------------- /openmemory/ui/contexts/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/contexts/ThemeContext.tsx -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/README.md -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/architecture.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/architecture.mdx -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/authentication.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/authentication.mdx -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/context-engineering.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/context-engineering.mdx -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/favicon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/generated/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/generated/docs.ts -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/introduction.mdx -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/logo/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/logo/dark.png -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/logo/graph-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/logo/graph-system.png -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/logo/jean-bug-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/logo/jean-bug-white.png -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/logo/jean-bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/logo/jean-bug.png -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/logo/jean-dark-no-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/logo/jean-dark-no-bg.png -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/logo/jean-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/logo/jean-dark.png -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/logo/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/logo/light.png -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/logo/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/logo/light.svg -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/logo/logo-dark-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/logo/logo-dark-theme.png -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/logo/logo-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/logo/logo-full.png -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/logo/logo-light-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/logo/logo-light-theme.png -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/mcp-api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/mcp-api.mdx -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/mint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/mint.json -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/quickstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/quickstart.mdx -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/sdk/nodejs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/sdk/nodejs.mdx -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/sdk/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/sdk/overview.mdx -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/sdk/python.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/sdk/python.mdx -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/sdk/react.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/sdk/react.mdx -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/snippets/CopyToClipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/snippets/CopyToClipboard.tsx -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/speed-modes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/speed-modes.mdx -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/static/consolidated-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/static/consolidated-docs.md -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/styles.css -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/tools.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/tools.mdx -------------------------------------------------------------------------------- /openmemory/ui/docs-mintlify/use-cases.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/docs-mintlify/use-cases.mdx -------------------------------------------------------------------------------- /openmemory/ui/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/entrypoint.sh -------------------------------------------------------------------------------- /openmemory/ui/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/env.example -------------------------------------------------------------------------------- /openmemory/ui/hooks/useAppConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/hooks/useAppConfig.ts -------------------------------------------------------------------------------- /openmemory/ui/hooks/useAppSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/hooks/useAppSync.ts -------------------------------------------------------------------------------- /openmemory/ui/hooks/useAppsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/hooks/useAppsApi.ts -------------------------------------------------------------------------------- /openmemory/ui/hooks/useCopyToClipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/hooks/useCopyToClipboard.ts -------------------------------------------------------------------------------- /openmemory/ui/hooks/useExplorerCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/hooks/useExplorerCache.ts -------------------------------------------------------------------------------- /openmemory/ui/hooks/useFiltersApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/hooks/useFiltersApi.ts -------------------------------------------------------------------------------- /openmemory/ui/hooks/useMemoriesApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/hooks/useMemoriesApi.ts -------------------------------------------------------------------------------- /openmemory/ui/hooks/useMemoriesApiV3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/hooks/useMemoriesApiV3.ts -------------------------------------------------------------------------------- /openmemory/ui/hooks/useProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/hooks/useProfile.ts -------------------------------------------------------------------------------- /openmemory/ui/hooks/useStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/hooks/useStats.ts -------------------------------------------------------------------------------- /openmemory/ui/hooks/useUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/hooks/useUI.ts -------------------------------------------------------------------------------- /openmemory/ui/lib/apiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/lib/apiClient.ts -------------------------------------------------------------------------------- /openmemory/ui/lib/gemini.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/lib/gemini.ts -------------------------------------------------------------------------------- /openmemory/ui/lib/generated/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/lib/generated/docs.ts -------------------------------------------------------------------------------- /openmemory/ui/lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/lib/helpers.ts -------------------------------------------------------------------------------- /openmemory/ui/lib/memory-v3/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/lib/memory-v3/config.ts -------------------------------------------------------------------------------- /openmemory/ui/lib/memory-v3/embedding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/lib/memory-v3/embedding.ts -------------------------------------------------------------------------------- /openmemory/ui/lib/memory-v3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/lib/memory-v3/index.ts -------------------------------------------------------------------------------- /openmemory/ui/lib/memory-v3/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/lib/memory-v3/service.ts -------------------------------------------------------------------------------- /openmemory/ui/lib/memory-v3/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/lib/memory-v3/storage.ts -------------------------------------------------------------------------------- /openmemory/ui/lib/memory-v3/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/lib/memory-v3/types.ts -------------------------------------------------------------------------------- /openmemory/ui/lib/posthog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/lib/posthog.ts -------------------------------------------------------------------------------- /openmemory/ui/lib/sessionUtils.ts.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/lib/sessionUtils.ts.disabled -------------------------------------------------------------------------------- /openmemory/ui/lib/supabaseClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/lib/supabaseClient.ts -------------------------------------------------------------------------------- /openmemory/ui/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/lib/utils.ts -------------------------------------------------------------------------------- /openmemory/ui/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/next-env.d.ts -------------------------------------------------------------------------------- /openmemory/ui/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/next.config.mjs -------------------------------------------------------------------------------- /openmemory/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/package.json -------------------------------------------------------------------------------- /openmemory/ui/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/pnpm-lock.yaml -------------------------------------------------------------------------------- /openmemory/ui/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/postcss.config.mjs -------------------------------------------------------------------------------- /openmemory/ui/public/images/ChatGPT-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/ChatGPT-Logo.svg -------------------------------------------------------------------------------- /openmemory/ui/public/images/chorus.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/chorus.avif -------------------------------------------------------------------------------- /openmemory/ui/public/images/chorus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/chorus.jpg -------------------------------------------------------------------------------- /openmemory/ui/public/images/claude.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/claude.webp -------------------------------------------------------------------------------- /openmemory/ui/public/images/cline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/cline.png -------------------------------------------------------------------------------- /openmemory/ui/public/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/cursor.png -------------------------------------------------------------------------------- /openmemory/ui/public/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/default.png -------------------------------------------------------------------------------- /openmemory/ui/public/images/enconvo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/enconvo.png -------------------------------------------------------------------------------- /openmemory/ui/public/images/jean-bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/jean-bug.png -------------------------------------------------------------------------------- /openmemory/ui/public/images/jean-logo-full-bw-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/jean-logo-full-bw-transparent.png -------------------------------------------------------------------------------- /openmemory/ui/public/images/jean-logo-full-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/jean-logo-full-bw.png -------------------------------------------------------------------------------- /openmemory/ui/public/images/jean-white-theme-bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/jean-white-theme-bug.png -------------------------------------------------------------------------------- /openmemory/ui/public/images/jean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/jean.png -------------------------------------------------------------------------------- /openmemory/ui/public/images/notion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/notion.svg -------------------------------------------------------------------------------- /openmemory/ui/public/images/obsidian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/obsidian.svg -------------------------------------------------------------------------------- /openmemory/ui/public/images/open-memory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/open-memory.svg -------------------------------------------------------------------------------- /openmemory/ui/public/images/roocline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/roocline.png -------------------------------------------------------------------------------- /openmemory/ui/public/images/substack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/substack.png -------------------------------------------------------------------------------- /openmemory/ui/public/images/vscode.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openmemory/ui/public/images/vscode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/vscode.svg -------------------------------------------------------------------------------- /openmemory/ui/public/images/windsurf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/windsurf.png -------------------------------------------------------------------------------- /openmemory/ui/public/images/witsy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/witsy.png -------------------------------------------------------------------------------- /openmemory/ui/public/images/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/images/x.svg -------------------------------------------------------------------------------- /openmemory/ui/public/jean-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/jean-logo.png -------------------------------------------------------------------------------- /openmemory/ui/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/logo.svg -------------------------------------------------------------------------------- /openmemory/ui/public/oauth-bridge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/oauth-bridge.html -------------------------------------------------------------------------------- /openmemory/ui/public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/og-image.png -------------------------------------------------------------------------------- /openmemory/ui/public/placeholder-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/placeholder-logo.png -------------------------------------------------------------------------------- /openmemory/ui/public/placeholder-user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/placeholder-user.jpg -------------------------------------------------------------------------------- /openmemory/ui/public/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/placeholder.jpg -------------------------------------------------------------------------------- /openmemory/ui/public/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/public/placeholder.svg -------------------------------------------------------------------------------- /openmemory/ui/skeleton/AppCardSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/skeleton/AppCardSkeleton.tsx -------------------------------------------------------------------------------- /openmemory/ui/skeleton/AppDetailCardSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/skeleton/AppDetailCardSkeleton.tsx -------------------------------------------------------------------------------- /openmemory/ui/skeleton/AppFiltersSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/skeleton/AppFiltersSkeleton.tsx -------------------------------------------------------------------------------- /openmemory/ui/skeleton/MemoryCardSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/skeleton/MemoryCardSkeleton.tsx -------------------------------------------------------------------------------- /openmemory/ui/skeleton/MemorySkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/skeleton/MemorySkeleton.tsx -------------------------------------------------------------------------------- /openmemory/ui/skeleton/MemoryTableSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/skeleton/MemoryTableSkeleton.tsx -------------------------------------------------------------------------------- /openmemory/ui/store/appsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/store/appsSlice.ts -------------------------------------------------------------------------------- /openmemory/ui/store/filtersSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/store/filtersSlice.ts -------------------------------------------------------------------------------- /openmemory/ui/store/memoriesSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/store/memoriesSlice.ts -------------------------------------------------------------------------------- /openmemory/ui/store/profileSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/store/profileSlice.ts -------------------------------------------------------------------------------- /openmemory/ui/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/store/store.ts -------------------------------------------------------------------------------- /openmemory/ui/store/uiSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/store/uiSlice.ts -------------------------------------------------------------------------------- /openmemory/ui/styles/animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/styles/animation.css -------------------------------------------------------------------------------- /openmemory/ui/styles/notfound.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/styles/notfound.scss -------------------------------------------------------------------------------- /openmemory/ui/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/tailwind.config.ts -------------------------------------------------------------------------------- /openmemory/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/tsconfig.json -------------------------------------------------------------------------------- /openmemory/ui/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/openmemory/ui/tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/package.json -------------------------------------------------------------------------------- /render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/render.yaml -------------------------------------------------------------------------------- /scripts/README_SDK_DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/scripts/README_SDK_DEPLOYMENT.md -------------------------------------------------------------------------------- /scripts/clear_sqlalchemy_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/scripts/clear_sqlalchemy_cache.py -------------------------------------------------------------------------------- /scripts/create_consolidated_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/scripts/create_consolidated_docs.py -------------------------------------------------------------------------------- /scripts/create_local_api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/scripts/create_local_api_key.py -------------------------------------------------------------------------------- /scripts/deploy_all_sdks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/scripts/deploy_all_sdks.py -------------------------------------------------------------------------------- /scripts/utils/standalone_backfill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/scripts/utils/standalone_backfill.py -------------------------------------------------------------------------------- /scripts/validate_docs_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/scripts/validate_docs_consistency.py -------------------------------------------------------------------------------- /sdk/REACT_SDK_V1.11.0_CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/REACT_SDK_V1.11.0_CHANGES.md -------------------------------------------------------------------------------- /sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/README.md -------------------------------------------------------------------------------- /sdk/TEAM_COMMUNICATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/TEAM_COMMUNICATION_SUMMARY.md -------------------------------------------------------------------------------- /sdk/examples/python-chatbot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/examples/python-chatbot/main.py -------------------------------------------------------------------------------- /sdk/examples/react-advanced/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/examples/react-advanced/App.tsx -------------------------------------------------------------------------------- /sdk/examples/react-chatbot/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/examples/react-chatbot/App.tsx -------------------------------------------------------------------------------- /sdk/examples/ultimate-nextjs/pages/api/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/examples/ultimate-nextjs/pages/api/chat.ts -------------------------------------------------------------------------------- /sdk/examples/ultimate-nextjs/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/examples/ultimate-nextjs/pages/index.tsx -------------------------------------------------------------------------------- /sdk/examples/ultimate-react/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/examples/ultimate-react/App.tsx -------------------------------------------------------------------------------- /sdk/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/node/README.md -------------------------------------------------------------------------------- /sdk/node/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/node/jest.config.js -------------------------------------------------------------------------------- /sdk/node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/node/package-lock.json -------------------------------------------------------------------------------- /sdk/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/node/package.json -------------------------------------------------------------------------------- /sdk/node/src/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/node/src/auth.ts -------------------------------------------------------------------------------- /sdk/node/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/node/src/client.ts -------------------------------------------------------------------------------- /sdk/node/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/node/src/index.ts -------------------------------------------------------------------------------- /sdk/node/src/mcp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/node/src/mcp.ts -------------------------------------------------------------------------------- /sdk/node/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/node/src/test.ts -------------------------------------------------------------------------------- /sdk/node/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/node/src/types.ts -------------------------------------------------------------------------------- /sdk/node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/node/tsconfig.json -------------------------------------------------------------------------------- /sdk/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/python/README.md -------------------------------------------------------------------------------- /sdk/python/jeanmemory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/python/jeanmemory/__init__.py -------------------------------------------------------------------------------- /sdk/python/jeanmemory/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/python/jeanmemory/auth.py -------------------------------------------------------------------------------- /sdk/python/jeanmemory/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/python/jeanmemory/cli.py -------------------------------------------------------------------------------- /sdk/python/jeanmemory/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/python/jeanmemory/client.py -------------------------------------------------------------------------------- /sdk/python/jeanmemory/mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/python/jeanmemory/mcp.py -------------------------------------------------------------------------------- /sdk/python/jeanmemory/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/python/jeanmemory/models.py -------------------------------------------------------------------------------- /sdk/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/python/setup.py -------------------------------------------------------------------------------- /sdk/react/JeanAuthGuard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/react/JeanAuthGuard.tsx -------------------------------------------------------------------------------- /sdk/react/JeanChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/react/JeanChat.tsx -------------------------------------------------------------------------------- /sdk/react/JeanChatComplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/react/JeanChatComplete.tsx -------------------------------------------------------------------------------- /sdk/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/react/README.md -------------------------------------------------------------------------------- /sdk/react/SignInWithJean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/react/SignInWithJean.tsx -------------------------------------------------------------------------------- /sdk/react/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/react/config.ts -------------------------------------------------------------------------------- /sdk/react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/react/index.ts -------------------------------------------------------------------------------- /sdk/react/mcp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/react/mcp.ts -------------------------------------------------------------------------------- /sdk/react/oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/react/oauth.ts -------------------------------------------------------------------------------- /sdk/react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/react/package-lock.json -------------------------------------------------------------------------------- /sdk/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/react/package.json -------------------------------------------------------------------------------- /sdk/react/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/react/provider.tsx -------------------------------------------------------------------------------- /sdk/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/react/tsconfig.json -------------------------------------------------------------------------------- /sdk/react/useJeanMCP.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/react/useJeanMCP.tsx -------------------------------------------------------------------------------- /sdk/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/sdk/scripts/README.md -------------------------------------------------------------------------------- /test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/.gitignore -------------------------------------------------------------------------------- /test-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/README.md -------------------------------------------------------------------------------- /test-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/package-lock.json -------------------------------------------------------------------------------- /test-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/package.json -------------------------------------------------------------------------------- /test-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/public/favicon.ico -------------------------------------------------------------------------------- /test-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/public/index.html -------------------------------------------------------------------------------- /test-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/public/logo192.png -------------------------------------------------------------------------------- /test-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/public/logo512.png -------------------------------------------------------------------------------- /test-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/public/manifest.json -------------------------------------------------------------------------------- /test-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/public/robots.txt -------------------------------------------------------------------------------- /test-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/src/App.css -------------------------------------------------------------------------------- /test-app/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/src/App.test.tsx -------------------------------------------------------------------------------- /test-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/src/App.tsx -------------------------------------------------------------------------------- /test-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/src/index.css -------------------------------------------------------------------------------- /test-app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/src/index.tsx -------------------------------------------------------------------------------- /test-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/src/logo.svg -------------------------------------------------------------------------------- /test-app/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /test-app/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/src/reportWebVitals.ts -------------------------------------------------------------------------------- /test-app/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/src/setupTests.ts -------------------------------------------------------------------------------- /test-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jean-technologies/jean-memory/HEAD/test-app/tsconfig.json --------------------------------------------------------------------------------