.dockerignore
.env.example
.flake8
.gitignore
.pre-commit-config.yaml
CHANGELOG.md
CONTRIBUTING.md
Dockerfile
LICENSE
MANIFEST.in
README.md
SECURITY.md
glama.json
mypy.ini
pyproject.toml
requirements.txt
server.json
setup.py
smithery.yaml
.github/pull_request_template.md
.github/ISSUE_TEMPLATE/beta_feedback.md
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/config.yml
.github/ISSUE_TEMPLATE/feature_request.md
.github/ISSUE_TEMPLATE/mcp_integration.md
.github/ISSUE_TEMPLATE/question.md
.github/workflows/benchmark.yml
.github/workflows/ci.yml
benchmarks/.env.example
benchmarks/prefeval_official_v2.py
benchmarks/run_all_4_benchmarks_fixed.py
benchmarks/run_lamp2_full.py
benchmarks/run_longmemeval_multisession.py
benchmarks/run_msc_full.py
benchmarks/run_msc_local_fixed.py
benchmarks/run_official_full_scale.py
benchmarks/LaMP/lamp_adapter.py
benchmarks/LaMP/setup_lamp_official.sh
benchmarks/LaMP/test_lamp_10percent.py
benchmarks/LoCoMo/test_locomo_10percent.py
benchmarks/MSC/download_msc_from_hf.py
benchmarks/MSC/download_msc_mirror.sh
benchmarks/MSC/download_msc_parlai.py
benchmarks/dataset/en.json
benchmarks/dataset/ja.json
benchmarks/dataset/zh.json
bin/carrymem
docs/API_REFERENCE.md
docs/API_STABILITY.md
docs/ARCHITECTURE.md
docs/COMPREHENSIVE_BENCHMARK_REPORT.md
docs/CONSENSUS_INTEGRATION_PLAN.md
docs/DEPENDENCY_AUDIT.md
docs/ENTRY_POINTS.md
docs/EXTERNAL_MEMORY_BENCHMARKS.md
docs/INSTALL.md
docs/MATURITY_REPORT_v0.4.0.md
docs/MODULE_BOUNDARIES.md
docs/MSC_BENCHMARK_GUIDE.md
docs/OBSIDIAN_ADAPTER.md
docs/QUICK_START_GUIDE.md
docs/README.md
docs/ROADMAP.md
docs/RULES_USER_MANUAL.md
docs/TECH_DEBT_IMPROVEMENT_PLAN_v0.5.0.md
docs/TROUBLESHOOTING.md
docs/USER_GUIDE.md
docs/generate_docs.py
docs/architecture/decisions/ADR-001-mixin-facade.md
docs/architecture/decisions/ADR-002-sqlite-default-storage.md
docs/architecture/decisions/ADR-003-dual-backend-encryption.md
docs/architecture/decisions/ADR-004-protocol-interface-design.md
docs/architecture/decisions/ADR-005-plugin-system-mvp.md
docs/i18n/API_REFERENCE-CN.md
docs/i18n/API_REFERENCE-JP.md
docs/i18n/API_STABILITY-CN.md
docs/i18n/API_STABILITY-JP.md
docs/i18n/ARCHITECTURE-CN.md
docs/i18n/ARCHITECTURE-JP.md
docs/i18n/INSTALL-CN.md
docs/i18n/INSTALL-JP.md
docs/i18n/INSTALL-KO.md
docs/i18n/INSTALL-ZH-TW.md
docs/i18n/QUICK_START_GUIDE-CN.md
docs/i18n/QUICK_START_GUIDE-JP.md
docs/i18n/README-CN.md
docs/i18n/README-JP.md
docs/i18n/README-KO.md
docs/i18n/README-ZH-TW.md
docs/i18n/ROADMAP-CN.md
docs/i18n/ROADMAP-JP.md
docs/i18n/ROADMAP-KO.md
docs/i18n/ROADMAP-ZH-TW.md
docs/i18n/RULES_USER_MANUAL-CN.md
docs/i18n/RULES_USER_MANUAL-JP.md
docs/i18n/TROUBLESHOOTING-CN.md
docs/i18n/TROUBLESHOOTING-JP.md
docs/i18n/USER_GUIDE-CN.md
docs/i18n/USER_GUIDE-JP.md
examples/api_usage/basic_usage.py
examples/api_usage/thread_safe_usage.py
examples/simple_assistant/README.md
examples/simple_assistant/assistant.py
extensions/vscode-carrymem/.gitignore
extensions/vscode-carrymem/.vscodeignore
extensions/vscode-carrymem/package-lock.json
extensions/vscode-carrymem/package.json
extensions/vscode-carrymem/tsconfig.json
extensions/vscode-carrymem/resources/icon.svg
extensions/vscode-carrymem/src/carrymemClient.ts
extensions/vscode-carrymem/src/extension.ts
extensions/vscode-carrymem/src/ruleEditorPanel.ts
extensions/vscode-carrymem/src/ruleTreeProvider.ts
integrations/claude_code/mcp.json
integrations/cursor/mcp.json
scripts/analyze_dependencies.py
scripts/ci_local_check.py
scripts/install.sh
src/carrymem/__init__.py
src/carrymem/__main__.py
src/carrymem/__version__.py
src/carrymem/api_types.py
src/carrymem/async_carrymem.py
src/carrymem/backup.py
src/carrymem/cache.py
src/carrymem/carrymem.py
src/carrymem/cli.py
src/carrymem/conflict_detector.py
src/carrymem/consolidation.py
src/carrymem/constants.py
src/carrymem/context.py
src/carrymem/coreference.py
src/carrymem/domain.py
src/carrymem/engine.py
src/carrymem/error_messages.py
src/carrymem/errors.py
src/carrymem/exceptions.py
src/carrymem/format.py
src/carrymem/merge.py
src/carrymem/prompt.py
src/carrymem/prompt_builder.py
src/carrymem/py.typed
src/carrymem/quality_scorer.py
src/carrymem/scope.py
src/carrymem/scoring.py
src/carrymem/selection.py
src/carrymem/tui.py
src/carrymem/types.py
src/carrymem.egg-info/PKG-INFO
src/carrymem.egg-info/SOURCES.txt
src/carrymem.egg-info/dependency_links.txt
src/carrymem.egg-info/entry_points.txt
src/carrymem.egg-info/requires.txt
src/carrymem.egg-info/top_level.txt
src/carrymem/adapters/__init__.py
src/carrymem/adapters/base.py
src/carrymem/adapters/coding_context_adapter.py
src/carrymem/adapters/json_adapter.py
src/carrymem/adapters/loader.py
src/carrymem/adapters/obsidian_adapter.py
src/carrymem/adapters/sqlite_adapter.py
src/carrymem/adapters/sqlite/__init__.py
src/carrymem/adapters/sqlite/connection.py
src/carrymem/adapters/sqlite/crud.py
src/carrymem/adapters/sqlite/query_builder.py
src/carrymem/adapters/sqlite/recall_engine.py
src/carrymem/adapters/sqlite/schema.py
src/carrymem/adapters/sqlite/security.py
src/carrymem/adapters/sqlite/serializer.py
src/carrymem/adapters/sqlite/stats.py
src/carrymem/adapters/sqlite/supersede.py
src/carrymem/adapters/sqlite/versioning.py
src/carrymem/cli/__init__.py
src/carrymem/cli/_backup.py
src/carrymem/cli/_base.py
src/carrymem/cli/_io.py
src/carrymem/cli/_mcp.py
src/carrymem/cli/_memory.py
src/carrymem/cli/_rules.py
src/carrymem/cli/_stats.py
src/carrymem/coordinators/__init__.py
src/carrymem/coordinators/classification_pipeline.py
src/carrymem/core/__init__.py
src/carrymem/core/_backup.py
src/carrymem/core/_classification.py
src/carrymem/core/_lifecycle.py
src/carrymem/core/_maintenance.py
src/carrymem/core/_memory_crud.py
src/carrymem/core/_profile_export.py
src/carrymem/core/_prompt_delegate.py
src/carrymem/core/_protocols.py
src/carrymem/core/_recall.py
src/carrymem/i18n/__init__.py
src/carrymem/i18n/en.py
src/carrymem/i18n/zh_CN.py
src/carrymem/integration/__init__.py
src/carrymem/integration/devsquad/__init__.py
src/carrymem/integration/devsquad/adapter.py
src/carrymem/integration/devsquad/protocol.py
src/carrymem/integration/devsquad/type_mapping.py
src/carrymem/integration/layer2_mcp/__init__.py
src/carrymem/integration/layer2_mcp/__main__.py
src/carrymem/integration/layer2_mcp/handlers.py
src/carrymem/integration/layer2_mcp/http_server.py
src/carrymem/integration/layer2_mcp/server.py
src/carrymem/integration/layer2_mcp/tools.py
src/carrymem/layers/__init__.py
src/carrymem/layers/pattern_analyzer.py
src/carrymem/layers/rule_matcher.py
src/carrymem/layers/semantic_aggregator.py
src/carrymem/layers/semantic_classifier.py
src/carrymem/layers/session_summarizer.py
src/carrymem/llm/__init__.py
src/carrymem/monitoring/__init__.py
src/carrymem/patterns/__init__.py
src/carrymem/patterns/base.py
src/carrymem/patterns/builder.py
src/carrymem/patterns/definitions.py
src/carrymem/patterns/definitions_correction.py
src/carrymem/patterns/definitions_decision.py
src/carrymem/patterns/definitions_fact.py
src/carrymem/patterns/definitions_location.py
src/carrymem/patterns/definitions_noise.py
src/carrymem/patterns/definitions_preference.py
src/carrymem/patterns/definitions_relationship.py
src/carrymem/patterns/definitions_sentiment.py
src/carrymem/patterns/definitions_task.py
src/carrymem/patterns/group.py
src/carrymem/patterns/registry.py
src/carrymem/plugins/__init__.py
src/carrymem/plugins/example_notification_plugin.py
src/carrymem/rules/__init__.py
src/carrymem/rules/candidate_generator.py
src/carrymem/rules/candidate_rule_generator.py
src/carrymem/rules/conflict_detector.py
src/carrymem/rules/experience_bridge.py
src/carrymem/rules/failure_experience.py
src/carrymem/rules/injector.py
src/carrymem/rules/limiter.py
src/carrymem/rules/matcher.py
src/carrymem/rules/merge_protocol.py
src/carrymem/rules/models.py
src/carrymem/rules/pattern_detector.py
src/carrymem/rules/promotion_pipeline.py
src/carrymem/rules/refinement_session.py
src/carrymem/rules/rule_refiner.py
src/carrymem/rules/sanitizer.py
src/carrymem/rules/skill.py
src/carrymem/rules/storage.py
src/carrymem/rules/templates.py
src/carrymem/security/__init__.py
src/carrymem/security/audit.py
src/carrymem/security/encryption.py
src/carrymem/security/input_validator.py
src/carrymem/security/permissions.py
src/carrymem/security/redaction.py
src/carrymem/semantic/__init__.py
src/carrymem/semantic/expander.py
src/carrymem/semantic/merger.py
src/carrymem/semantic/data/__init__.py
src/carrymem/semantic/data/synonyms_daily_en.yaml
src/carrymem/semantic/data/synonyms_jp.yaml
src/carrymem/semantic/data/synonyms_technical_cn.yaml
src/carrymem/utils/__init__.py
src/carrymem/utils/config.py
src/carrymem/utils/confirmation.py
src/carrymem/utils/entry_point_helpers.py
src/carrymem/utils/helpers.py
src/carrymem/utils/language.py
src/carrymem/utils/logger.py
src/carrymem/utils/logging_config.py
src/carrymem/utils/validators.py
tests/test_adapter_standardization.py
tests/test_async_carrymem.py
tests/test_audit.py
tests/test_audit_log_enhanced.py
tests/test_backup.py
tests/test_backup_encryption.py
tests/test_base_adapter.py
tests/test_cache.py
tests/test_carrymem.py
tests/test_carrymem_extended.py
tests/test_carrymem_full.py
tests/test_carrymem_integration.py
tests/test_classification_pipeline.py
tests/test_cli_comprehensive.py
tests/test_cli_deep.py
tests/test_cli_enhanced.py
tests/test_cli_extended.py
tests/test_cli_pack_unpack.py
tests/test_cli_rules.py
tests/test_coding_context_adapter.py
tests/test_concurrent_access.py
tests/test_conflict_detector_core.py
tests/test_conflict_detector_full.py
tests/test_consolidation.py
tests/test_consolidation_extra.py
tests/test_consolidation_schedule.py
tests/test_context.py
tests/test_context_and_scoring.py
tests/test_context_selection.py
tests/test_core_protocols.py
tests/test_coreference.py
tests/test_devsquad_adapter.py
tests/test_domain.py
tests/test_e2e_adapter_switching.py
tests/test_e2e_concurrent_access.py
tests/test_e2e_edge_cases.py
tests/test_e2e_encryption_full_chain.py
tests/test_e2e_experience_refinement.py
tests/test_e2e_full_lifecycle.py
tests/test_e2e_large_dataset.py
tests/test_e2e_mcp_tools.py
tests/test_e2e_security_pipeline.py
tests/test_e2e_user_journey.py
tests/test_e2e_user_scenarios.py
tests/test_e2e_version_rollback.py
tests/test_encryption.py
tests/test_encryption_backup_audit.py
tests/test_entry_point_consistency.py
tests/test_environment.py
tests/test_error_codes.py
tests/test_exception_narrowing.py
tests/test_execution_context.py
tests/test_facade_enhancements.py
tests/test_format_prompt.py
tests/test_handlers.py
tests/test_helpers.py
tests/test_i18n.py
tests/test_injection_strategies.py
tests/test_input_validation_enhanced.py
tests/test_input_validator.py
tests/test_integration.py
tests/test_integration_adapter_engine_storage.py
tests/test_integration_error_propagation.py
tests/test_integration_mixin_collaboration.py
tests/test_json_adapter_extra.py
tests/test_layers.py
tests/test_logging_standardization.py
tests/test_mce_recall.py
tests/test_mcp_json_async.py
tests/test_mcp_server.py
tests/test_memory_optimization.py
tests/test_monitoring.py
tests/test_mutation_scenarios.py
tests/test_mutation_testing.py
tests/test_obsidian_adapter.py
tests/test_p0_core_loop.py
tests/test_p1_features.py
tests/test_pattern_system.py
tests/test_performance_benchmark.py
tests/test_permissions_mvp.py
tests/test_phase4.py
tests/test_plugin_system.py
tests/test_prompt_builder.py
tests/test_prompt_builder_extra.py
tests/test_quality_management.py
tests/test_quality_scorer.py
tests/test_raw_text.py
tests/test_redaction.py
tests/test_remaining_features.py
tests/test_scope_inference.py
tests/test_scoring.py
tests/test_security_crypto_upgrade.py
tests/test_security_extended.py
tests/test_selection_mmr.py
tests/test_sqlite_adapter_ext.py
tests/test_sqlite_connection_pool.py
tests/test_tui.py
tests/test_type_annotations.py
tests/test_validators.py
tests/test_vector_search.py
tests/test_version_chain.py
tests/core/__init__.py
tests/core/test_classification.py
tests/core/test_lifecycle.py
tests/core/test_maintenance.py
tests/core/test_memory_crud.py
tests/core/test_profile_export.py
tests/core/test_prompt_delegate.py
tests/core/test_recall.py
tests/e2e/test_security.py
tests/integration/test_monitoring_endpoints.py
tests/test_rules/__init__.py
tests/test_rules/test_conflict_detector.py
tests/test_rules/test_context_engineering.py
tests/test_rules/test_coverage.py
tests/test_rules/test_experience_learning.py
tests/test_rules/test_export_import.py
tests/test_rules/test_facade.py
tests/test_rules/test_installation.py
tests/test_rules/test_matcher.py
tests/test_rules/test_models.py
tests/test_rules/test_pattern_detector.py
tests/test_rules/test_performance.py
tests/test_rules/test_promotion_pipeline.py
tests/test_rules/test_refinement.py
tests/test_rules/test_scope_features.py
tests/test_rules/test_scope_integration.py
tests/test_rules/test_scope_performance.py
tests/test_rules/test_scope_uat.py
tests/test_rules/test_security.py
tests/test_rules/test_storage.py
tests/test_rules/test_templates.py