.gitignore
.pre-commit-config.yaml
CHANGELOG.md
CONTRIBUTING.md
LICENSE
MANIFEST.in
README.md
mypy.ini
pyproject.toml
requirements.txt
setup.py
.github/pull_request_template.md
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/config.yml
.github/ISSUE_TEMPLATE/feature_request.md
.github/ISSUE_TEMPLATE/question.md
.github/workflows/ci.yml
benchmarks/baseline_benchmark.py
benchmarks/check_regression.py
benchmarks/classification_accuracy.py
benchmarks/concurrency_benchmark.py
benchmarks/leaderboard.py
benchmarks/memory_leak_test.py
benchmarks/performance_benchmark.py
benchmarks/run_benchmark.py
benchmarks/stress_test.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/BENCHMARK_RECOMMENDATIONS.md
docs/EXTERNAL_MEMORY_BENCHMARKS.md
docs/INSTALL.md
docs/QUICK_START_GUIDE.md
docs/README.md
docs/ROADMAP.md
docs/RULES_USER_MANUAL.md
docs/TROUBLESHOOTING.md
docs/USER_GUIDE.md
docs/archive/internal/AI Agent长期记忆系统市场格局_ima脑图.jpeg
docs/archive/internal/CARRYMEM_CODE_REVIEW_REPORT.md
docs/archive/internal/CODE_QUALITY_IMPROVEMENT_PLAN.md
docs/archive/internal/EXCEPTION_HANDLING_AUDIT.md
docs/archive/internal/FINAL_DELIVERY_SUMMARY.md
docs/archive/internal/FULL_FIX_SUMMARY.md
docs/archive/internal/IMPROVEMENT_PROGRESS_TRACKER.md
docs/archive/internal/P3_COMPLETION_REPORT.md
docs/archive/internal/PRODUCT_VISION_ASSESSMENT.md
docs/archive/internal/TECH_DEBT_MEMO_v0.1.5.md
docs/archive/internal/TRIDIMENSIONAL_CODE_REVIEW.md
docs/archive/review/DEEP_AUDIT_REPORT.md
docs/archive/review/PROJECT_MISSION_ASSESSMENT.md
docs/archive/review/TROUBLESHOOTING_OPTIMIZATION_PLAN.md
docs/archive/review/USER_EXPERIENCE_REVIEW.md
docs/archive/review/USER_EXPERIENCE_REVIEW_UPDATE.md
docs/archive/review/UX_REMEDIATION_PLAN.md
docs/archive/review/devsquad_integration_response.md
docs/archive/review/devsquad_integration_review.md
docs/archive/review/devsquad_review_report.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/QUICK_START_GUIDE-CN.md
docs/i18n/QUICK_START_GUIDE-JP.md
docs/i18n/README-CN.md
docs/i18n/README-JP.md
docs/i18n/ROADMAP-CN.md
docs/i18n/ROADMAP-JP.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/ci_local_check.py
scripts/install.sh
src/carrymem/__init__.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/memory_classification_engine/__init__.py
src/memory_classification_engine/__main__.py
src/memory_classification_engine/__version__.py
src/memory_classification_engine/api_types.py
src/memory_classification_engine/async_carrymem.py
src/memory_classification_engine/backup.py
src/memory_classification_engine/cache.py
src/memory_classification_engine/carrymem.py
src/memory_classification_engine/cli.py
src/memory_classification_engine/conflict_detector.py
src/memory_classification_engine/constants.py
src/memory_classification_engine/context.py
src/memory_classification_engine/engine.py
src/memory_classification_engine/exceptions.py
src/memory_classification_engine/merge.py
src/memory_classification_engine/py.typed
src/memory_classification_engine/quality_scorer.py
src/memory_classification_engine/scoring.py
src/memory_classification_engine/tui.py
src/memory_classification_engine/adapters/__init__.py
src/memory_classification_engine/adapters/base.py
src/memory_classification_engine/adapters/json_adapter.py
src/memory_classification_engine/adapters/loader.py
src/memory_classification_engine/adapters/obsidian_adapter.py
src/memory_classification_engine/adapters/sqlite_adapter.py
src/memory_classification_engine/coordinators/__init__.py
src/memory_classification_engine/coordinators/classification_pipeline.py
src/memory_classification_engine/integration/__init__.py
src/memory_classification_engine/integration/devsquad/__init__.py
src/memory_classification_engine/integration/devsquad/adapter.py
src/memory_classification_engine/integration/devsquad/protocol.py
src/memory_classification_engine/integration/devsquad/type_mapping.py
src/memory_classification_engine/integration/layer2_mcp/__init__.py
src/memory_classification_engine/integration/layer2_mcp/__main__.py
src/memory_classification_engine/integration/layer2_mcp/handlers.py
src/memory_classification_engine/integration/layer2_mcp/http_server.py
src/memory_classification_engine/integration/layer2_mcp/server.py
src/memory_classification_engine/integration/layer2_mcp/tools.py
src/memory_classification_engine/layers/__init__.py
src/memory_classification_engine/layers/pattern_analyzer.py
src/memory_classification_engine/layers/rule_matcher.py
src/memory_classification_engine/layers/semantic_classifier.py
src/memory_classification_engine/rules/__init__.py
src/memory_classification_engine/rules/candidate_rule_generator.py
src/memory_classification_engine/rules/conflict_detector.py
src/memory_classification_engine/rules/experience_bridge.py
src/memory_classification_engine/rules/failure_experience.py
src/memory_classification_engine/rules/injector.py
src/memory_classification_engine/rules/limiter.py
src/memory_classification_engine/rules/matcher.py
src/memory_classification_engine/rules/merge_protocol.py
src/memory_classification_engine/rules/models.py
src/memory_classification_engine/rules/pattern_detector.py
src/memory_classification_engine/rules/promotion_pipeline.py
src/memory_classification_engine/rules/refinement_session.py
src/memory_classification_engine/rules/rule_refiner.py
src/memory_classification_engine/rules/sanitizer.py
src/memory_classification_engine/rules/skill.py
src/memory_classification_engine/rules/storage.py
src/memory_classification_engine/rules/templates.py
src/memory_classification_engine/security/__init__.py
src/memory_classification_engine/security/audit.py
src/memory_classification_engine/security/encryption.py
src/memory_classification_engine/security/input_validator.py
src/memory_classification_engine/semantic/__init__.py
src/memory_classification_engine/semantic/expander.py
src/memory_classification_engine/semantic/merger.py
src/memory_classification_engine/semantic/data/__init__.py
src/memory_classification_engine/semantic/data/synonyms_daily_en.yaml
src/memory_classification_engine/semantic/data/synonyms_jp.yaml
src/memory_classification_engine/semantic/data/synonyms_technical_cn.yaml
src/memory_classification_engine/utils/__init__.py
src/memory_classification_engine/utils/config.py
src/memory_classification_engine/utils/confirmation.py
src/memory_classification_engine/utils/helpers.py
src/memory_classification_engine/utils/language.py
src/memory_classification_engine/utils/logger.py
src/memory_classification_engine/utils/validators.py
tests/test_async_carrymem.py
tests/test_audit.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_cli_comprehensive.py
tests/test_cli_deep.py
tests/test_cli_enhanced.py
tests/test_cli_extended.py
tests/test_cli_rules.py
tests/test_conflict_detector_core.py
tests/test_conflict_detector_full.py
tests/test_context.py
tests/test_context_and_scoring.py
tests/test_devsquad_adapter.py
tests/test_encryption.py
tests/test_encryption_backup_audit.py
tests/test_environment.py
tests/test_execution_context.py
tests/test_handlers.py
tests/test_helpers.py
tests/test_input_validator.py
tests/test_integration.py
tests/test_mce_recall.py
tests/test_mcp_json_async.py
tests/test_mcp_server.py
tests/test_obsidian_adapter.py
tests/test_p0_core_loop.py
tests/test_p1_features.py
tests/test_quality_management.py
tests/test_quality_scorer.py
tests/test_remaining_features.py
tests/test_scoring.py
tests/test_security.py
tests/test_sqlite_adapter_ext.py
tests/test_validators.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