omni-cortex 1.13.0__py3-none-any.whl → 1.14.0__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-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/dashboard/backend/chat_service.py +61 -2
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/dashboard/backend/main.py +4 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/dashboard/backend/models.py +4 -0
- {omni_cortex-1.13.0.dist-info → omni_cortex-1.14.0.dist-info}/METADATA +1 -1
- omni_cortex-1.14.0.dist-info/RECORD +26 -0
- omni_cortex-1.13.0.dist-info/RECORD +0 -26
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/dashboard/backend/.env.example +0 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/dashboard/backend/backfill_summaries.py +0 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/dashboard/backend/database.py +0 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/dashboard/backend/image_service.py +0 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/dashboard/backend/logging_config.py +0 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/dashboard/backend/project_config.py +0 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/dashboard/backend/project_scanner.py +0 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/dashboard/backend/prompt_security.py +0 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/dashboard/backend/pyproject.toml +0 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/dashboard/backend/security.py +0 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/dashboard/backend/uv.lock +0 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/dashboard/backend/websocket_manager.py +0 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/hooks/post_tool_use.py +0 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/hooks/pre_tool_use.py +0 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/hooks/session_utils.py +0 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/hooks/stop.py +0 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/hooks/subagent_stop.py +0 -0
- {omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/hooks/user_prompt.py +0 -0
- {omni_cortex-1.13.0.dist-info → omni_cortex-1.14.0.dist-info}/WHEEL +0 -0
- {omni_cortex-1.13.0.dist-info → omni_cortex-1.14.0.dist-info}/entry_points.txt +0 -0
- {omni_cortex-1.13.0.dist-info → omni_cortex-1.14.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -42,9 +42,13 @@ def is_available() -> bool:
|
|
|
42
42
|
return False
|
|
43
43
|
|
|
44
44
|
|
|
45
|
-
def build_style_context_prompt(style_profile: dict) -> str:
|
|
45
|
+
def build_style_context_prompt(style_profile: dict | None) -> str:
|
|
46
46
|
"""Build a prompt section describing user's communication style."""
|
|
47
47
|
|
|
48
|
+
# Return empty string if no style profile provided
|
|
49
|
+
if not style_profile:
|
|
50
|
+
return ""
|
|
51
|
+
|
|
48
52
|
# Handle both camelCase (new format) and snake_case (old format)
|
|
49
53
|
tone_dist = style_profile.get("toneDistribution") or style_profile.get("tone_distribution", {})
|
|
50
54
|
tone_list = ", ".join(tone_dist.keys()) if tone_dist else "neutral"
|
|
@@ -416,6 +420,8 @@ def build_compose_prompt(
|
|
|
416
420
|
template: Optional[str],
|
|
417
421
|
tone_level: int,
|
|
418
422
|
memory_context: str,
|
|
423
|
+
custom_instructions: Optional[str] = None,
|
|
424
|
+
include_explanation: bool = False,
|
|
419
425
|
) -> str:
|
|
420
426
|
"""Build the prompt for composing a response in user's style.
|
|
421
427
|
|
|
@@ -426,6 +432,8 @@ def build_compose_prompt(
|
|
|
426
432
|
template: Optional response template (answer, guide, redirect, acknowledge)
|
|
427
433
|
tone_level: Tone formality level (0-100)
|
|
428
434
|
memory_context: Relevant memories formatted as context
|
|
435
|
+
custom_instructions: Optional specific instructions from the user
|
|
436
|
+
include_explanation: Whether to explain the incoming message first
|
|
429
437
|
|
|
430
438
|
Returns:
|
|
431
439
|
Complete prompt for response generation
|
|
@@ -480,7 +488,37 @@ Use this information naturally in your response if relevant. Don't explicitly ci
|
|
|
480
488
|
|
|
481
489
|
"""
|
|
482
490
|
|
|
483
|
-
|
|
491
|
+
# Add custom instructions if provided
|
|
492
|
+
if custom_instructions:
|
|
493
|
+
prompt += f"""
|
|
494
|
+
## CUSTOM INSTRUCTIONS FROM USER
|
|
495
|
+
|
|
496
|
+
The user has provided these specific instructions for the response:
|
|
497
|
+
|
|
498
|
+
<custom_instructions>
|
|
499
|
+
{xml_escape(custom_instructions)}
|
|
500
|
+
</custom_instructions>
|
|
501
|
+
|
|
502
|
+
Please incorporate these requirements while maintaining the user's voice.
|
|
503
|
+
|
|
504
|
+
"""
|
|
505
|
+
|
|
506
|
+
# Build task instructions based on explanation mode
|
|
507
|
+
if include_explanation:
|
|
508
|
+
prompt += """
|
|
509
|
+
**Your Task:**
|
|
510
|
+
1. FIRST, provide a clear explanation of what the incoming message means or is asking
|
|
511
|
+
Format: "**Understanding:** [your explanation in user's voice]"
|
|
512
|
+
2. THEN, write a response to the incoming message in YOUR voice
|
|
513
|
+
Format: "**Response:** [your response]"
|
|
514
|
+
3. Use the knowledge from your memories naturally if relevant
|
|
515
|
+
4. Match the tone level specified above
|
|
516
|
+
5. Follow the platform context guidelines
|
|
517
|
+
6. Sound exactly like something you would write yourself
|
|
518
|
+
|
|
519
|
+
Write the explanation and response now:"""
|
|
520
|
+
else:
|
|
521
|
+
prompt += """
|
|
484
522
|
**Your Task:**
|
|
485
523
|
1. Write a response to the incoming message in YOUR voice (the user's voice)
|
|
486
524
|
2. Use the knowledge from your memories naturally if relevant
|
|
@@ -501,6 +539,8 @@ async def compose_response(
|
|
|
501
539
|
tone_level: int = 50,
|
|
502
540
|
include_memories: bool = True,
|
|
503
541
|
style_profile: Optional[dict] = None,
|
|
542
|
+
custom_instructions: Optional[str] = None,
|
|
543
|
+
include_explanation: bool = False,
|
|
504
544
|
) -> dict:
|
|
505
545
|
"""Compose a response to an incoming message in the user's style.
|
|
506
546
|
|
|
@@ -512,6 +552,8 @@ async def compose_response(
|
|
|
512
552
|
tone_level: Tone formality level (0-100)
|
|
513
553
|
include_memories: Whether to include relevant memories
|
|
514
554
|
style_profile: User's style profile dictionary
|
|
555
|
+
custom_instructions: Optional specific instructions from the user
|
|
556
|
+
include_explanation: Whether to explain the incoming message first
|
|
515
557
|
|
|
516
558
|
Returns:
|
|
517
559
|
Dict with response, sources, and metadata
|
|
@@ -550,6 +592,8 @@ async def compose_response(
|
|
|
550
592
|
template=template,
|
|
551
593
|
tone_level=tone_level,
|
|
552
594
|
memory_context=memory_context,
|
|
595
|
+
custom_instructions=custom_instructions,
|
|
596
|
+
include_explanation=include_explanation,
|
|
553
597
|
)
|
|
554
598
|
|
|
555
599
|
try:
|
|
@@ -563,10 +607,25 @@ async def compose_response(
|
|
|
563
607
|
"response": f"Failed to generate response: {str(e)}",
|
|
564
608
|
"sources": sources,
|
|
565
609
|
"error": "generation_failed",
|
|
610
|
+
"explanation": None,
|
|
566
611
|
}
|
|
567
612
|
|
|
613
|
+
# Parse explanation if requested
|
|
614
|
+
explanation = None
|
|
615
|
+
if include_explanation:
|
|
616
|
+
# Try to extract explanation and response parts
|
|
617
|
+
import re
|
|
618
|
+
understanding_match = re.search(r'\*\*Understanding:\*\*\s*(.+?)(?=\*\*Response:\*\*)', composed_response, re.DOTALL)
|
|
619
|
+
response_match = re.search(r'\*\*Response:\*\*\s*(.+)', composed_response, re.DOTALL)
|
|
620
|
+
|
|
621
|
+
if understanding_match and response_match:
|
|
622
|
+
explanation = understanding_match.group(1).strip()
|
|
623
|
+
composed_response = response_match.group(1).strip()
|
|
624
|
+
# If parsing fails, leave explanation as None and return full response
|
|
625
|
+
|
|
568
626
|
return {
|
|
569
627
|
"response": composed_response,
|
|
570
628
|
"sources": sources,
|
|
571
629
|
"error": None,
|
|
630
|
+
"explanation": explanation,
|
|
572
631
|
}
|
{omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/dashboard/backend/main.py
RENAMED
|
@@ -1146,6 +1146,8 @@ async def compose_response_endpoint(
|
|
|
1146
1146
|
tone_level=request.tone_level,
|
|
1147
1147
|
include_memories=request.include_memories,
|
|
1148
1148
|
style_profile=style_profile,
|
|
1149
|
+
custom_instructions=request.custom_instructions,
|
|
1150
|
+
include_explanation=request.include_explanation,
|
|
1149
1151
|
)
|
|
1150
1152
|
|
|
1151
1153
|
if result.get("error"):
|
|
@@ -1165,6 +1167,8 @@ async def compose_response_endpoint(
|
|
|
1165
1167
|
incoming_message=request.incoming_message,
|
|
1166
1168
|
context_type=request.context_type,
|
|
1167
1169
|
created_at=datetime.now().isoformat(),
|
|
1170
|
+
custom_instructions=request.custom_instructions,
|
|
1171
|
+
explanation=result.get("explanation"),
|
|
1168
1172
|
)
|
|
1169
1173
|
|
|
1170
1174
|
log_success("/api/compose-response", context=request.context_type, tone=request.tone_level)
|
|
@@ -384,6 +384,8 @@ class ComposeRequest(BaseModel):
|
|
|
384
384
|
template: Optional[str] = None # answer, guide, redirect, acknowledge
|
|
385
385
|
tone_level: int = Field(default=50, ge=0, le=100) # 0=casual, 100=professional
|
|
386
386
|
include_memories: bool = Field(default=True)
|
|
387
|
+
custom_instructions: Optional[str] = Field(default=None, max_length=2000)
|
|
388
|
+
include_explanation: bool = Field(default=False)
|
|
387
389
|
|
|
388
390
|
|
|
389
391
|
class ComposeResponse(BaseModel):
|
|
@@ -398,3 +400,5 @@ class ComposeResponse(BaseModel):
|
|
|
398
400
|
incoming_message: str
|
|
399
401
|
context_type: str
|
|
400
402
|
created_at: str
|
|
403
|
+
custom_instructions: Optional[str] = None
|
|
404
|
+
explanation: Optional[str] = None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: omni-cortex
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.14.0
|
|
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
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/hooks/post_tool_use.py,sha256=zdaKChi8zOghRlHswisCBSQE3kW1MtmM6AFfI_ivvpI,16581
|
|
2
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/hooks/pre_tool_use.py,sha256=3_V6Qw5m40eGrMmm5i94vINzeVxmcJvivdPa69H3AOI,8585
|
|
3
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/hooks/session_utils.py,sha256=3SKPCytqWuRPOupWdzmwBoKBDJqtLcT1Nle_pueDQUY,5746
|
|
4
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/hooks/stop.py,sha256=UroliJsyIS9_lj29-1d_r-80V4AfTMUFCaOjJZv3lwM,6976
|
|
5
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/hooks/subagent_stop.py,sha256=V9HQSFGNOfkg8ZCstPEy4h5V8BP4AbrVr8teFzN1kNk,3314
|
|
6
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/hooks/user_prompt.py,sha256=WNHJvhnkb9rXQ_HDpr6eLpM5vwy1Y1xl1EUoqyNC-x8,6859
|
|
7
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/dashboard/backend/.env.example,sha256=9xS7-UiWlMddRwzlyyyKNHAMlNTsgH-2sPV266guJpQ,372
|
|
8
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/dashboard/backend/backfill_summaries.py,sha256=ElchfcBv4pmVr2PsePCgFlCyuvf4_jDJj_C3AmMhu7U,8973
|
|
9
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/dashboard/backend/chat_service.py,sha256=iEDpAw8OVaHM2312VPcAM-w6dYabUpjaTvWl1jGhqi0,20948
|
|
10
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/dashboard/backend/database.py,sha256=_sWqLjx_mWOxqNpfbv-bChtPfQkHzUNzly1pGu_zPKI,54199
|
|
11
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/dashboard/backend/image_service.py,sha256=NP6ojFpHb6iNTYRkXqYu1CL6WvooZpZ54mjLiWSWG_g,19205
|
|
12
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/dashboard/backend/logging_config.py,sha256=WnunFGET9zlsn9WBpVsio2zI7BiUQanE0xzAQQxIhII,3944
|
|
13
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/dashboard/backend/main.py,sha256=d6DW-UMCCHgEIX9kPQPgsxKKstKY8MXJmSMhQ7vPeHc,59602
|
|
14
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/dashboard/backend/models.py,sha256=q2dV8OxziqXbwtq-xo9Hv4RwSz_0xGgnDjX5-_lBnv4,11383
|
|
15
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/dashboard/backend/project_config.py,sha256=ZxGoeRpHvN5qQyf2hRxrAZiHrPSwdQp59f0di6O1LKM,4352
|
|
16
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/dashboard/backend/project_scanner.py,sha256=lwFXS8iJbOoxf7FAyo2TjH25neaMHiJ8B3jS57XxtDI,5713
|
|
17
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/dashboard/backend/prompt_security.py,sha256=LcdZhYy1CfpSq_4BPO6lMJ15phc2ZXLUSBAnAvODVCI,3423
|
|
18
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/dashboard/backend/pyproject.toml,sha256=9pbbGQXLe1Xd06nZAtDySCHIlfMWvPaB-C6tGZR6umc,502
|
|
19
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/dashboard/backend/security.py,sha256=nQsoPE0n5dtY9ive00d33W1gL48GgK7C5Ae0BK2oW2k,3479
|
|
20
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/dashboard/backend/uv.lock,sha256=miB9zGGSirBkjDE-OZTPCnv43Yc98xuAz_Ne8vTNFHg,186004
|
|
21
|
+
omni_cortex-1.14.0.data/data/share/omni-cortex/dashboard/backend/websocket_manager.py,sha256=gNQLd94AcC-InumGQmUolREhiogCzilYWpLN8SRZjHI,3645
|
|
22
|
+
omni_cortex-1.14.0.dist-info/METADATA,sha256=eCAIYv9Dc5Zol89ZVQOFMr7zbIMgzpXV0TQRyVwuoNU,15712
|
|
23
|
+
omni_cortex-1.14.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
24
|
+
omni_cortex-1.14.0.dist-info/entry_points.txt,sha256=rohx4mFH2ffZmMb9QXPZmFf-ZGjA3jpKVDVeET-ttiM,150
|
|
25
|
+
omni_cortex-1.14.0.dist-info/licenses/LICENSE,sha256=oG_397owMmi-Umxp5sYocJ6RPohp9_bDNnnEu9OUphg,1072
|
|
26
|
+
omni_cortex-1.14.0.dist-info/RECORD,,
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/hooks/post_tool_use.py,sha256=zdaKChi8zOghRlHswisCBSQE3kW1MtmM6AFfI_ivvpI,16581
|
|
2
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/hooks/pre_tool_use.py,sha256=3_V6Qw5m40eGrMmm5i94vINzeVxmcJvivdPa69H3AOI,8585
|
|
3
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/hooks/session_utils.py,sha256=3SKPCytqWuRPOupWdzmwBoKBDJqtLcT1Nle_pueDQUY,5746
|
|
4
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/hooks/stop.py,sha256=UroliJsyIS9_lj29-1d_r-80V4AfTMUFCaOjJZv3lwM,6976
|
|
5
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/hooks/subagent_stop.py,sha256=V9HQSFGNOfkg8ZCstPEy4h5V8BP4AbrVr8teFzN1kNk,3314
|
|
6
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/hooks/user_prompt.py,sha256=WNHJvhnkb9rXQ_HDpr6eLpM5vwy1Y1xl1EUoqyNC-x8,6859
|
|
7
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/dashboard/backend/.env.example,sha256=9xS7-UiWlMddRwzlyyyKNHAMlNTsgH-2sPV266guJpQ,372
|
|
8
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/dashboard/backend/backfill_summaries.py,sha256=ElchfcBv4pmVr2PsePCgFlCyuvf4_jDJj_C3AmMhu7U,8973
|
|
9
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/dashboard/backend/chat_service.py,sha256=QGNxVX-9bJw4kot6mPieGD2QIbmzvPYSGDGOpv3p_-Y,18567
|
|
10
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/dashboard/backend/database.py,sha256=_sWqLjx_mWOxqNpfbv-bChtPfQkHzUNzly1pGu_zPKI,54199
|
|
11
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/dashboard/backend/image_service.py,sha256=NP6ojFpHb6iNTYRkXqYu1CL6WvooZpZ54mjLiWSWG_g,19205
|
|
12
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/dashboard/backend/logging_config.py,sha256=WnunFGET9zlsn9WBpVsio2zI7BiUQanE0xzAQQxIhII,3944
|
|
13
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/dashboard/backend/main.py,sha256=-GwRioHjuUaMiP1gNuyqzs6LUxvIgOUHyirCcfQ6pRs,59364
|
|
14
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/dashboard/backend/models.py,sha256=_gQoBaavttuRgLIvhCQsZ0zmuON6aKWbAFhdB1YFVbM,11164
|
|
15
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/dashboard/backend/project_config.py,sha256=ZxGoeRpHvN5qQyf2hRxrAZiHrPSwdQp59f0di6O1LKM,4352
|
|
16
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/dashboard/backend/project_scanner.py,sha256=lwFXS8iJbOoxf7FAyo2TjH25neaMHiJ8B3jS57XxtDI,5713
|
|
17
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/dashboard/backend/prompt_security.py,sha256=LcdZhYy1CfpSq_4BPO6lMJ15phc2ZXLUSBAnAvODVCI,3423
|
|
18
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/dashboard/backend/pyproject.toml,sha256=9pbbGQXLe1Xd06nZAtDySCHIlfMWvPaB-C6tGZR6umc,502
|
|
19
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/dashboard/backend/security.py,sha256=nQsoPE0n5dtY9ive00d33W1gL48GgK7C5Ae0BK2oW2k,3479
|
|
20
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/dashboard/backend/uv.lock,sha256=miB9zGGSirBkjDE-OZTPCnv43Yc98xuAz_Ne8vTNFHg,186004
|
|
21
|
-
omni_cortex-1.13.0.data/data/share/omni-cortex/dashboard/backend/websocket_manager.py,sha256=gNQLd94AcC-InumGQmUolREhiogCzilYWpLN8SRZjHI,3645
|
|
22
|
-
omni_cortex-1.13.0.dist-info/METADATA,sha256=N9ZCvUc2F0jnkuXvtXl1ISgDipNbwvtsMHritpaSDVo,15712
|
|
23
|
-
omni_cortex-1.13.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
24
|
-
omni_cortex-1.13.0.dist-info/entry_points.txt,sha256=rohx4mFH2ffZmMb9QXPZmFf-ZGjA3jpKVDVeET-ttiM,150
|
|
25
|
-
omni_cortex-1.13.0.dist-info/licenses/LICENSE,sha256=oG_397owMmi-Umxp5sYocJ6RPohp9_bDNnnEu9OUphg,1072
|
|
26
|
-
omni_cortex-1.13.0.dist-info/RECORD,,
|
|
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
|
{omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/dashboard/backend/uv.lock
RENAMED
|
File without changes
|
|
File without changes
|
{omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/hooks/post_tool_use.py
RENAMED
|
File without changes
|
{omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/hooks/pre_tool_use.py
RENAMED
|
File without changes
|
{omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/hooks/session_utils.py
RENAMED
|
File without changes
|
|
File without changes
|
{omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/hooks/subagent_stop.py
RENAMED
|
File without changes
|
{omni_cortex-1.13.0.data → omni_cortex-1.14.0.data}/data/share/omni-cortex/hooks/user_prompt.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|