omni-cortex 1.17.4__py3-none-any.whl → 1.17.6__py3-none-any.whl
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/_bundled/hooks/post_tool_use.py +2 -0
- omni_cortex/_bundled/hooks/pre_tool_use.py +2 -0
- omni_cortex/_bundled/hooks/stop.py +2 -0
- omni_cortex/_bundled/hooks/subagent_stop.py +2 -0
- omni_cortex/_bundled/hooks/user_prompt.py +4 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/hooks/post_tool_use.py +2 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/hooks/pre_tool_use.py +2 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/hooks/stop.py +2 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/hooks/subagent_stop.py +2 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/hooks/user_prompt.py +4 -0
- {omni_cortex-1.17.4.dist-info → omni_cortex-1.17.6.dist-info}/METADATA +1 -1
- {omni_cortex-1.17.4.dist-info → omni_cortex-1.17.6.dist-info}/RECORD +31 -31
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/dashboard/backend/.env.example +0 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/dashboard/backend/backfill_summaries.py +0 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/dashboard/backend/chat_service.py +0 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/dashboard/backend/database.py +0 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/dashboard/backend/image_service.py +0 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/dashboard/backend/logging_config.py +0 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/dashboard/backend/main.py +0 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/dashboard/backend/models.py +0 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/dashboard/backend/project_config.py +0 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/dashboard/backend/project_scanner.py +0 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/dashboard/backend/prompt_security.py +0 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/dashboard/backend/pyproject.toml +0 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/dashboard/backend/security.py +0 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/dashboard/backend/uv.lock +0 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/dashboard/backend/websocket_manager.py +0 -0
- {omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/hooks/session_utils.py +0 -0
- {omni_cortex-1.17.4.dist-info → omni_cortex-1.17.6.dist-info}/WHEEL +0 -0
- {omni_cortex-1.17.4.dist-info → omni_cortex-1.17.6.dist-info}/entry_points.txt +0 -0
- {omni_cortex-1.17.4.dist-info → omni_cortex-1.17.6.dist-info}/licenses/LICENSE +0 -0
|
@@ -148,6 +148,8 @@ def ensure_database(db_path: Path) -> sqlite3.Connection:
|
|
|
148
148
|
"""
|
|
149
149
|
db_path.parent.mkdir(parents=True, exist_ok=True)
|
|
150
150
|
conn = sqlite3.connect(str(db_path))
|
|
151
|
+
conn.execute("PRAGMA journal_mode = WAL")
|
|
152
|
+
conn.execute("PRAGMA busy_timeout = 5000")
|
|
151
153
|
|
|
152
154
|
# Check if schema exists
|
|
153
155
|
cursor = conn.cursor()
|
|
@@ -146,6 +146,8 @@ def ensure_database(db_path: Path) -> sqlite3.Connection:
|
|
|
146
146
|
"""
|
|
147
147
|
db_path.parent.mkdir(parents=True, exist_ok=True)
|
|
148
148
|
conn = sqlite3.connect(str(db_path))
|
|
149
|
+
conn.execute("PRAGMA journal_mode = WAL")
|
|
150
|
+
conn.execute("PRAGMA busy_timeout = 5000")
|
|
149
151
|
|
|
150
152
|
# Check if schema exists
|
|
151
153
|
cursor = conn.cursor()
|
|
@@ -100,6 +100,8 @@ def sync_to_global(
|
|
|
100
100
|
global_db_path.parent.mkdir(parents=True, exist_ok=True)
|
|
101
101
|
|
|
102
102
|
conn = sqlite3.connect(str(global_db_path))
|
|
103
|
+
conn.execute("PRAGMA journal_mode = WAL")
|
|
104
|
+
conn.execute("PRAGMA busy_timeout = 5000")
|
|
103
105
|
ensure_global_user_messages_table(conn)
|
|
104
106
|
|
|
105
107
|
cursor = conn.cursor()
|
|
@@ -141,6 +143,8 @@ def ensure_database(db_path: Path) -> sqlite3.Connection:
|
|
|
141
143
|
"""Ensure database exists and has user_messages table."""
|
|
142
144
|
db_path.parent.mkdir(parents=True, exist_ok=True)
|
|
143
145
|
conn = sqlite3.connect(str(db_path))
|
|
146
|
+
conn.execute("PRAGMA journal_mode = WAL")
|
|
147
|
+
conn.execute("PRAGMA busy_timeout = 5000")
|
|
144
148
|
|
|
145
149
|
# Check if user_messages table exists
|
|
146
150
|
cursor = conn.cursor()
|
{omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/hooks/post_tool_use.py
RENAMED
|
@@ -148,6 +148,8 @@ def ensure_database(db_path: Path) -> sqlite3.Connection:
|
|
|
148
148
|
"""
|
|
149
149
|
db_path.parent.mkdir(parents=True, exist_ok=True)
|
|
150
150
|
conn = sqlite3.connect(str(db_path))
|
|
151
|
+
conn.execute("PRAGMA journal_mode = WAL")
|
|
152
|
+
conn.execute("PRAGMA busy_timeout = 5000")
|
|
151
153
|
|
|
152
154
|
# Check if schema exists
|
|
153
155
|
cursor = conn.cursor()
|
{omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/hooks/pre_tool_use.py
RENAMED
|
@@ -146,6 +146,8 @@ def ensure_database(db_path: Path) -> sqlite3.Connection:
|
|
|
146
146
|
"""
|
|
147
147
|
db_path.parent.mkdir(parents=True, exist_ok=True)
|
|
148
148
|
conn = sqlite3.connect(str(db_path))
|
|
149
|
+
conn.execute("PRAGMA journal_mode = WAL")
|
|
150
|
+
conn.execute("PRAGMA busy_timeout = 5000")
|
|
149
151
|
|
|
150
152
|
# Check if schema exists
|
|
151
153
|
cursor = conn.cursor()
|
{omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/hooks/user_prompt.py
RENAMED
|
@@ -100,6 +100,8 @@ def sync_to_global(
|
|
|
100
100
|
global_db_path.parent.mkdir(parents=True, exist_ok=True)
|
|
101
101
|
|
|
102
102
|
conn = sqlite3.connect(str(global_db_path))
|
|
103
|
+
conn.execute("PRAGMA journal_mode = WAL")
|
|
104
|
+
conn.execute("PRAGMA busy_timeout = 5000")
|
|
103
105
|
ensure_global_user_messages_table(conn)
|
|
104
106
|
|
|
105
107
|
cursor = conn.cursor()
|
|
@@ -141,6 +143,8 @@ def ensure_database(db_path: Path) -> sqlite3.Connection:
|
|
|
141
143
|
"""Ensure database exists and has user_messages table."""
|
|
142
144
|
db_path.parent.mkdir(parents=True, exist_ok=True)
|
|
143
145
|
conn = sqlite3.connect(str(db_path))
|
|
146
|
+
conn.execute("PRAGMA journal_mode = WAL")
|
|
147
|
+
conn.execute("PRAGMA busy_timeout = 5000")
|
|
144
148
|
|
|
145
149
|
# Check if user_messages table exists
|
|
146
150
|
cursor = conn.cursor()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: omni-cortex
|
|
3
|
-
Version: 1.17.
|
|
3
|
+
Version: 1.17.6
|
|
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
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
omni_cortex/_bundled/hooks/post_tool_use.py,sha256=
|
|
2
|
-
omni_cortex/_bundled/hooks/pre_tool_use.py,sha256=
|
|
1
|
+
omni_cortex/_bundled/hooks/post_tool_use.py,sha256=nr9u8V0_NHsieWUcgRbSW7cQWczgP-mUtF9A4_RgZPw,16674
|
|
2
|
+
omni_cortex/_bundled/hooks/pre_tool_use.py,sha256=VUslRSY9S3hbXWShFcjXl5GfEcOwsSADvMHh0TE_7PQ,8678
|
|
3
3
|
omni_cortex/_bundled/hooks/session_utils.py,sha256=3SKPCytqWuRPOupWdzmwBoKBDJqtLcT1Nle_pueDQUY,5746
|
|
4
|
-
omni_cortex/_bundled/hooks/stop.py,sha256=
|
|
5
|
-
omni_cortex/_bundled/hooks/subagent_stop.py,sha256=
|
|
6
|
-
omni_cortex/_bundled/hooks/user_prompt.py,sha256=
|
|
4
|
+
omni_cortex/_bundled/hooks/stop.py,sha256=IZco1xWp8v02Kmb9RUzE0oM16HCcviL48GX0wKIxiRE,7077
|
|
5
|
+
omni_cortex/_bundled/hooks/subagent_stop.py,sha256=D2JPGhWlBjQNX5iDnRxP2saPKsVLoPVZUWVaIrK9G5w,3415
|
|
6
|
+
omni_cortex/_bundled/hooks/user_prompt.py,sha256=jBQkJHs6H6zYYsL-RHq2oQ3gyGf8gx7virQ8SE0rF_g,10911
|
|
7
7
|
omni_cortex/_bundled/dashboard/backend/.env.example,sha256=9xS7-UiWlMddRwzlyyyKNHAMlNTsgH-2sPV266guJpQ,372
|
|
8
8
|
omni_cortex/_bundled/dashboard/backend/backfill_summaries.py,sha256=ElchfcBv4pmVr2PsePCgFlCyuvf4_jDJj_C3AmMhu7U,8973
|
|
9
9
|
omni_cortex/_bundled/dashboard/backend/chat_service.py,sha256=iEDpAw8OVaHM2312VPcAM-w6dYabUpjaTvWl1jGhqi0,20948
|
|
@@ -25,29 +25,29 @@ omni_cortex/_bundled/dashboard/backend/websocket_manager.py,sha256=gNQLd94AcC-In
|
|
|
25
25
|
omni_cortex/_bundled/dashboard/frontend/dist/index.html,sha256=eN9-5y-KTvQ5BHs-Bh7fJO0WW5uh3unBHPLxzlKhc58,503
|
|
26
26
|
omni_cortex/_bundled/dashboard/frontend/dist/assets/index-CQlQK3nE.js,sha256=3vBwHNt62Xf9mO4REkQ1cXcQirRjLYEi8V6EbYZKi48,724613
|
|
27
27
|
omni_cortex/_bundled/dashboard/frontend/dist/assets/index-CmUNNfe4.css,sha256=_8e4zs4P6JHjtpr7K7jE90_X0c2TgvSOALngsQNlXDA,77476
|
|
28
|
-
omni_cortex-1.17.
|
|
29
|
-
omni_cortex-1.17.
|
|
30
|
-
omni_cortex-1.17.
|
|
31
|
-
omni_cortex-1.17.
|
|
32
|
-
omni_cortex-1.17.
|
|
33
|
-
omni_cortex-1.17.
|
|
34
|
-
omni_cortex-1.17.
|
|
35
|
-
omni_cortex-1.17.
|
|
36
|
-
omni_cortex-1.17.
|
|
37
|
-
omni_cortex-1.17.
|
|
38
|
-
omni_cortex-1.17.
|
|
39
|
-
omni_cortex-1.17.
|
|
40
|
-
omni_cortex-1.17.
|
|
41
|
-
omni_cortex-1.17.
|
|
42
|
-
omni_cortex-1.17.
|
|
43
|
-
omni_cortex-1.17.
|
|
44
|
-
omni_cortex-1.17.
|
|
45
|
-
omni_cortex-1.17.
|
|
46
|
-
omni_cortex-1.17.
|
|
47
|
-
omni_cortex-1.17.
|
|
48
|
-
omni_cortex-1.17.
|
|
49
|
-
omni_cortex-1.17.
|
|
50
|
-
omni_cortex-1.17.
|
|
51
|
-
omni_cortex-1.17.
|
|
52
|
-
omni_cortex-1.17.
|
|
53
|
-
omni_cortex-1.17.
|
|
28
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/hooks/post_tool_use.py,sha256=nr9u8V0_NHsieWUcgRbSW7cQWczgP-mUtF9A4_RgZPw,16674
|
|
29
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/hooks/pre_tool_use.py,sha256=VUslRSY9S3hbXWShFcjXl5GfEcOwsSADvMHh0TE_7PQ,8678
|
|
30
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/hooks/session_utils.py,sha256=3SKPCytqWuRPOupWdzmwBoKBDJqtLcT1Nle_pueDQUY,5746
|
|
31
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/hooks/stop.py,sha256=IZco1xWp8v02Kmb9RUzE0oM16HCcviL48GX0wKIxiRE,7077
|
|
32
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/hooks/subagent_stop.py,sha256=D2JPGhWlBjQNX5iDnRxP2saPKsVLoPVZUWVaIrK9G5w,3415
|
|
33
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/hooks/user_prompt.py,sha256=jBQkJHs6H6zYYsL-RHq2oQ3gyGf8gx7virQ8SE0rF_g,10911
|
|
34
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/dashboard/backend/.env.example,sha256=9xS7-UiWlMddRwzlyyyKNHAMlNTsgH-2sPV266guJpQ,372
|
|
35
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/dashboard/backend/backfill_summaries.py,sha256=ElchfcBv4pmVr2PsePCgFlCyuvf4_jDJj_C3AmMhu7U,8973
|
|
36
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/dashboard/backend/chat_service.py,sha256=iEDpAw8OVaHM2312VPcAM-w6dYabUpjaTvWl1jGhqi0,20948
|
|
37
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/dashboard/backend/database.py,sha256=byISCVgVziqFhJ8j8FC99ueTAoo-E0BJ6bk8KUvW3Mg,57610
|
|
38
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/dashboard/backend/image_service.py,sha256=NP6ojFpHb6iNTYRkXqYu1CL6WvooZpZ54mjLiWSWG_g,19205
|
|
39
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/dashboard/backend/logging_config.py,sha256=WnunFGET9zlsn9WBpVsio2zI7BiUQanE0xzAQQxIhII,3944
|
|
40
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/dashboard/backend/main.py,sha256=vfNQQOL-KEVg1NV-XTlweA3lQqRaQxaT2-lQx5Z4ZEs,67238
|
|
41
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/dashboard/backend/models.py,sha256=mP_szTXuVE4ZWHGubLeCt1-ltroO8OO0vrGC3IM6AJ0,13122
|
|
42
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/dashboard/backend/project_config.py,sha256=ZxGoeRpHvN5qQyf2hRxrAZiHrPSwdQp59f0di6O1LKM,4352
|
|
43
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/dashboard/backend/project_scanner.py,sha256=lwFXS8iJbOoxf7FAyo2TjH25neaMHiJ8B3jS57XxtDI,5713
|
|
44
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/dashboard/backend/prompt_security.py,sha256=LcdZhYy1CfpSq_4BPO6lMJ15phc2ZXLUSBAnAvODVCI,3423
|
|
45
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/dashboard/backend/pyproject.toml,sha256=9pbbGQXLe1Xd06nZAtDySCHIlfMWvPaB-C6tGZR6umc,502
|
|
46
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/dashboard/backend/security.py,sha256=nQsoPE0n5dtY9ive00d33W1gL48GgK7C5Ae0BK2oW2k,3479
|
|
47
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/dashboard/backend/uv.lock,sha256=miB9zGGSirBkjDE-OZTPCnv43Yc98xuAz_Ne8vTNFHg,186004
|
|
48
|
+
omni_cortex-1.17.6.data/data/share/omni-cortex/dashboard/backend/websocket_manager.py,sha256=gNQLd94AcC-InumGQmUolREhiogCzilYWpLN8SRZjHI,3645
|
|
49
|
+
omni_cortex-1.17.6.dist-info/METADATA,sha256=EPI71xkYhGjHlfz1uirSe5WbXeHzbZ8Am58up4dykBs,15962
|
|
50
|
+
omni_cortex-1.17.6.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
51
|
+
omni_cortex-1.17.6.dist-info/entry_points.txt,sha256=rohx4mFH2ffZmMb9QXPZmFf-ZGjA3jpKVDVeET-ttiM,150
|
|
52
|
+
omni_cortex-1.17.6.dist-info/licenses/LICENSE,sha256=oG_397owMmi-Umxp5sYocJ6RPohp9_bDNnnEu9OUphg,1072
|
|
53
|
+
omni_cortex-1.17.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/dashboard/backend/main.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/dashboard/backend/uv.lock
RENAMED
|
File without changes
|
|
File without changes
|
{omni_cortex-1.17.4.data → omni_cortex-1.17.6.data}/data/share/omni-cortex/hooks/session_utils.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|