empathy-framework 3.5.6__py3-none-any.whl → 3.7.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.
- agents/compliance_anticipation_agent.py +113 -118
- agents/compliance_db.py +339 -0
- agents/epic_integration_wizard.py +37 -48
- agents/notifications.py +291 -0
- agents/trust_building_behaviors.py +66 -85
- coach_wizards/__init__.py +11 -12
- coach_wizards/accessibility_wizard.py +12 -12
- coach_wizards/api_wizard.py +12 -12
- coach_wizards/base_wizard.py +26 -20
- coach_wizards/cicd_wizard.py +15 -13
- coach_wizards/compliance_wizard.py +12 -12
- coach_wizards/database_wizard.py +12 -12
- coach_wizards/debugging_wizard.py +12 -12
- coach_wizards/documentation_wizard.py +12 -12
- coach_wizards/generate_wizards.py +1 -2
- coach_wizards/localization_wizard.py +21 -14
- coach_wizards/migration_wizard.py +12 -12
- coach_wizards/monitoring_wizard.py +12 -12
- coach_wizards/observability_wizard.py +12 -12
- coach_wizards/performance_wizard.py +12 -12
- coach_wizards/prompt_engineering_wizard.py +22 -25
- coach_wizards/refactoring_wizard.py +12 -12
- coach_wizards/scaling_wizard.py +12 -12
- coach_wizards/security_wizard.py +12 -12
- coach_wizards/testing_wizard.py +12 -12
- {empathy_framework-3.5.6.dist-info → empathy_framework-3.7.0.dist-info}/METADATA +234 -30
- empathy_framework-3.7.0.dist-info/RECORD +105 -0
- empathy_healthcare_plugin/__init__.py +1 -2
- empathy_llm_toolkit/__init__.py +5 -6
- empathy_llm_toolkit/claude_memory.py +14 -15
- empathy_llm_toolkit/code_health.py +27 -19
- empathy_llm_toolkit/contextual_patterns.py +11 -12
- empathy_llm_toolkit/core.py +43 -49
- empathy_llm_toolkit/git_pattern_extractor.py +16 -12
- empathy_llm_toolkit/levels.py +6 -13
- empathy_llm_toolkit/pattern_confidence.py +14 -18
- empathy_llm_toolkit/pattern_resolver.py +10 -12
- empathy_llm_toolkit/pattern_summary.py +13 -11
- empathy_llm_toolkit/providers.py +27 -38
- empathy_llm_toolkit/session_status.py +18 -20
- empathy_llm_toolkit/state.py +20 -21
- empathy_os/__init__.py +72 -73
- empathy_os/cli.py +193 -98
- empathy_os/cli_unified.py +68 -41
- empathy_os/config.py +31 -31
- empathy_os/coordination.py +48 -54
- empathy_os/core.py +90 -99
- empathy_os/cost_tracker.py +20 -23
- empathy_os/discovery.py +9 -11
- empathy_os/emergence.py +20 -21
- empathy_os/exceptions.py +18 -30
- empathy_os/feedback_loops.py +27 -30
- empathy_os/levels.py +31 -34
- empathy_os/leverage_points.py +27 -28
- empathy_os/logging_config.py +11 -12
- empathy_os/monitoring.py +27 -27
- empathy_os/pattern_library.py +29 -28
- empathy_os/persistence.py +30 -34
- empathy_os/platform_utils.py +46 -47
- empathy_os/redis_config.py +14 -15
- empathy_os/redis_memory.py +53 -56
- empathy_os/templates.py +12 -11
- empathy_os/trust_building.py +44 -36
- empathy_os/workflow_commands.py +123 -31
- empathy_software_plugin/__init__.py +1 -2
- empathy_software_plugin/cli.py +32 -25
- empathy_software_plugin/plugin.py +4 -8
- empathy_framework-3.5.6.dist-info/RECORD +0 -103
- {empathy_framework-3.5.6.dist-info → empathy_framework-3.7.0.dist-info}/WHEEL +0 -0
- {empathy_framework-3.5.6.dist-info → empathy_framework-3.7.0.dist-info}/entry_points.txt +0 -0
- {empathy_framework-3.5.6.dist-info → empathy_framework-3.7.0.dist-info}/licenses/LICENSE +0 -0
- {empathy_framework-3.5.6.dist-info → empathy_framework-3.7.0.dist-info}/top_level.txt +0 -0
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
"""
|
|
2
|
-
Session Status Assistant
|
|
1
|
+
"""Session Status Assistant
|
|
3
2
|
|
|
4
3
|
Proactive briefing system that greets developers when they return to an
|
|
5
4
|
Empathy-enhanced project, providing a prioritized status report with
|
|
@@ -93,8 +92,7 @@ class SessionStatus:
|
|
|
93
92
|
|
|
94
93
|
|
|
95
94
|
class SessionStatusCollector:
|
|
96
|
-
"""
|
|
97
|
-
Aggregates project status from all data sources.
|
|
95
|
+
"""Aggregates project status from all data sources.
|
|
98
96
|
|
|
99
97
|
Scans patterns directories, roadmap docs, and git history
|
|
100
98
|
to build a prioritized status report for developers.
|
|
@@ -119,8 +117,7 @@ class SessionStatusCollector:
|
|
|
119
117
|
self._state: dict[str, Any] | None = None
|
|
120
118
|
|
|
121
119
|
def should_show(self) -> bool:
|
|
122
|
-
"""
|
|
123
|
-
Check if status should be shown based on inactivity.
|
|
120
|
+
"""Check if status should be shown based on inactivity.
|
|
124
121
|
|
|
125
122
|
Returns True if:
|
|
126
123
|
- First interaction after inactivity_minutes of no activity
|
|
@@ -164,11 +161,11 @@ class SessionStatusCollector:
|
|
|
164
161
|
logger.debug("Recorded interaction at %s", state["last_interaction"])
|
|
165
162
|
|
|
166
163
|
def collect(self) -> SessionStatus:
|
|
167
|
-
"""
|
|
168
|
-
Collect and prioritize status items from all data sources.
|
|
164
|
+
"""Collect and prioritize status items from all data sources.
|
|
169
165
|
|
|
170
166
|
Returns:
|
|
171
167
|
SessionStatus with prioritized items and wins
|
|
168
|
+
|
|
172
169
|
"""
|
|
173
170
|
status = SessionStatus()
|
|
174
171
|
|
|
@@ -224,7 +221,7 @@ class SessionStatusCollector:
|
|
|
224
221
|
action_prompt=f"Review security finding: {finding}. "
|
|
225
222
|
f"Provide analysis and recommend: ACCEPTED, DEFERRED, or FALSE_POSITIVE.",
|
|
226
223
|
details={"pending_count": pending_count, "items": pending_items[:3]},
|
|
227
|
-
)
|
|
224
|
+
),
|
|
228
225
|
)
|
|
229
226
|
|
|
230
227
|
def _collect_bug_items(self, status: SessionStatus) -> None:
|
|
@@ -267,7 +264,7 @@ class SessionStatusCollector:
|
|
|
267
264
|
f"{first_bug.get('error_message', 'No description')}. "
|
|
268
265
|
f"File: {first_bug.get('file_path', 'unknown')}",
|
|
269
266
|
details={"count": len(high_severity), "bugs": high_severity[:3]},
|
|
270
|
-
)
|
|
267
|
+
),
|
|
271
268
|
)
|
|
272
269
|
|
|
273
270
|
# Add investigating bugs (P2)
|
|
@@ -285,7 +282,7 @@ class SessionStatusCollector:
|
|
|
285
282
|
f"Use: empathy patterns resolve {first_bug.get('bug_id', '')} "
|
|
286
283
|
f"--root-cause '<cause>' --fix '<fix>'",
|
|
287
284
|
details={"count": len(investigating), "bugs": investigating[:5]},
|
|
288
|
-
)
|
|
285
|
+
),
|
|
289
286
|
)
|
|
290
287
|
|
|
291
288
|
def _collect_tech_debt_items(self, status: SessionStatus) -> None:
|
|
@@ -336,7 +333,7 @@ class SessionStatusCollector:
|
|
|
336
333
|
"change": change,
|
|
337
334
|
"hotspots": current.get("hotspots", [])[:3],
|
|
338
335
|
},
|
|
339
|
-
)
|
|
336
|
+
),
|
|
340
337
|
)
|
|
341
338
|
elif change < 0:
|
|
342
339
|
# Tech debt decreasing - this is a win
|
|
@@ -364,7 +361,7 @@ class SessionStatusCollector:
|
|
|
364
361
|
{
|
|
365
362
|
"task": task.strip(),
|
|
366
363
|
"file": plan_file.name,
|
|
367
|
-
}
|
|
364
|
+
},
|
|
368
365
|
)
|
|
369
366
|
except OSError as e:
|
|
370
367
|
logger.warning("Failed to read plan file %s: %s", plan_file, e)
|
|
@@ -381,7 +378,7 @@ class SessionStatusCollector:
|
|
|
381
378
|
action_prompt=f"Continue roadmap item from {first_task['file']}: "
|
|
382
379
|
f"{first_task['task']}",
|
|
383
380
|
details={"count": len(unchecked_tasks), "tasks": unchecked_tasks[:5]},
|
|
384
|
-
)
|
|
381
|
+
),
|
|
385
382
|
)
|
|
386
383
|
|
|
387
384
|
def _collect_git_items(self, status: SessionStatus) -> None:
|
|
@@ -389,6 +386,7 @@ class SessionStatusCollector:
|
|
|
389
386
|
try:
|
|
390
387
|
result = subprocess.run(
|
|
391
388
|
["git", "log", "-10", "--format=%h|%s", "--since=7.days"],
|
|
389
|
+
check=False,
|
|
392
390
|
capture_output=True,
|
|
393
391
|
text=True,
|
|
394
392
|
timeout=5,
|
|
@@ -413,7 +411,7 @@ class SessionStatusCollector:
|
|
|
413
411
|
{
|
|
414
412
|
"hash": commit_hash,
|
|
415
413
|
"message": message,
|
|
416
|
-
}
|
|
414
|
+
},
|
|
417
415
|
)
|
|
418
416
|
|
|
419
417
|
if wip_commits:
|
|
@@ -429,7 +427,7 @@ class SessionStatusCollector:
|
|
|
429
427
|
f"{first_commit['message']}. "
|
|
430
428
|
"This commit may need follow-up work.",
|
|
431
429
|
details={"count": len(wip_commits), "commits": wip_commits[:5]},
|
|
432
|
-
)
|
|
430
|
+
),
|
|
433
431
|
)
|
|
434
432
|
|
|
435
433
|
except Exception as e:
|
|
@@ -540,8 +538,7 @@ class SessionStatusCollector:
|
|
|
540
538
|
status: SessionStatus,
|
|
541
539
|
max_items: int | None = None,
|
|
542
540
|
) -> str:
|
|
543
|
-
"""
|
|
544
|
-
Format status for terminal output.
|
|
541
|
+
"""Format status for terminal output.
|
|
545
542
|
|
|
546
543
|
Args:
|
|
547
544
|
status: The SessionStatus to format
|
|
@@ -549,6 +546,7 @@ class SessionStatusCollector:
|
|
|
549
546
|
|
|
550
547
|
Returns:
|
|
551
548
|
Formatted markdown string
|
|
549
|
+
|
|
552
550
|
"""
|
|
553
551
|
max_items = max_items or self.config["max_display_items"]
|
|
554
552
|
sorted_items = status.get_sorted_items()
|
|
@@ -616,8 +614,7 @@ class SessionStatusCollector:
|
|
|
616
614
|
return json.dumps(data, indent=2, default=str)
|
|
617
615
|
|
|
618
616
|
def get_action_prompt(self, status: SessionStatus, selection: int) -> str | None:
|
|
619
|
-
"""
|
|
620
|
-
Get the action prompt for a selected item.
|
|
617
|
+
"""Get the action prompt for a selected item.
|
|
621
618
|
|
|
622
619
|
Args:
|
|
623
620
|
status: The SessionStatus
|
|
@@ -625,6 +622,7 @@ class SessionStatusCollector:
|
|
|
625
622
|
|
|
626
623
|
Returns:
|
|
627
624
|
Action prompt string, or None if invalid selection
|
|
625
|
+
|
|
628
626
|
"""
|
|
629
627
|
sorted_items = status.get_sorted_items()
|
|
630
628
|
|
empathy_llm_toolkit/state.py
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
"""
|
|
2
|
-
Collaboration State Management
|
|
1
|
+
"""Collaboration State Management
|
|
3
2
|
|
|
4
3
|
Tracks AI-human collaboration over time to enable Level 3+ empathy.
|
|
5
4
|
|
|
@@ -24,8 +23,7 @@ class PatternType(Enum):
|
|
|
24
23
|
|
|
25
24
|
@dataclass
|
|
26
25
|
class UserPattern:
|
|
27
|
-
"""
|
|
28
|
-
A detected pattern in user behavior.
|
|
26
|
+
"""A detected pattern in user behavior.
|
|
29
27
|
|
|
30
28
|
Enables Level 3 (Proactive) empathy.
|
|
31
29
|
"""
|
|
@@ -39,8 +37,7 @@ class UserPattern:
|
|
|
39
37
|
context: dict[str, Any] = field(default_factory=dict)
|
|
40
38
|
|
|
41
39
|
def should_act(self, trust_level: float) -> bool:
|
|
42
|
-
"""
|
|
43
|
-
Determine if we should act proactively on this pattern.
|
|
40
|
+
"""Determine if we should act proactively on this pattern.
|
|
44
41
|
|
|
45
42
|
Requires both high confidence and sufficient trust.
|
|
46
43
|
"""
|
|
@@ -60,8 +57,7 @@ class Interaction:
|
|
|
60
57
|
|
|
61
58
|
@dataclass
|
|
62
59
|
class CollaborationState:
|
|
63
|
-
"""
|
|
64
|
-
Tracks AI-human collaboration state over time.
|
|
60
|
+
"""Tracks AI-human collaboration state over time.
|
|
65
61
|
|
|
66
62
|
This is the foundation for Level 2+ empathy:
|
|
67
63
|
- Level 2: Uses conversation history for context
|
|
@@ -104,7 +100,11 @@ class CollaborationState:
|
|
|
104
100
|
return self.successful_actions / total
|
|
105
101
|
|
|
106
102
|
def add_interaction(
|
|
107
|
-
self,
|
|
103
|
+
self,
|
|
104
|
+
role: str,
|
|
105
|
+
content: str,
|
|
106
|
+
empathy_level: int,
|
|
107
|
+
metadata: dict | None = None,
|
|
108
108
|
):
|
|
109
109
|
"""Add interaction to history"""
|
|
110
110
|
self.interactions.append(
|
|
@@ -114,7 +114,7 @@ class CollaborationState:
|
|
|
114
114
|
content=content,
|
|
115
115
|
empathy_level=empathy_level,
|
|
116
116
|
metadata=metadata or {},
|
|
117
|
-
)
|
|
117
|
+
),
|
|
118
118
|
)
|
|
119
119
|
|
|
120
120
|
# Track level history
|
|
@@ -122,12 +122,12 @@ class CollaborationState:
|
|
|
122
122
|
self.level_history.append(empathy_level)
|
|
123
123
|
|
|
124
124
|
def update_trust(self, outcome: str, magnitude: float = 1.0):
|
|
125
|
-
"""
|
|
126
|
-
Update trust level based on action outcome.
|
|
125
|
+
"""Update trust level based on action outcome.
|
|
127
126
|
|
|
128
127
|
Args:
|
|
129
128
|
outcome: "success" or "failure"
|
|
130
129
|
magnitude: How much to adjust (0.0 to 1.0)
|
|
130
|
+
|
|
131
131
|
"""
|
|
132
132
|
if outcome == "success":
|
|
133
133
|
adjustment = 0.05 * magnitude
|
|
@@ -159,8 +159,7 @@ class CollaborationState:
|
|
|
159
159
|
self.detected_patterns.append(pattern)
|
|
160
160
|
|
|
161
161
|
def find_matching_pattern(self, trigger_text: str) -> UserPattern | None:
|
|
162
|
-
"""
|
|
163
|
-
Find pattern that matches current input.
|
|
162
|
+
"""Find pattern that matches current input.
|
|
164
163
|
|
|
165
164
|
Returns pattern with highest confidence if found.
|
|
166
165
|
"""
|
|
@@ -177,10 +176,11 @@ class CollaborationState:
|
|
|
177
176
|
return None
|
|
178
177
|
|
|
179
178
|
def get_conversation_history(
|
|
180
|
-
self,
|
|
179
|
+
self,
|
|
180
|
+
max_turns: int = 10,
|
|
181
|
+
include_metadata: bool = False,
|
|
181
182
|
) -> list[dict[str, Any]]:
|
|
182
|
-
"""
|
|
183
|
-
Get recent conversation history in LLM format.
|
|
183
|
+
"""Get recent conversation history in LLM format.
|
|
184
184
|
|
|
185
185
|
Args:
|
|
186
186
|
max_turns: Maximum number of turns to include
|
|
@@ -188,17 +188,16 @@ class CollaborationState:
|
|
|
188
188
|
|
|
189
189
|
Returns:
|
|
190
190
|
List of {"role": "user/assistant", "content": "..."}
|
|
191
|
+
|
|
191
192
|
"""
|
|
192
193
|
recent = self.interactions[-max_turns:] if max_turns else self.interactions
|
|
193
194
|
|
|
194
195
|
if include_metadata:
|
|
195
196
|
return [{"role": i.role, "content": i.content, "metadata": i.metadata} for i in recent]
|
|
196
|
-
|
|
197
|
-
return [{"role": i.role, "content": i.content} for i in recent]
|
|
197
|
+
return [{"role": i.role, "content": i.content} for i in recent]
|
|
198
198
|
|
|
199
199
|
def should_progress_to_level(self, level: int) -> bool:
|
|
200
|
-
"""
|
|
201
|
-
Determine if system should progress to higher empathy level.
|
|
200
|
+
"""Determine if system should progress to higher empathy level.
|
|
202
201
|
|
|
203
202
|
Progression criteria:
|
|
204
203
|
- Level 2: Immediate (guided questions always helpful)
|
empathy_os/__init__.py
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
"""
|
|
2
|
-
Empathy Framework - AI-Human Collaboration Library
|
|
1
|
+
"""Empathy Framework - AI-Human Collaboration Library
|
|
3
2
|
|
|
4
3
|
A five-level maturity model for building AI systems that progress from
|
|
5
4
|
reactive responses to anticipatory problem prevention.
|
|
@@ -132,94 +131,94 @@ from .persistence import MetricsCollector, PatternPersistence, StateManager
|
|
|
132
131
|
from .trust_building import TrustBuildingBehaviors
|
|
133
132
|
|
|
134
133
|
__all__ = [
|
|
134
|
+
"AccessTier",
|
|
135
|
+
"AgentCoordinator",
|
|
136
|
+
"AgentCredentials",
|
|
137
|
+
"AgentMetrics",
|
|
138
|
+
# Monitoring (Multi-Agent)
|
|
139
|
+
"AgentMonitor",
|
|
140
|
+
"AgentTask",
|
|
141
|
+
"AuditEvent",
|
|
142
|
+
# Security - Audit
|
|
143
|
+
"AuditLogger",
|
|
144
|
+
"Classification",
|
|
145
|
+
"ClassificationRules",
|
|
146
|
+
# Claude Memory
|
|
147
|
+
"ClaudeMemoryConfig",
|
|
148
|
+
"ClaudeMemoryLoader",
|
|
149
|
+
"CollaborationStateError",
|
|
150
|
+
"ConfidenceThresholdError",
|
|
151
|
+
"ConflictContext",
|
|
152
|
+
# Coordination (Multi-Agent)
|
|
153
|
+
"ConflictResolver",
|
|
154
|
+
"EmergenceDetector",
|
|
155
|
+
# Configuration
|
|
156
|
+
"EmpathyConfig",
|
|
157
|
+
# Exceptions
|
|
158
|
+
"EmpathyFrameworkError",
|
|
159
|
+
"EmpathyLevelError",
|
|
135
160
|
"EmpathyOS",
|
|
136
|
-
|
|
137
|
-
"UnifiedMemory",
|
|
138
|
-
"MemoryConfig",
|
|
161
|
+
"EncryptionManager",
|
|
139
162
|
"Environment",
|
|
163
|
+
"FeedbackLoopDetector",
|
|
164
|
+
"FeedbackLoopError",
|
|
140
165
|
"Level1Reactive",
|
|
141
166
|
"Level2Guided",
|
|
142
167
|
"Level3Proactive",
|
|
143
168
|
"Level4Anticipatory",
|
|
144
169
|
"Level5Systems",
|
|
145
|
-
"FeedbackLoopDetector",
|
|
146
170
|
"LeveragePointAnalyzer",
|
|
147
|
-
"
|
|
171
|
+
"LeveragePointError",
|
|
172
|
+
"LoggingConfig",
|
|
173
|
+
"MemDocsStorage",
|
|
174
|
+
"MemoryConfig",
|
|
175
|
+
"MemoryPermissionError",
|
|
176
|
+
"MetricsCollector",
|
|
177
|
+
"PIIDetection",
|
|
178
|
+
"PIIPattern",
|
|
179
|
+
# Security - PII
|
|
180
|
+
"PIIScrubber",
|
|
181
|
+
"Pattern",
|
|
148
182
|
# Pattern Library
|
|
149
183
|
"PatternLibrary",
|
|
150
|
-
"Pattern",
|
|
151
184
|
"PatternMatch",
|
|
152
|
-
|
|
153
|
-
"
|
|
154
|
-
"ResolutionResult",
|
|
155
|
-
"ResolutionStrategy",
|
|
156
|
-
"TeamPriorities",
|
|
157
|
-
"AgentCoordinator",
|
|
158
|
-
"AgentTask",
|
|
159
|
-
"TeamSession",
|
|
160
|
-
# Monitoring (Multi-Agent)
|
|
161
|
-
"AgentMonitor",
|
|
162
|
-
"AgentMetrics",
|
|
163
|
-
"TeamMetrics",
|
|
164
|
-
# Redis Short-Term Memory
|
|
165
|
-
"RedisShortTermMemory",
|
|
166
|
-
"AccessTier",
|
|
167
|
-
"AgentCredentials",
|
|
168
|
-
"StagedPattern",
|
|
169
|
-
"ConflictContext",
|
|
170
|
-
"TTLStrategy",
|
|
171
|
-
# Redis Configuration
|
|
172
|
-
"get_redis_memory",
|
|
173
|
-
"get_redis_config",
|
|
174
|
-
"get_railway_redis",
|
|
175
|
-
"check_redis_connection",
|
|
176
|
-
# Trust
|
|
177
|
-
"TrustBuildingBehaviors",
|
|
185
|
+
"PatternMetadata",
|
|
186
|
+
"PatternNotFoundError",
|
|
178
187
|
# Persistence
|
|
179
188
|
"PatternPersistence",
|
|
180
|
-
|
|
181
|
-
"
|
|
182
|
-
|
|
183
|
-
"
|
|
184
|
-
"
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
"
|
|
188
|
-
# Exceptions
|
|
189
|
-
"EmpathyFrameworkError",
|
|
190
|
-
"ValidationError",
|
|
191
|
-
"PatternNotFoundError",
|
|
192
|
-
"TrustThresholdError",
|
|
193
|
-
"ConfidenceThresholdError",
|
|
194
|
-
"EmpathyLevelError",
|
|
195
|
-
"LeveragePointError",
|
|
196
|
-
"FeedbackLoopError",
|
|
197
|
-
"CollaborationStateError",
|
|
189
|
+
# Redis Short-Term Memory
|
|
190
|
+
"RedisShortTermMemory",
|
|
191
|
+
"ResolutionResult",
|
|
192
|
+
"ResolutionStrategy",
|
|
193
|
+
"SecretDetection",
|
|
194
|
+
"SecretType",
|
|
195
|
+
# Security - Secrets
|
|
196
|
+
"SecretsDetector",
|
|
198
197
|
# Long-term Memory
|
|
199
198
|
"SecureMemDocsIntegration",
|
|
200
|
-
"Classification",
|
|
201
|
-
"ClassificationRules",
|
|
202
|
-
"PatternMetadata",
|
|
203
199
|
"SecurePattern",
|
|
204
|
-
"MemDocsStorage",
|
|
205
|
-
"EncryptionManager",
|
|
206
200
|
"SecurityError",
|
|
207
|
-
"
|
|
208
|
-
# Claude Memory
|
|
209
|
-
"ClaudeMemoryConfig",
|
|
210
|
-
"ClaudeMemoryLoader",
|
|
211
|
-
# Security - PII
|
|
212
|
-
"PIIScrubber",
|
|
213
|
-
"PIIDetection",
|
|
214
|
-
"PIIPattern",
|
|
215
|
-
# Security - Secrets
|
|
216
|
-
"SecretsDetector",
|
|
217
|
-
"SecretDetection",
|
|
218
|
-
"SecretType",
|
|
201
|
+
"SecurityViolation",
|
|
219
202
|
"Severity",
|
|
203
|
+
"StagedPattern",
|
|
204
|
+
"StateManager",
|
|
205
|
+
"TTLStrategy",
|
|
206
|
+
"TeamMetrics",
|
|
207
|
+
"TeamPriorities",
|
|
208
|
+
"TeamSession",
|
|
209
|
+
# Trust
|
|
210
|
+
"TrustBuildingBehaviors",
|
|
211
|
+
"TrustThresholdError",
|
|
212
|
+
# Unified Memory Interface
|
|
213
|
+
"UnifiedMemory",
|
|
214
|
+
"ValidationError",
|
|
215
|
+
"check_redis_connection",
|
|
220
216
|
"detect_secrets",
|
|
221
|
-
#
|
|
222
|
-
"
|
|
223
|
-
"
|
|
224
|
-
"
|
|
217
|
+
# Logging
|
|
218
|
+
"get_logger",
|
|
219
|
+
"get_railway_redis",
|
|
220
|
+
"get_redis_config",
|
|
221
|
+
# Redis Configuration
|
|
222
|
+
"get_redis_memory",
|
|
223
|
+
"load_config",
|
|
225
224
|
]
|