omni-cortex 1.11.0__tar.gz → 1.11.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/PKG-INFO +1 -1
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/dashboard/backend/main.py +6 -6
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/__init__.py +1 -1
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/pyproject.toml +1 -1
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/.gitignore +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/LICENSE +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/README.md +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/dashboard/backend/.env.example +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/dashboard/backend/backfill_summaries.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/dashboard/backend/chat_service.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/dashboard/backend/database.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/dashboard/backend/image_service.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/dashboard/backend/logging_config.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/dashboard/backend/models.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/dashboard/backend/project_config.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/dashboard/backend/project_scanner.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/dashboard/backend/prompt_security.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/dashboard/backend/pyproject.toml +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/dashboard/backend/security.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/dashboard/backend/uv.lock +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/dashboard/backend/websocket_manager.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/hooks/post_tool_use.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/hooks/pre_tool_use.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/hooks/session_utils.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/hooks/stop.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/hooks/subagent_stop.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/categorization/__init__.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/categorization/auto_tags.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/categorization/auto_type.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/config.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/dashboard.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/database/__init__.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/database/connection.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/database/migrations.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/database/schema.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/database/sync.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/decay/__init__.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/decay/importance.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/embeddings/__init__.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/embeddings/local.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/models/__init__.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/models/activity.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/models/agent.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/models/memory.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/models/relationship.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/models/session.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/resources/__init__.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/search/__init__.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/search/hybrid.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/search/keyword.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/search/ranking.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/search/semantic.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/server.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/setup.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/tools/__init__.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/tools/activities.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/tools/memories.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/tools/sessions.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/tools/utilities.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/utils/__init__.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/utils/formatting.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/utils/ids.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/utils/timestamps.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/omni_cortex/utils/truncation.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/scripts/check-venv.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/scripts/import_ken_memories.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/scripts/populate_session_data.py +0 -0
- {omni_cortex-1.11.0 → omni_cortex-1.11.1}/scripts/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: omni-cortex
|
|
3
|
-
Version: 1.11.
|
|
3
|
+
Version: 1.11.1
|
|
4
4
|
Summary: Give Claude Code a perfect memory - auto-logs everything, searches smartly, and gets smarter over time
|
|
5
5
|
Project-URL: Homepage, https://github.com/AllCytes/Omni-Cortex
|
|
6
6
|
Project-URL: Repository, https://github.com/AllCytes/Omni-Cortex
|
|
@@ -413,20 +413,20 @@ async def get_aggregate_stats(request: AggregateStatsRequest):
|
|
|
413
413
|
|
|
414
414
|
try:
|
|
415
415
|
stats = get_memory_stats(project_path)
|
|
416
|
-
total_count += stats.
|
|
417
|
-
total_access += stats.
|
|
416
|
+
total_count += stats.total_count
|
|
417
|
+
total_access += stats.total_access_count
|
|
418
418
|
|
|
419
419
|
# Weighted average for importance
|
|
420
|
-
project_count = stats.
|
|
421
|
-
project_avg_importance = stats.
|
|
420
|
+
project_count = stats.total_count
|
|
421
|
+
project_avg_importance = stats.avg_importance
|
|
422
422
|
importance_sum += project_avg_importance * project_count
|
|
423
423
|
|
|
424
424
|
# Aggregate by_type
|
|
425
|
-
for type_name, count in stats.
|
|
425
|
+
for type_name, count in stats.by_type.items():
|
|
426
426
|
by_type[type_name] = by_type.get(type_name, 0) + count
|
|
427
427
|
|
|
428
428
|
# Aggregate by_status
|
|
429
|
-
for status, count in stats.
|
|
429
|
+
for status, count in stats.by_status.items():
|
|
430
430
|
by_status[status] = by_status.get(status, 0) + count
|
|
431
431
|
except Exception as e:
|
|
432
432
|
log_error(f"/api/aggregate/stats (project: {project_path})", e)
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "omni-cortex"
|
|
7
|
-
version = "1.11.
|
|
7
|
+
version = "1.11.1"
|
|
8
8
|
description = "Give Claude Code a perfect memory - auto-logs everything, searches smartly, and gets smarter over time"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|