empathy-framework 2.4.0__py3-none-any.whl → 3.8.2__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.
- coach_wizards/__init__.py +13 -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/code_reviewer_README.md +60 -0
- coach_wizards/code_reviewer_wizard.py +180 -0
- 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 +101 -19
- 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 +661 -0
- 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.8.2.dist-info/METADATA +1176 -0
- empathy_framework-3.8.2.dist-info/RECORD +333 -0
- empathy_framework-3.8.2.dist-info/entry_points.txt +22 -0
- {empathy_framework-2.4.0.dist-info → empathy_framework-3.8.2.dist-info}/top_level.txt +5 -1
- empathy_healthcare_plugin/__init__.py +1 -2
- empathy_healthcare_plugin/monitors/__init__.py +9 -0
- empathy_healthcare_plugin/monitors/clinical_protocol_monitor.py +315 -0
- empathy_healthcare_plugin/monitors/monitoring/__init__.py +44 -0
- empathy_healthcare_plugin/monitors/monitoring/protocol_checker.py +300 -0
- empathy_healthcare_plugin/monitors/monitoring/protocol_loader.py +214 -0
- empathy_healthcare_plugin/monitors/monitoring/sensor_parsers.py +306 -0
- empathy_healthcare_plugin/monitors/monitoring/trajectory_analyzer.py +389 -0
- empathy_llm_toolkit/__init__.py +7 -7
- empathy_llm_toolkit/agent_factory/__init__.py +53 -0
- empathy_llm_toolkit/agent_factory/adapters/__init__.py +85 -0
- empathy_llm_toolkit/agent_factory/adapters/autogen_adapter.py +312 -0
- empathy_llm_toolkit/agent_factory/adapters/crewai_adapter.py +454 -0
- empathy_llm_toolkit/agent_factory/adapters/haystack_adapter.py +298 -0
- empathy_llm_toolkit/agent_factory/adapters/langchain_adapter.py +362 -0
- empathy_llm_toolkit/agent_factory/adapters/langgraph_adapter.py +333 -0
- empathy_llm_toolkit/agent_factory/adapters/native.py +228 -0
- empathy_llm_toolkit/agent_factory/adapters/wizard_adapter.py +426 -0
- empathy_llm_toolkit/agent_factory/base.py +305 -0
- empathy_llm_toolkit/agent_factory/crews/__init__.py +67 -0
- empathy_llm_toolkit/agent_factory/crews/code_review.py +1113 -0
- empathy_llm_toolkit/agent_factory/crews/health_check.py +1246 -0
- empathy_llm_toolkit/agent_factory/crews/refactoring.py +1128 -0
- empathy_llm_toolkit/agent_factory/crews/security_audit.py +1018 -0
- empathy_llm_toolkit/agent_factory/decorators.py +286 -0
- empathy_llm_toolkit/agent_factory/factory.py +558 -0
- empathy_llm_toolkit/agent_factory/framework.py +192 -0
- empathy_llm_toolkit/agent_factory/memory_integration.py +324 -0
- empathy_llm_toolkit/agent_factory/resilient.py +320 -0
- empathy_llm_toolkit/claude_memory.py +14 -15
- empathy_llm_toolkit/cli/__init__.py +8 -0
- empathy_llm_toolkit/cli/sync_claude.py +487 -0
- empathy_llm_toolkit/code_health.py +186 -28
- empathy_llm_toolkit/config/__init__.py +29 -0
- empathy_llm_toolkit/config/unified.py +295 -0
- empathy_llm_toolkit/contextual_patterns.py +11 -12
- empathy_llm_toolkit/core.py +168 -53
- empathy_llm_toolkit/git_pattern_extractor.py +17 -13
- 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 +16 -14
- empathy_llm_toolkit/providers.py +194 -28
- empathy_llm_toolkit/routing/__init__.py +32 -0
- empathy_llm_toolkit/routing/model_router.py +362 -0
- empathy_llm_toolkit/security/IMPLEMENTATION_SUMMARY.md +413 -0
- empathy_llm_toolkit/security/PHASE2_COMPLETE.md +384 -0
- empathy_llm_toolkit/security/PHASE2_SECRETS_DETECTOR_COMPLETE.md +271 -0
- empathy_llm_toolkit/security/QUICK_REFERENCE.md +316 -0
- empathy_llm_toolkit/security/README.md +262 -0
- empathy_llm_toolkit/security/__init__.py +62 -0
- empathy_llm_toolkit/security/audit_logger.py +929 -0
- empathy_llm_toolkit/security/audit_logger_example.py +152 -0
- empathy_llm_toolkit/security/pii_scrubber.py +640 -0
- empathy_llm_toolkit/security/secrets_detector.py +678 -0
- empathy_llm_toolkit/security/secrets_detector_example.py +304 -0
- empathy_llm_toolkit/security/secure_memdocs.py +1192 -0
- empathy_llm_toolkit/security/secure_memdocs_example.py +278 -0
- empathy_llm_toolkit/session_status.py +20 -22
- empathy_llm_toolkit/state.py +28 -21
- empathy_llm_toolkit/wizards/__init__.py +38 -0
- empathy_llm_toolkit/wizards/base_wizard.py +364 -0
- empathy_llm_toolkit/wizards/customer_support_wizard.py +190 -0
- empathy_llm_toolkit/wizards/healthcare_wizard.py +362 -0
- empathy_llm_toolkit/wizards/patient_assessment_README.md +64 -0
- empathy_llm_toolkit/wizards/patient_assessment_wizard.py +193 -0
- empathy_llm_toolkit/wizards/technology_wizard.py +194 -0
- empathy_os/__init__.py +125 -84
- empathy_os/adaptive/__init__.py +13 -0
- empathy_os/adaptive/task_complexity.py +127 -0
- empathy_os/{monitoring.py → agent_monitoring.py} +28 -28
- empathy_os/cache/__init__.py +117 -0
- empathy_os/cache/base.py +166 -0
- empathy_os/cache/dependency_manager.py +253 -0
- empathy_os/cache/hash_only.py +248 -0
- empathy_os/cache/hybrid.py +390 -0
- empathy_os/cache/storage.py +282 -0
- empathy_os/cli.py +1516 -70
- empathy_os/cli_unified.py +597 -0
- empathy_os/config/__init__.py +63 -0
- empathy_os/config/xml_config.py +239 -0
- empathy_os/config.py +95 -37
- empathy_os/coordination.py +72 -68
- empathy_os/core.py +94 -107
- empathy_os/cost_tracker.py +74 -55
- empathy_os/dashboard/__init__.py +15 -0
- empathy_os/dashboard/server.py +743 -0
- empathy_os/discovery.py +17 -14
- empathy_os/emergence.py +21 -22
- empathy_os/exceptions.py +18 -30
- empathy_os/feedback_loops.py +30 -33
- empathy_os/levels.py +32 -35
- empathy_os/leverage_points.py +31 -32
- empathy_os/logging_config.py +19 -16
- empathy_os/memory/__init__.py +195 -0
- empathy_os/memory/claude_memory.py +466 -0
- empathy_os/memory/config.py +224 -0
- empathy_os/memory/control_panel.py +1298 -0
- empathy_os/memory/edges.py +179 -0
- empathy_os/memory/graph.py +567 -0
- empathy_os/memory/long_term.py +1194 -0
- empathy_os/memory/nodes.py +179 -0
- empathy_os/memory/redis_bootstrap.py +540 -0
- empathy_os/memory/security/__init__.py +31 -0
- empathy_os/memory/security/audit_logger.py +930 -0
- empathy_os/memory/security/pii_scrubber.py +640 -0
- empathy_os/memory/security/secrets_detector.py +678 -0
- empathy_os/memory/short_term.py +2119 -0
- empathy_os/memory/storage/__init__.py +15 -0
- empathy_os/memory/summary_index.py +583 -0
- empathy_os/memory/unified.py +619 -0
- empathy_os/metrics/__init__.py +12 -0
- empathy_os/metrics/prompt_metrics.py +190 -0
- empathy_os/models/__init__.py +136 -0
- empathy_os/models/__main__.py +13 -0
- empathy_os/models/cli.py +655 -0
- empathy_os/models/empathy_executor.py +354 -0
- empathy_os/models/executor.py +252 -0
- empathy_os/models/fallback.py +671 -0
- empathy_os/models/provider_config.py +563 -0
- empathy_os/models/registry.py +382 -0
- empathy_os/models/tasks.py +302 -0
- empathy_os/models/telemetry.py +548 -0
- empathy_os/models/token_estimator.py +378 -0
- empathy_os/models/validation.py +274 -0
- empathy_os/monitoring/__init__.py +52 -0
- empathy_os/monitoring/alerts.py +23 -0
- empathy_os/monitoring/alerts_cli.py +268 -0
- empathy_os/monitoring/multi_backend.py +271 -0
- empathy_os/monitoring/otel_backend.py +363 -0
- empathy_os/optimization/__init__.py +19 -0
- empathy_os/optimization/context_optimizer.py +272 -0
- empathy_os/pattern_library.py +30 -29
- empathy_os/persistence.py +35 -37
- empathy_os/platform_utils.py +261 -0
- empathy_os/plugins/__init__.py +28 -0
- empathy_os/plugins/base.py +361 -0
- empathy_os/plugins/registry.py +268 -0
- empathy_os/project_index/__init__.py +30 -0
- empathy_os/project_index/cli.py +335 -0
- empathy_os/project_index/crew_integration.py +430 -0
- empathy_os/project_index/index.py +425 -0
- empathy_os/project_index/models.py +501 -0
- empathy_os/project_index/reports.py +473 -0
- empathy_os/project_index/scanner.py +538 -0
- empathy_os/prompts/__init__.py +61 -0
- empathy_os/prompts/config.py +77 -0
- empathy_os/prompts/context.py +177 -0
- empathy_os/prompts/parser.py +285 -0
- empathy_os/prompts/registry.py +313 -0
- empathy_os/prompts/templates.py +208 -0
- empathy_os/redis_config.py +144 -58
- empathy_os/redis_memory.py +79 -77
- empathy_os/resilience/__init__.py +56 -0
- empathy_os/resilience/circuit_breaker.py +256 -0
- empathy_os/resilience/fallback.py +179 -0
- empathy_os/resilience/health.py +300 -0
- empathy_os/resilience/retry.py +209 -0
- empathy_os/resilience/timeout.py +135 -0
- empathy_os/routing/__init__.py +43 -0
- empathy_os/routing/chain_executor.py +433 -0
- empathy_os/routing/classifier.py +217 -0
- empathy_os/routing/smart_router.py +234 -0
- empathy_os/routing/wizard_registry.py +307 -0
- empathy_os/templates.py +19 -14
- empathy_os/trust/__init__.py +28 -0
- empathy_os/trust/circuit_breaker.py +579 -0
- empathy_os/trust_building.py +67 -58
- empathy_os/validation/__init__.py +19 -0
- empathy_os/validation/xml_validator.py +281 -0
- empathy_os/wizard_factory_cli.py +170 -0
- empathy_os/{workflows.py → workflow_commands.py} +131 -37
- empathy_os/workflows/__init__.py +360 -0
- empathy_os/workflows/base.py +1660 -0
- empathy_os/workflows/bug_predict.py +962 -0
- empathy_os/workflows/code_review.py +960 -0
- empathy_os/workflows/code_review_adapters.py +310 -0
- empathy_os/workflows/code_review_pipeline.py +720 -0
- empathy_os/workflows/config.py +600 -0
- empathy_os/workflows/dependency_check.py +648 -0
- empathy_os/workflows/document_gen.py +1069 -0
- empathy_os/workflows/documentation_orchestrator.py +1205 -0
- empathy_os/workflows/health_check.py +679 -0
- empathy_os/workflows/keyboard_shortcuts/__init__.py +39 -0
- empathy_os/workflows/keyboard_shortcuts/generators.py +386 -0
- empathy_os/workflows/keyboard_shortcuts/parsers.py +414 -0
- empathy_os/workflows/keyboard_shortcuts/prompts.py +295 -0
- empathy_os/workflows/keyboard_shortcuts/schema.py +193 -0
- empathy_os/workflows/keyboard_shortcuts/workflow.py +505 -0
- empathy_os/workflows/manage_documentation.py +804 -0
- empathy_os/workflows/new_sample_workflow1.py +146 -0
- empathy_os/workflows/new_sample_workflow1_README.md +150 -0
- empathy_os/workflows/perf_audit.py +687 -0
- empathy_os/workflows/pr_review.py +748 -0
- empathy_os/workflows/progress.py +445 -0
- empathy_os/workflows/progress_server.py +322 -0
- empathy_os/workflows/refactor_plan.py +693 -0
- empathy_os/workflows/release_prep.py +808 -0
- empathy_os/workflows/research_synthesis.py +404 -0
- empathy_os/workflows/secure_release.py +585 -0
- empathy_os/workflows/security_adapters.py +297 -0
- empathy_os/workflows/security_audit.py +1046 -0
- empathy_os/workflows/step_config.py +234 -0
- empathy_os/workflows/test5.py +125 -0
- empathy_os/workflows/test5_README.md +158 -0
- empathy_os/workflows/test_gen.py +1855 -0
- empathy_os/workflows/test_lifecycle.py +526 -0
- empathy_os/workflows/test_maintenance.py +626 -0
- empathy_os/workflows/test_maintenance_cli.py +590 -0
- empathy_os/workflows/test_maintenance_crew.py +821 -0
- empathy_os/workflows/xml_enhanced_crew.py +285 -0
- empathy_software_plugin/__init__.py +1 -2
- empathy_software_plugin/cli/__init__.py +120 -0
- empathy_software_plugin/cli/inspect.py +362 -0
- empathy_software_plugin/cli.py +49 -27
- empathy_software_plugin/plugin.py +4 -8
- empathy_software_plugin/wizards/__init__.py +42 -0
- empathy_software_plugin/wizards/advanced_debugging_wizard.py +392 -0
- empathy_software_plugin/wizards/agent_orchestration_wizard.py +511 -0
- empathy_software_plugin/wizards/ai_collaboration_wizard.py +503 -0
- empathy_software_plugin/wizards/ai_context_wizard.py +441 -0
- empathy_software_plugin/wizards/ai_documentation_wizard.py +503 -0
- empathy_software_plugin/wizards/base_wizard.py +288 -0
- empathy_software_plugin/wizards/book_chapter_wizard.py +519 -0
- empathy_software_plugin/wizards/code_review_wizard.py +606 -0
- empathy_software_plugin/wizards/debugging/__init__.py +50 -0
- empathy_software_plugin/wizards/debugging/bug_risk_analyzer.py +414 -0
- empathy_software_plugin/wizards/debugging/config_loaders.py +442 -0
- empathy_software_plugin/wizards/debugging/fix_applier.py +469 -0
- empathy_software_plugin/wizards/debugging/language_patterns.py +383 -0
- empathy_software_plugin/wizards/debugging/linter_parsers.py +470 -0
- empathy_software_plugin/wizards/debugging/verification.py +369 -0
- empathy_software_plugin/wizards/enhanced_testing_wizard.py +537 -0
- empathy_software_plugin/wizards/memory_enhanced_debugging_wizard.py +816 -0
- empathy_software_plugin/wizards/multi_model_wizard.py +501 -0
- empathy_software_plugin/wizards/pattern_extraction_wizard.py +422 -0
- empathy_software_plugin/wizards/pattern_retriever_wizard.py +400 -0
- empathy_software_plugin/wizards/performance/__init__.py +9 -0
- empathy_software_plugin/wizards/performance/bottleneck_detector.py +221 -0
- empathy_software_plugin/wizards/performance/profiler_parsers.py +278 -0
- empathy_software_plugin/wizards/performance/trajectory_analyzer.py +429 -0
- empathy_software_plugin/wizards/performance_profiling_wizard.py +305 -0
- empathy_software_plugin/wizards/prompt_engineering_wizard.py +425 -0
- empathy_software_plugin/wizards/rag_pattern_wizard.py +461 -0
- empathy_software_plugin/wizards/security/__init__.py +32 -0
- empathy_software_plugin/wizards/security/exploit_analyzer.py +290 -0
- empathy_software_plugin/wizards/security/owasp_patterns.py +241 -0
- empathy_software_plugin/wizards/security/vulnerability_scanner.py +604 -0
- empathy_software_plugin/wizards/security_analysis_wizard.py +322 -0
- empathy_software_plugin/wizards/security_learning_wizard.py +740 -0
- empathy_software_plugin/wizards/tech_debt_wizard.py +726 -0
- empathy_software_plugin/wizards/testing/__init__.py +27 -0
- empathy_software_plugin/wizards/testing/coverage_analyzer.py +459 -0
- empathy_software_plugin/wizards/testing/quality_analyzer.py +531 -0
- empathy_software_plugin/wizards/testing/test_suggester.py +533 -0
- empathy_software_plugin/wizards/testing_wizard.py +274 -0
- hot_reload/README.md +473 -0
- hot_reload/__init__.py +62 -0
- hot_reload/config.py +84 -0
- hot_reload/integration.py +228 -0
- hot_reload/reloader.py +298 -0
- hot_reload/watcher.py +179 -0
- hot_reload/websocket.py +176 -0
- scaffolding/README.md +589 -0
- scaffolding/__init__.py +35 -0
- scaffolding/__main__.py +14 -0
- scaffolding/cli.py +240 -0
- test_generator/__init__.py +38 -0
- test_generator/__main__.py +14 -0
- test_generator/cli.py +226 -0
- test_generator/generator.py +325 -0
- test_generator/risk_analyzer.py +216 -0
- workflow_patterns/__init__.py +33 -0
- workflow_patterns/behavior.py +249 -0
- workflow_patterns/core.py +76 -0
- workflow_patterns/output.py +99 -0
- workflow_patterns/registry.py +255 -0
- workflow_patterns/structural.py +288 -0
- workflow_scaffolding/__init__.py +11 -0
- workflow_scaffolding/__main__.py +12 -0
- workflow_scaffolding/cli.py +206 -0
- workflow_scaffolding/generator.py +265 -0
- agents/code_inspection/patterns/inspection/recurring_B112.json +0 -18
- agents/code_inspection/patterns/inspection/recurring_F541.json +0 -16
- agents/code_inspection/patterns/inspection/recurring_FORMAT.json +0 -25
- agents/code_inspection/patterns/inspection/recurring_bug_20250822_def456.json +0 -16
- agents/code_inspection/patterns/inspection/recurring_bug_20250915_abc123.json +0 -16
- agents/code_inspection/patterns/inspection/recurring_bug_20251212_3c5b9951.json +0 -16
- agents/code_inspection/patterns/inspection/recurring_bug_20251212_97c0f72f.json +0 -16
- agents/code_inspection/patterns/inspection/recurring_bug_20251212_a0871d53.json +0 -16
- agents/code_inspection/patterns/inspection/recurring_bug_20251212_a9b6ec41.json +0 -16
- agents/code_inspection/patterns/inspection/recurring_bug_null_001.json +0 -16
- agents/code_inspection/patterns/inspection/recurring_builtin.json +0 -16
- agents/compliance_anticipation_agent.py +0 -1427
- agents/epic_integration_wizard.py +0 -541
- agents/trust_building_behaviors.py +0 -891
- empathy_framework-2.4.0.dist-info/METADATA +0 -485
- empathy_framework-2.4.0.dist-info/RECORD +0 -102
- empathy_framework-2.4.0.dist-info/entry_points.txt +0 -6
- empathy_llm_toolkit/htmlcov/status.json +0 -1
- empathy_llm_toolkit/security/htmlcov/status.json +0 -1
- {empathy_framework-2.4.0.dist-info → empathy_framework-3.8.2.dist-info}/WHEEL +0 -0
- {empathy_framework-2.4.0.dist-info → empathy_framework-3.8.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,485 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: empathy-framework
|
|
3
|
-
Version: 2.4.0
|
|
4
|
-
Summary: AI collaboration framework with persistent memory, anticipatory intelligence, code inspection, and multi-agent orchestration
|
|
5
|
-
Author-email: Patrick Roebuck <patrick.roebuck@smartAImemory.com>
|
|
6
|
-
Maintainer-email: Smart-AI-Memory <patrick.roebuck@smartAImemory.com>
|
|
7
|
-
License: # Fair Source License, version 0.9
|
|
8
|
-
|
|
9
|
-
**Copyright © 2025 Deep Study AI, LLC**
|
|
10
|
-
|
|
11
|
-
## Grant of Rights
|
|
12
|
-
|
|
13
|
-
**Licensor:** Deep Study AI, LLC
|
|
14
|
-
**Licensed Work:** Empathy
|
|
15
|
-
**Change Date:** January 1, 2029 (4 years from first release)
|
|
16
|
-
**Change License:** Apache License 2.0
|
|
17
|
-
|
|
18
|
-
---
|
|
19
|
-
|
|
20
|
-
## Terms
|
|
21
|
-
|
|
22
|
-
### Grant of Use
|
|
23
|
-
|
|
24
|
-
Subject to the conditions below, Licensor grants you a non-exclusive, worldwide, royalty-free license to:
|
|
25
|
-
|
|
26
|
-
- Use the Licensed Work
|
|
27
|
-
- Modify the Licensed Work
|
|
28
|
-
- Create derivative works
|
|
29
|
-
- Distribute copies (subject to restrictions)
|
|
30
|
-
|
|
31
|
-
### Usage Limits - Free Tier
|
|
32
|
-
|
|
33
|
-
You may use the Licensed Work **free of charge** if you meet ANY of these conditions:
|
|
34
|
-
|
|
35
|
-
1. **Educational Use:** You are a student or educator using the Licensed Work for educational purposes
|
|
36
|
-
2. **Small Business:** Your organization has **5 or fewer total employees**
|
|
37
|
-
3. **Personal/Research:** You are using the Licensed Work for personal projects or academic research
|
|
38
|
-
4. **Evaluation:** You are evaluating the Licensed Work for up to 30 days
|
|
39
|
-
|
|
40
|
-
### Usage Limits - Commercial License Required
|
|
41
|
-
|
|
42
|
-
A **Commercial License is REQUIRED** if:
|
|
43
|
-
|
|
44
|
-
1. Your organization has **6 or more employees**, AND
|
|
45
|
-
2. You are using the Licensed Work in a production environment, OR
|
|
46
|
-
3. You are using the Licensed Work to provide services to third parties
|
|
47
|
-
|
|
48
|
-
**Commercial License:** $99 USD per developer per year
|
|
49
|
-
|
|
50
|
-
- "Developer" means any employee, contractor, or agent who uses, modifies, or deploys the Licensed Work
|
|
51
|
-
- One license covers all environments (development, staging, production, CI/CD)
|
|
52
|
-
- License includes updates and support
|
|
53
|
-
- Purchase at: https://smartaimemory.com/empathy-framework/pricing
|
|
54
|
-
|
|
55
|
-
### Restrictions
|
|
56
|
-
|
|
57
|
-
You may NOT:
|
|
58
|
-
|
|
59
|
-
1. **Remove or modify** licensing, copyright notices, or attribution
|
|
60
|
-
2. **Circumvent** the usage limits or commercial license requirements
|
|
61
|
-
3. **Offer as a managed service** without a separate reseller agreement
|
|
62
|
-
4. **Sublicense, sell, or rent** the Licensed Work to third parties
|
|
63
|
-
5. **Use the Licensed Work** in violation of applicable laws
|
|
64
|
-
|
|
65
|
-
### Source Code Availability
|
|
66
|
-
|
|
67
|
-
The source code for the Licensed Work is available at:
|
|
68
|
-
https://github.com/Smart-AI-Memory/empathy
|
|
69
|
-
|
|
70
|
-
You may view, inspect, and audit the source code for:
|
|
71
|
-
- Security review
|
|
72
|
-
- Compliance verification
|
|
73
|
-
- Understanding implementation
|
|
74
|
-
- Creating derivative works (subject to this license)
|
|
75
|
-
|
|
76
|
-
### Attribution
|
|
77
|
-
|
|
78
|
-
If you distribute the Licensed Work or derivative works, you must:
|
|
79
|
-
|
|
80
|
-
1. Include this license file
|
|
81
|
-
2. Provide attribution to "Deep Study AI, LLC - Empathy"
|
|
82
|
-
3. Include a link to https://github.com/Smart-AI-Memory/empathy
|
|
83
|
-
|
|
84
|
-
### Warranty Disclaimer
|
|
85
|
-
|
|
86
|
-
THE LICENSED WORK IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT.
|
|
87
|
-
|
|
88
|
-
### Liability Limitation
|
|
89
|
-
|
|
90
|
-
IN NO EVENT SHALL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE LICENSED WORK.
|
|
91
|
-
|
|
92
|
-
### Change Date Conversion
|
|
93
|
-
|
|
94
|
-
On the Change Date (January 1, 2029), this license automatically converts to the Change License (Apache License 2.0), and all restrictions in this Fair Source License no longer apply.
|
|
95
|
-
|
|
96
|
-
**Rationale:** After 4 years, the Licensed Work becomes fully open source, allowing maximum community benefit while protecting Licensor's commercial interests during the critical growth period.
|
|
97
|
-
|
|
98
|
-
### Verification Rights
|
|
99
|
-
|
|
100
|
-
Licensor reserves the right to:
|
|
101
|
-
|
|
102
|
-
1. Request verification of compliance with usage limits
|
|
103
|
-
2. Audit use of the Licensed Work with reasonable notice
|
|
104
|
-
3. Terminate licenses for violations after 30-day cure period
|
|
105
|
-
|
|
106
|
-
### Commercial License Purchase
|
|
107
|
-
|
|
108
|
-
To purchase a Commercial License:
|
|
109
|
-
|
|
110
|
-
1. Visit: https://smartaimemory.com/empathy-framework/pricing
|
|
111
|
-
2. Email: admin@smartaimemory.com
|
|
112
|
-
3. Complete order form and payment
|
|
113
|
-
4. Receive license key and invoice
|
|
114
|
-
|
|
115
|
-
Volume discounts available for teams of 20+ developers.
|
|
116
|
-
|
|
117
|
-
### Definitions
|
|
118
|
-
|
|
119
|
-
- **Employee:** Any W-2 employee, 1099 contractor working >20 hours/week, or intern
|
|
120
|
-
- **Production Environment:** Any environment serving end users or customers
|
|
121
|
-
- **Developer:** Any person who uses, modifies, or deploys the Licensed Work
|
|
122
|
-
- **Organization:** The legal entity employing you, or yourself if self-employed
|
|
123
|
-
|
|
124
|
-
### Questions?
|
|
125
|
-
|
|
126
|
-
For licensing questions, contact: licensing@smartaimemory.com
|
|
127
|
-
|
|
128
|
-
---
|
|
129
|
-
|
|
130
|
-
## Why Fair Source?
|
|
131
|
-
|
|
132
|
-
This license balances:
|
|
133
|
-
|
|
134
|
-
✅ **Free for small teams** - Students, educators, and small businesses (≤5 employees) use free forever
|
|
135
|
-
✅ **Source code visibility** - Review code for security, compliance, learning
|
|
136
|
-
✅ **Commercial sustainability** - Larger organizations pay to fund development
|
|
137
|
-
✅ **Future open source** - Automatically becomes Apache 2.0 in 4 years
|
|
138
|
-
|
|
139
|
-
We believe software should be inspectable and accessible while ensuring sustainable development.
|
|
140
|
-
|
|
141
|
-
---
|
|
142
|
-
|
|
143
|
-
**Version:** 0.9
|
|
144
|
-
**Last Updated:** November 7, 2025
|
|
145
|
-
**Effective Date:** January 1, 2025
|
|
146
|
-
|
|
147
|
-
Project-URL: Homepage, https://www.smartaimemory.com
|
|
148
|
-
Project-URL: Documentation, https://www.smartaimemory.com/docs
|
|
149
|
-
Project-URL: Getting Started, https://www.smartaimemory.com/docs/getting-started
|
|
150
|
-
Project-URL: FAQ, https://www.smartaimemory.com/docs/faq
|
|
151
|
-
Project-URL: Book, https://www.smartaimemory.com/book
|
|
152
|
-
Project-URL: Repository, https://github.com/Smart-AI-Memory/empathy-framework
|
|
153
|
-
Project-URL: Issues, https://github.com/Smart-AI-Memory/empathy-framework/issues
|
|
154
|
-
Project-URL: Discussions, https://github.com/Smart-AI-Memory/empathy-framework/discussions
|
|
155
|
-
Project-URL: Changelog, https://github.com/Smart-AI-Memory/empathy-framework/blob/main/CHANGELOG.md
|
|
156
|
-
Keywords: ai,collaboration,empathy,anticipatory-ai,systems-thinking,llm,claude,memdocs,level-5-ai,code-inspection,static-analysis,code-quality,sarif,github-actions,developer-tools
|
|
157
|
-
Classifier: Development Status :: 4 - Beta
|
|
158
|
-
Classifier: Intended Audience :: Developers
|
|
159
|
-
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
160
|
-
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
161
|
-
Classifier: Programming Language :: Python :: 3
|
|
162
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
163
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
164
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
165
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
166
|
-
Classifier: Operating System :: OS Independent
|
|
167
|
-
Requires-Python: >=3.10
|
|
168
|
-
Description-Content-Type: text/markdown
|
|
169
|
-
License-File: LICENSE
|
|
170
|
-
Requires-Dist: pydantic<3.0.0,>=2.0.0
|
|
171
|
-
Requires-Dist: typing-extensions<5.0.0,>=4.0.0
|
|
172
|
-
Requires-Dist: python-dotenv<2.0.0,>=1.0.0
|
|
173
|
-
Requires-Dist: structlog<25.0.0,>=23.0.0
|
|
174
|
-
Provides-Extra: anthropic
|
|
175
|
-
Requires-Dist: anthropic<1.0.0,>=0.8.0; extra == "anthropic"
|
|
176
|
-
Provides-Extra: openai
|
|
177
|
-
Requires-Dist: openai<2.0.0,>=1.6.0; extra == "openai"
|
|
178
|
-
Provides-Extra: llm
|
|
179
|
-
Requires-Dist: anthropic<1.0.0,>=0.8.0; extra == "llm"
|
|
180
|
-
Requires-Dist: openai<2.0.0,>=1.6.0; extra == "llm"
|
|
181
|
-
Provides-Extra: memdocs
|
|
182
|
-
Requires-Dist: memdocs>=1.0.0; extra == "memdocs"
|
|
183
|
-
Provides-Extra: agents
|
|
184
|
-
Requires-Dist: langchain<0.3.0,>=0.1.0; extra == "agents"
|
|
185
|
-
Requires-Dist: langchain-core<0.3.0,>=0.1.0; extra == "agents"
|
|
186
|
-
Requires-Dist: langgraph<0.2.0,>=0.1.0; extra == "agents"
|
|
187
|
-
Provides-Extra: healthcare
|
|
188
|
-
Requires-Dist: python-docx<1.0.0,>=0.8.11; extra == "healthcare"
|
|
189
|
-
Requires-Dist: pyyaml<7.0,>=6.0; extra == "healthcare"
|
|
190
|
-
Requires-Dist: redis<6.0.0,>=5.0.0; extra == "healthcare"
|
|
191
|
-
Provides-Extra: software
|
|
192
|
-
Requires-Dist: python-docx<1.0.0,>=0.8.11; extra == "software"
|
|
193
|
-
Requires-Dist: pyyaml<7.0,>=6.0; extra == "software"
|
|
194
|
-
Provides-Extra: backend
|
|
195
|
-
Requires-Dist: fastapi<1.0.0,>=0.109.1; extra == "backend"
|
|
196
|
-
Requires-Dist: uvicorn<1.0.0,>=0.20.0; extra == "backend"
|
|
197
|
-
Requires-Dist: starlette<1.0.0,>=0.40.0; extra == "backend"
|
|
198
|
-
Requires-Dist: PyJWT[crypto]>=2.8.0; extra == "backend"
|
|
199
|
-
Provides-Extra: lsp
|
|
200
|
-
Requires-Dist: pygls<2.0.0,>=1.0.0; extra == "lsp"
|
|
201
|
-
Requires-Dist: lsprotocol<2024.0.0,>=2023.0.0; extra == "lsp"
|
|
202
|
-
Provides-Extra: windows
|
|
203
|
-
Requires-Dist: colorama<1.0.0,>=0.4.6; extra == "windows"
|
|
204
|
-
Provides-Extra: docs
|
|
205
|
-
Requires-Dist: mkdocs<2.0.0,>=1.5.0; extra == "docs"
|
|
206
|
-
Requires-Dist: mkdocs-material<10.0.0,>=9.4.0; extra == "docs"
|
|
207
|
-
Requires-Dist: mkdocstrings[python]<1.0.0,>=0.24.0; extra == "docs"
|
|
208
|
-
Requires-Dist: mkdocs-with-pdf<1.0.0,>=0.9.3; extra == "docs"
|
|
209
|
-
Requires-Dist: pymdown-extensions<11.0,>=10.0; extra == "docs"
|
|
210
|
-
Provides-Extra: dev
|
|
211
|
-
Requires-Dist: pytest<9.0,>=7.0; extra == "dev"
|
|
212
|
-
Requires-Dist: pytest-asyncio<1.0,>=0.21; extra == "dev"
|
|
213
|
-
Requires-Dist: pytest-cov<5.0,>=4.0; extra == "dev"
|
|
214
|
-
Requires-Dist: black<26.0,>=24.3.0; extra == "dev"
|
|
215
|
-
Requires-Dist: mypy<2.0,>=1.0; extra == "dev"
|
|
216
|
-
Requires-Dist: ruff<1.0,>=0.1; extra == "dev"
|
|
217
|
-
Requires-Dist: coverage<8.0,>=7.0; extra == "dev"
|
|
218
|
-
Requires-Dist: bandit<2.0,>=1.7; extra == "dev"
|
|
219
|
-
Requires-Dist: pre-commit<4.0,>=3.0; extra == "dev"
|
|
220
|
-
Provides-Extra: full
|
|
221
|
-
Requires-Dist: anthropic<1.0.0,>=0.8.0; extra == "full"
|
|
222
|
-
Requires-Dist: openai<2.0.0,>=1.6.0; extra == "full"
|
|
223
|
-
Requires-Dist: memdocs>=1.0.0; extra == "full"
|
|
224
|
-
Requires-Dist: langchain<0.3.0,>=0.1.0; extra == "full"
|
|
225
|
-
Requires-Dist: langchain-core<0.3.0,>=0.1.0; extra == "full"
|
|
226
|
-
Requires-Dist: langgraph<0.2.0,>=0.1.0; extra == "full"
|
|
227
|
-
Requires-Dist: python-docx<1.0.0,>=0.8.11; extra == "full"
|
|
228
|
-
Requires-Dist: pyyaml<7.0,>=6.0; extra == "full"
|
|
229
|
-
Provides-Extra: all
|
|
230
|
-
Requires-Dist: anthropic<1.0.0,>=0.8.0; extra == "all"
|
|
231
|
-
Requires-Dist: openai<2.0.0,>=1.6.0; extra == "all"
|
|
232
|
-
Requires-Dist: memdocs>=1.0.0; extra == "all"
|
|
233
|
-
Requires-Dist: langchain<0.3.0,>=0.1.0; extra == "all"
|
|
234
|
-
Requires-Dist: langchain-core<0.3.0,>=0.1.0; extra == "all"
|
|
235
|
-
Requires-Dist: langgraph<0.2.0,>=0.1.0; extra == "all"
|
|
236
|
-
Requires-Dist: python-docx<1.0.0,>=0.8.11; extra == "all"
|
|
237
|
-
Requires-Dist: pyyaml<7.0,>=6.0; extra == "all"
|
|
238
|
-
Requires-Dist: fastapi<1.0.0,>=0.109.1; extra == "all"
|
|
239
|
-
Requires-Dist: uvicorn<1.0.0,>=0.20.0; extra == "all"
|
|
240
|
-
Requires-Dist: starlette<1.0.0,>=0.40.0; extra == "all"
|
|
241
|
-
Requires-Dist: pygls<2.0.0,>=1.0.0; extra == "all"
|
|
242
|
-
Requires-Dist: lsprotocol<2024.0.0,>=2023.0.0; extra == "all"
|
|
243
|
-
Requires-Dist: colorama<1.0.0,>=0.4.6; extra == "all"
|
|
244
|
-
Requires-Dist: mkdocs<2.0.0,>=1.5.0; extra == "all"
|
|
245
|
-
Requires-Dist: mkdocs-material<10.0.0,>=9.4.0; extra == "all"
|
|
246
|
-
Requires-Dist: mkdocstrings[python]<1.0.0,>=0.24.0; extra == "all"
|
|
247
|
-
Requires-Dist: mkdocs-with-pdf<1.0.0,>=0.9.3; extra == "all"
|
|
248
|
-
Requires-Dist: pymdown-extensions<11.0,>=10.0; extra == "all"
|
|
249
|
-
Requires-Dist: pytest<9.0,>=7.0; extra == "all"
|
|
250
|
-
Requires-Dist: pytest-asyncio<1.0,>=0.21; extra == "all"
|
|
251
|
-
Requires-Dist: pytest-cov<5.0,>=4.0; extra == "all"
|
|
252
|
-
Requires-Dist: black<26.0,>=24.3.0; extra == "all"
|
|
253
|
-
Requires-Dist: mypy<2.0,>=1.0; extra == "all"
|
|
254
|
-
Requires-Dist: ruff<1.0,>=0.1; extra == "all"
|
|
255
|
-
Requires-Dist: coverage<8.0,>=7.0; extra == "all"
|
|
256
|
-
Requires-Dist: bandit<2.0,>=1.7; extra == "all"
|
|
257
|
-
Requires-Dist: pre-commit<4.0,>=3.0; extra == "all"
|
|
258
|
-
Requires-Dist: httpx<1.0.0,>=0.27.0; extra == "all"
|
|
259
|
-
Requires-Dist: urllib3<3.0.0,>=2.3.0; extra == "all"
|
|
260
|
-
Requires-Dist: aiohttp<4.0.0,>=3.10.0; extra == "all"
|
|
261
|
-
Requires-Dist: filelock<4.0.0,>=3.16.0; extra == "all"
|
|
262
|
-
Dynamic: license-file
|
|
263
|
-
|
|
264
|
-
# Empathy Framework
|
|
265
|
-
|
|
266
|
-
**The AI collaboration framework that predicts problems before they happen.**
|
|
267
|
-
|
|
268
|
-
[](https://pypi.org/project/empathy-framework/)
|
|
269
|
-
[](https://github.com/Smart-AI-Memory/empathy-framework/actions)
|
|
270
|
-
[](LICENSE)
|
|
271
|
-
[](https://www.python.org)
|
|
272
|
-
[](https://github.com/Smart-AI-Memory/empathy-framework)
|
|
273
|
-
|
|
274
|
-
```bash
|
|
275
|
-
pip install empathy-framework
|
|
276
|
-
empathy-memory serve
|
|
277
|
-
```
|
|
278
|
-
|
|
279
|
-
## Why Empathy?
|
|
280
|
-
|
|
281
|
-
### Memory That Persists
|
|
282
|
-
- **Dual-layer architecture** — Redis for millisecond short-term ops, pattern storage for long-term knowledge
|
|
283
|
-
- **AI that learns across sessions** — Patterns discovered today inform decisions tomorrow
|
|
284
|
-
- **Cross-team knowledge sharing** — What one agent learns, all agents can use
|
|
285
|
-
- **Git-native storage** — Optimized for GitHub, works with any VCS (GitLab, Bitbucket, Azure DevOps, self-hosted)
|
|
286
|
-
|
|
287
|
-
### Enterprise-Ready
|
|
288
|
-
- **Your data stays local** — Nothing leaves your infrastructure
|
|
289
|
-
- **Compliance built-in** — HIPAA, GDPR, SOC2 patterns included
|
|
290
|
-
- **Automatic documentation** — AI-first docs that serve humans and machines
|
|
291
|
-
|
|
292
|
-
### Anticipatory Intelligence
|
|
293
|
-
- **Predicts 30-90 days ahead** — Security vulnerabilities, performance degradation, compliance gaps
|
|
294
|
-
- **Prevents, not reacts** — Eliminate entire categories of problems before they become urgent
|
|
295
|
-
- **3-4x productivity gains** — Not 20% faster; whole workflows disappear
|
|
296
|
-
|
|
297
|
-
### Build Better Agents
|
|
298
|
-
- **Agent toolkit** — Build custom agents that inherit memory, trust, and anticipation
|
|
299
|
-
- **30+ production wizards** — Security, performance, testing, docs—use or extend
|
|
300
|
-
- **5-level progression built-in** — Your agents evolve from reactive to anticipatory automatically
|
|
301
|
-
|
|
302
|
-
### Human↔AI & AI↔AI Orchestration
|
|
303
|
-
- **Empathy OS** — Manages trust, feedback loops, and collaboration state
|
|
304
|
-
- **Multi-agent coordination** — Specialized agents working in concert
|
|
305
|
-
- **Conflict resolution** — Principled negotiation when agents disagree
|
|
306
|
-
|
|
307
|
-
### Performance & Cost
|
|
308
|
-
- **80-96% LLM cost reduction** — Smart routing: cheap models detect, best models decide
|
|
309
|
-
- **Sub-millisecond coordination** — Redis-backed real-time signaling between agents
|
|
310
|
-
- **Works with any LLM** — Claude, GPT-4, Ollama, or your own
|
|
311
|
-
|
|
312
|
-
## Quick Example
|
|
313
|
-
|
|
314
|
-
```python
|
|
315
|
-
from empathy_os import EmpathyOS
|
|
316
|
-
|
|
317
|
-
os = EmpathyOS()
|
|
318
|
-
|
|
319
|
-
# Analyze code for current AND future issues
|
|
320
|
-
result = await os.collaborate(
|
|
321
|
-
"Review this deployment pipeline for problems",
|
|
322
|
-
context={"code": pipeline_code, "team_size": 10}
|
|
323
|
-
)
|
|
324
|
-
|
|
325
|
-
# Get predictions, not just analysis
|
|
326
|
-
print(result.current_issues) # What's wrong now
|
|
327
|
-
print(result.predicted_issues) # What will break in 30-90 days
|
|
328
|
-
print(result.prevention_steps) # How to prevent it
|
|
329
|
-
```
|
|
330
|
-
|
|
331
|
-
## Cost Optimization with ModelRouter
|
|
332
|
-
|
|
333
|
-
Save 80-96% on API costs by routing tasks to appropriate model tiers:
|
|
334
|
-
|
|
335
|
-
```python
|
|
336
|
-
from empathy_llm_toolkit import EmpathyLLM
|
|
337
|
-
|
|
338
|
-
# Enable smart model routing
|
|
339
|
-
llm = EmpathyLLM(
|
|
340
|
-
provider="anthropic",
|
|
341
|
-
enable_model_routing=True
|
|
342
|
-
)
|
|
343
|
-
|
|
344
|
-
# Summarization → Haiku ($0.25/M tokens)
|
|
345
|
-
await llm.interact(user_id="dev", user_input="Summarize this", task_type="summarize")
|
|
346
|
-
|
|
347
|
-
# Bug fixing → Sonnet ($3/M tokens)
|
|
348
|
-
await llm.interact(user_id="dev", user_input="Fix this bug", task_type="fix_bug")
|
|
349
|
-
|
|
350
|
-
# Architecture → Opus ($15/M tokens)
|
|
351
|
-
await llm.interact(user_id="dev", user_input="Design the system", task_type="architectural_decision")
|
|
352
|
-
```
|
|
353
|
-
|
|
354
|
-
## The 5 Levels of AI Empathy
|
|
355
|
-
|
|
356
|
-
| Level | Name | Behavior | Example |
|
|
357
|
-
|-------|------|----------|---------|
|
|
358
|
-
| 1 | Reactive | Responds when asked | "Here's the data you requested" |
|
|
359
|
-
| 2 | Guided | Asks clarifying questions | "What format do you need?" |
|
|
360
|
-
| 3 | Proactive | Notices patterns | "I pre-fetched what you usually need" |
|
|
361
|
-
| **4** | **Anticipatory** | **Predicts future needs** | **"This query will timeout at 10k users"** |
|
|
362
|
-
| 5 | Transformative | Builds preventing structures | "Here's a framework for all future cases" |
|
|
363
|
-
|
|
364
|
-
**Empathy operates at Level 4** - predicting problems before they manifest.
|
|
365
|
-
|
|
366
|
-
## Comparison
|
|
367
|
-
|
|
368
|
-
| | Empathy | SonarQube | GitHub Copilot |
|
|
369
|
-
|---|---------|-----------|----------------|
|
|
370
|
-
| **Predicts future issues** | ✅ 30-90 days ahead | ❌ | ❌ |
|
|
371
|
-
| **Persistent memory** | ✅ Redis + patterns | ❌ | ❌ |
|
|
372
|
-
| **Cross-domain learning** | ✅ Healthcare → Software | ❌ | ❌ |
|
|
373
|
-
| **Multi-agent orchestration** | ✅ Built-in | ❌ | ❌ |
|
|
374
|
-
| **Source available** | ✅ Fair Source 0.9 | ❌ | ❌ |
|
|
375
|
-
| **Data stays local** | ✅ Your infrastructure | ❌ Cloud | ❌ Cloud |
|
|
376
|
-
| **Free for small teams** | ✅ ≤5 employees | ❌ | ❌ |
|
|
377
|
-
|
|
378
|
-
## Get Involved
|
|
379
|
-
|
|
380
|
-
**⭐ [Star this repo](https://github.com/Smart-AI-Memory/empathy-framework)** if you find it useful
|
|
381
|
-
|
|
382
|
-
**💬 [Join Discussions](https://github.com/Smart-AI-Memory/empathy-framework/discussions)** - Questions, ideas, show what you built
|
|
383
|
-
|
|
384
|
-
**📖 [Read the Book](https://smartaimemory.com/book)** - Deep dive into the philosophy and implementation
|
|
385
|
-
|
|
386
|
-
**📚 [Full Documentation](docs/)** - API reference, examples, guides
|
|
387
|
-
|
|
388
|
-
## Install Options
|
|
389
|
-
|
|
390
|
-
```bash
|
|
391
|
-
# Basic
|
|
392
|
-
pip install empathy-framework
|
|
393
|
-
|
|
394
|
-
# With all features (recommended)
|
|
395
|
-
pip install empathy-framework[full]
|
|
396
|
-
|
|
397
|
-
# Development
|
|
398
|
-
git clone https://github.com/Smart-AI-Memory/empathy.git
|
|
399
|
-
cd empathy && pip install -e .[dev]
|
|
400
|
-
```
|
|
401
|
-
|
|
402
|
-
## What's Included
|
|
403
|
-
|
|
404
|
-
- **Empathy OS** — Core engine for managing human↔AI and AI↔AI collaboration
|
|
405
|
-
- **Memory System** — Redis short-term + encrypted long-term pattern storage
|
|
406
|
-
- **30+ Production Wizards** — Security, performance, testing, docs, accessibility, compliance
|
|
407
|
-
- **Healthcare Suite** — SBAR, SOAP notes, clinical protocols (HIPAA compliant)
|
|
408
|
-
- **LLM Toolkit** — Works with Claude, GPT-4, Ollama; smart model routing
|
|
409
|
-
- **Memory Control Panel** — CLI (`empathy-memory`) and REST API for managing everything
|
|
410
|
-
- **IDE Plugins** — VS Code extension for visual memory management
|
|
411
|
-
|
|
412
|
-
## Memory Control Panel
|
|
413
|
-
|
|
414
|
-
Manage AI memory with a simple CLI:
|
|
415
|
-
|
|
416
|
-
```bash
|
|
417
|
-
# Start everything (Redis + API server)
|
|
418
|
-
empathy-memory serve
|
|
419
|
-
|
|
420
|
-
# Check system status
|
|
421
|
-
empathy-memory status
|
|
422
|
-
|
|
423
|
-
# View statistics
|
|
424
|
-
empathy-memory stats
|
|
425
|
-
|
|
426
|
-
# Run health check
|
|
427
|
-
empathy-memory health
|
|
428
|
-
|
|
429
|
-
# List stored patterns
|
|
430
|
-
empathy-memory patterns
|
|
431
|
-
```
|
|
432
|
-
|
|
433
|
-
The API server runs at `http://localhost:8765` with endpoints for status, stats, patterns, and Redis control.
|
|
434
|
-
|
|
435
|
-
**VS Code Extension:** A visual panel for monitoring memory is available in `vscode-memory-panel/`.
|
|
436
|
-
|
|
437
|
-
## Code Inspection Pipeline (New in v2.2.9)
|
|
438
|
-
|
|
439
|
-
Unified code quality with cross-tool intelligence:
|
|
440
|
-
|
|
441
|
-
```bash
|
|
442
|
-
# Run inspection
|
|
443
|
-
empathy-inspect .
|
|
444
|
-
|
|
445
|
-
# Multiple output formats
|
|
446
|
-
empathy-inspect . --format json # For CI/CD
|
|
447
|
-
empathy-inspect . --format sarif # For GitHub Actions
|
|
448
|
-
empathy-inspect . --format html # Visual dashboard
|
|
449
|
-
|
|
450
|
-
# Filter targets
|
|
451
|
-
empathy-inspect . --staged # Only staged changes
|
|
452
|
-
empathy-inspect . --changed # Only modified files
|
|
453
|
-
|
|
454
|
-
# Auto-fix safe issues
|
|
455
|
-
empathy-inspect . --fix
|
|
456
|
-
|
|
457
|
-
# Suppress false positives
|
|
458
|
-
empathy-inspect . --baseline-init # Create baseline file
|
|
459
|
-
empathy-inspect . --no-baseline # Show all findings
|
|
460
|
-
```
|
|
461
|
-
|
|
462
|
-
**Pipeline phases:**
|
|
463
|
-
1. Static Analysis (parallel) — Lint, security, debt, test quality
|
|
464
|
-
2. Dynamic Analysis (conditional) — Code review, debugging
|
|
465
|
-
3. Cross-Analysis — Correlate findings across tools
|
|
466
|
-
4. Learning — Extract patterns for future use
|
|
467
|
-
5. Reporting — Unified health score
|
|
468
|
-
|
|
469
|
-
**GitHub Actions SARIF integration:**
|
|
470
|
-
```yaml
|
|
471
|
-
- run: empathy-inspect . --format sarif --output results.sarif
|
|
472
|
-
- uses: github/codeql-action/upload-sarif@v2
|
|
473
|
-
with:
|
|
474
|
-
sarif_file: results.sarif
|
|
475
|
-
```
|
|
476
|
-
|
|
477
|
-
[Full documentation →](docs/CLI_GUIDE.md#code-inspection-pipeline-new-in-v229)
|
|
478
|
-
|
|
479
|
-
## License
|
|
480
|
-
|
|
481
|
-
**Fair Source License 0.9** - Free for students, educators, and teams ≤5 employees. Commercial license ($99/dev/year) for larger organizations. [Details →](LICENSE)
|
|
482
|
-
|
|
483
|
-
---
|
|
484
|
-
|
|
485
|
-
**Built by [Smart AI Memory](https://smartaimemory.com)** · [Documentation](docs/) · [Examples](examples/) · [Issues](https://github.com/Smart-AI-Memory/empathy/issues)
|
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
agents/compliance_anticipation_agent.py,sha256=p8ZjJqTwnbv9e6PddNV20Ee-d80gqdJ7FGDho_K2viY,48738
|
|
2
|
-
agents/epic_integration_wizard.py,sha256=axhSisp72Yl8gcgNQBrk-c4heVtTzGQzzD_a5lqALAM,17329
|
|
3
|
-
agents/trust_building_behaviors.py,sha256=UqTlMLwEJ7xJ5IMgdAoNAvOnA_Do4GRQuRaUwLwWLdY,33109
|
|
4
|
-
agents/code_inspection/patterns/inspection/recurring_B112.json,sha256=i0Oy4i8FoNb7wghhLJBscuac6dRrWCgjmxOQJejiJqk,745
|
|
5
|
-
agents/code_inspection/patterns/inspection/recurring_F541.json,sha256=zKKZs_6BkDRslzEuor78BS1nr49oUR426r2MQMOVUXs,492
|
|
6
|
-
agents/code_inspection/patterns/inspection/recurring_FORMAT.json,sha256=o-Xe8X5gbHvZyPXcZPpYam7icVYx0fwQIMX9YHVtg70,1490
|
|
7
|
-
agents/code_inspection/patterns/inspection/recurring_bug_20250822_def456.json,sha256=-ZMxXDBqXFLX1DXe4p1yI5U6lMwn-zH2zmLZB8Ylwgc,464
|
|
8
|
-
agents/code_inspection/patterns/inspection/recurring_bug_20250915_abc123.json,sha256=ek_2bKCUSwdHoyHM3xEWEC_4IaJO9HAS_51oUI7lRfU,464
|
|
9
|
-
agents/code_inspection/patterns/inspection/recurring_bug_20251212_3c5b9951.json,sha256=fAVGiraItm_ltT_ULR4ueSQJ2k4BYc8rcU69hhddSGE,469
|
|
10
|
-
agents/code_inspection/patterns/inspection/recurring_bug_20251212_97c0f72f.json,sha256=YkH2fZXGVGv-xv0pw0W8qmRxvrdRdSIgnukfzIXsCTU,469
|
|
11
|
-
agents/code_inspection/patterns/inspection/recurring_bug_20251212_a0871d53.json,sha256=JoBXmzdcFAX6DBGlM3Nb2430D8FWFLR3Mx66yYFwb6I,469
|
|
12
|
-
agents/code_inspection/patterns/inspection/recurring_bug_20251212_a9b6ec41.json,sha256=RnqaCoqGdNUVN36hx2tlyRMulzCuzXvpqNMYOPZLTwk,469
|
|
13
|
-
agents/code_inspection/patterns/inspection/recurring_bug_null_001.json,sha256=yztgivhfu8JRevB8AleGmNWSJpLUtWVRnZN3bMIJoLU,442
|
|
14
|
-
agents/code_inspection/patterns/inspection/recurring_builtin.json,sha256=ax-DHlUPqP3_gZK7mpEmn0VMqieQ4IikrY4bWaY-Xws,405
|
|
15
|
-
coach_wizards/__init__.py,sha256=uPtG4MhOgMfNw-n-Ld_cjxJLOBKbEv-WuaueHYd06xA,1352
|
|
16
|
-
coach_wizards/accessibility_wizard.py,sha256=PCMO-FjsppfVatpyEqdqpki6pcJcm-VksOHCmYhvRvo,2622
|
|
17
|
-
coach_wizards/api_wizard.py,sha256=1j5yVZIar4n8Lp9l1TOr2qYeAb_mBjkpiVYimo6sBx0,2556
|
|
18
|
-
coach_wizards/base_wizard.py,sha256=OSZOX1ZVWH1hhAUrHOBDvx3WBtA7GjtA-Mm0u-1Umqo,5821
|
|
19
|
-
coach_wizards/cicd_wizard.py,sha256=vAgkWEBpqCbDOxPjBg215OwpFy2mZ0t-EkDX3wmykN0,2483
|
|
20
|
-
coach_wizards/compliance_wizard.py,sha256=amZih3Mya8fGJIXwydJTDMysM8An6fKWg4H4ERDIsmw,2576
|
|
21
|
-
coach_wizards/database_wizard.py,sha256=kIPVDnShzAjjC17kNSDnWyWBQGIKQahnZ77VuaYKacY,2586
|
|
22
|
-
coach_wizards/debugging_wizard.py,sha256=Jrm4nl_w3EQUs28R6cmW0enUY3wfpBWO_o3KrxEFC4w,2605
|
|
23
|
-
coach_wizards/documentation_wizard.py,sha256=MSQzdup-o2cjbyTlaM__eb7EJKJfspPrND4hhq5eCDo,2629
|
|
24
|
-
coach_wizards/generate_wizards.py,sha256=-AS30t6IPFH3G1MHxUsVGJ-uJLoYLFIZSfvrb0bQljk,12375
|
|
25
|
-
coach_wizards/localization_wizard.py,sha256=8mg-JZEbd_KGkMbXpkGhkEShFB77kEQhXyuiz20c8oQ,2638
|
|
26
|
-
coach_wizards/migration_wizard.py,sha256=V3jYOXAH_6dzGdlzqtpKuiAyNCvcHc5Ky53WOL_MVk0,2585
|
|
27
|
-
coach_wizards/monitoring_wizard.py,sha256=bxCrSs4aNEytC0YyFK_nrf6RVTAS5vKCkD3eItP7GVo,2557
|
|
28
|
-
coach_wizards/observability_wizard.py,sha256=cN7EyemptnzDO9Y-R1-Lzmc1uXZGVw2UlQ_xQaDuzM0,2622
|
|
29
|
-
coach_wizards/performance_wizard.py,sha256=8CerXAg7nO3ze6NwqaVXHTFPKufubSniF0m5Mmd1-5A,2648
|
|
30
|
-
coach_wizards/refactoring_wizard.py,sha256=1AuRyX45KI63n_-fvvbRXamqvPbrB-O1B7TPPc2CcDQ,2627
|
|
31
|
-
coach_wizards/scaling_wizard.py,sha256=yLULCkflLoBKS4hOSBPQuKKGBGHgKExnuEp5WLTIY-8,2596
|
|
32
|
-
coach_wizards/security_wizard.py,sha256=tr1iq0egAMLCM-wOFhTDN5dHQRFuhSshXSkv17Jm7eM,2603
|
|
33
|
-
coach_wizards/testing_wizard.py,sha256=M2RtaTa1WHsk42svJAEZpLySU3PXJJZn2jigouMJrG0,2561
|
|
34
|
-
empathy_framework-2.4.0.dist-info/licenses/LICENSE,sha256=IJ9eeI5KSrD5P7alsn7sI_6_1bDihxBA5S4Sen4jf2k,4937
|
|
35
|
-
empathy_healthcare_plugin/__init__.py,sha256=FvVcD7WQTlmCCLgSPfM-FPT2l-ma1oAACBZWhtYFAUA,296
|
|
36
|
-
empathy_healthcare_plugin/protocols/cardiac.json,sha256=uShOvI2RQJYLZacLT2R_aHfsjvJdyCu_gYfpMfK3N74,2088
|
|
37
|
-
empathy_healthcare_plugin/protocols/post_operative.json,sha256=nqh3ydPY8FNSLv-Q3QmH8Dsyc1c4LvQxUSP84B8W6xk,2021
|
|
38
|
-
empathy_healthcare_plugin/protocols/respiratory.json,sha256=wNDprggFDGRxxHNwchC19N8aoyaN74RnhYN7lNookDI,2136
|
|
39
|
-
empathy_healthcare_plugin/protocols/sepsis.json,sha256=yXKt8QmDaAeTgHitqJJ-N9J9pkHRqGxZM_jJl_wDG6A,3631
|
|
40
|
-
empathy_llm_toolkit/README.md,sha256=wKfp80nOvQkyU2qkBMAdF9cPPR3iaHuia_2AfiXVaFM,12273
|
|
41
|
-
empathy_llm_toolkit/__init__.py,sha256=f-03NR50lLHZ1gYwOUm8crn-bsrJZq2WQs9ZG3gTyaY,667
|
|
42
|
-
empathy_llm_toolkit/claude_memory.py,sha256=L4XaIDR_5yugYz4ITJw3ofWBxYQWeI3W3Cfs09TB2_Y,14872
|
|
43
|
-
empathy_llm_toolkit/code_health.py,sha256=w18jHen6Ov_Jo6IoCgj0uTiSbydztxUB8buOiQeZS1w,42414
|
|
44
|
-
empathy_llm_toolkit/contextual_patterns.py,sha256=cF6dm7RC5lS-8X8BPBBTe6aLAazk1XlB4C1qEfnjFNA,12068
|
|
45
|
-
empathy_llm_toolkit/core.py,sha256=2qhOByUCGtat3zEXiXptUmzriYZQ4cc7UFiQQLF7ApU,29336
|
|
46
|
-
empathy_llm_toolkit/git_pattern_extractor.py,sha256=TIrTLncTMhSs7KOOOQQNMfFz_wjhDAQbOGh5RucHNg0,14771
|
|
47
|
-
empathy_llm_toolkit/levels.py,sha256=8iH_mPRh72yFZ0wJgSB6K20XZTdfnw4gBanX6_4P6n8,7178
|
|
48
|
-
empathy_llm_toolkit/pattern_confidence.py,sha256=M9w37N621c7gA21U0cI0ApaV9TFKoQtP4dhUfjmzf7I,14207
|
|
49
|
-
empathy_llm_toolkit/pattern_resolver.py,sha256=uvrRZfROMQkaghTLHr7b6OtB6MlW-mgAV3_Il0LWBMk,9330
|
|
50
|
-
empathy_llm_toolkit/pattern_summary.py,sha256=FyEmPOOlyXXdr84vJFo2fUDE7i2quUaZqnsY6dMCF0Y,12342
|
|
51
|
-
empathy_llm_toolkit/providers.py,sha256=M_DrZr7Yq5c2edEoUGH20LUI9nmi9KOkqDvTku2dhBw,13958
|
|
52
|
-
empathy_llm_toolkit/session_status.py,sha256=JLANN2-rabNfhXLyxZhIuvPsCUCvbPG2VTjdDt1MFi8,25741
|
|
53
|
-
empathy_llm_toolkit/state.py,sha256=91wKNyIuOR82lc5TDslo1BN-wEn-waC8e4KZ6LxCeEA,7734
|
|
54
|
-
empathy_llm_toolkit/htmlcov/status.json,sha256=emOFm_dTJcNl_Bw_lh62qNbnU6yzhne8TWlQkrPVdrk,8544
|
|
55
|
-
empathy_llm_toolkit/security/htmlcov/status.json,sha256=ELS9bn59azqfEyyokI-nV4gQLPQh4bVwHsmhVbdrKYI,4402
|
|
56
|
-
empathy_os/__init__.py,sha256=x_xLXMLw5EF1rX7_a2NoC_uHKW5b2C7vV0tI78XJkVM,4485
|
|
57
|
-
empathy_os/cli.py,sha256=AUdUf6AAkWmnUoxx86d_kX2fh55Czs1oX_AlHhli2YU,51264
|
|
58
|
-
empathy_os/config.py,sha256=kVC9HW4FDavNCD_dIVrs3Ua9wNfxpX0jQID0q-1TiHQ,12334
|
|
59
|
-
empathy_os/coordination.py,sha256=3r2V3Hz4EJoxQZzQj_00WUgfqobssafHsYedOx0tTzQ,28328
|
|
60
|
-
empathy_os/core.py,sha256=7c5ev-LtDpHFt_HwVHIxuv9o0M9lFkmAmkAS3NluTvU,53201
|
|
61
|
-
empathy_os/cost_tracker.py,sha256=b42exbC0YXvuYOxqLNURTmrmeAgrj3WvzRfTAybyfeg,11902
|
|
62
|
-
empathy_os/discovery.py,sha256=lQWUPLpE6Dm57KVpLxjK00MyW5HdZF6HsmVn2gX_Iw4,9609
|
|
63
|
-
empathy_os/emergence.py,sha256=MNE5Q_Ude77FvjBb7HY11qzIcc5_gWVFTUD9g2IXWCw,11387
|
|
64
|
-
empathy_os/exceptions.py,sha256=SvfXisnEZdXv3YHNmCJRoDbyWFryoPst4Qnjy3lhau8,3360
|
|
65
|
-
empathy_os/feedback_loops.py,sha256=eY2nm_NHnJVQZL0Ki1Nyerl7FB9QI4XOo8p_moMxDC8,13383
|
|
66
|
-
empathy_os/levels.py,sha256=0r9XV_JYvJKiHZ8GCnECoGDp71AwCMUJ4XZEp1bIxGY,19212
|
|
67
|
-
empathy_os/leverage_points.py,sha256=4b9GlbWgIdHWUP49GXbOeUD9bKN3KanpUbI-FgjmIps,16772
|
|
68
|
-
empathy_os/logging_config.py,sha256=S_Ji4B_Paim2zzqH7LhCm0yrOiIF6cYQOu9VOGbNUJ4,7963
|
|
69
|
-
empathy_os/monitoring.py,sha256=S-JjvRRjZO5mTsrUjpKhQ5wtQ280hXRGT0iwrIuZY-M,13440
|
|
70
|
-
empathy_os/pattern_library.py,sha256=XzjmFGniQP_YRjlEH9hlViXrUJu3ghUiL0x8iAH_f5U,14049
|
|
71
|
-
empathy_os/persistence.py,sha256=Sq-ayzeC90Ca7rb6ey5CLqkZsyOQy6NGlwRoIOiSsEU,17541
|
|
72
|
-
empathy_os/redis_config.py,sha256=L8KoHFwhl-_twSswMfELUgOmANOTPRB9Yj8VXuxfSb4,5947
|
|
73
|
-
empathy_os/redis_memory.py,sha256=af6um0rADskKhlQBFi4YxTk8xq1wC-ZbVDlsvNXlioE,22941
|
|
74
|
-
empathy_os/templates.py,sha256=nCd-GLSw0c5zlGL2WNzBKSChUSabWRayN2E1fORXq-U,16900
|
|
75
|
-
empathy_os/trust_building.py,sha256=Osxb9Csxw4QsmcbWYhLm0ptj2_29l-7_OktTWfVGnWU,18600
|
|
76
|
-
empathy_os/workflows.py,sha256=fj0pOYXACM0Ck1u8xavBR8mSsb8S5jbFZo0XnyNv9_E,21750
|
|
77
|
-
empathy_software_plugin/SOFTWARE_PLUGIN_README.md,sha256=RXIOB9Mt-8JrfGAA3ZUuRPT34sThubrwUgg5iNcSKIc,22591
|
|
78
|
-
empathy_software_plugin/__init__.py,sha256=Ylyj95pSsoN9Zasam96DH61uBHoMJh3kbhO7k_VaCWo,310
|
|
79
|
-
empathy_software_plugin/cli.py,sha256=WEVF1Hues3U99mLKsN3YNy_9w4NnR2cs-EJBI4gPdkg,22037
|
|
80
|
-
empathy_software_plugin/plugin.py,sha256=NNZTILE5Npo4SahA4F_3awIizLHI32_wWTFAutvmsqQ,6700
|
|
81
|
-
wizards/__init__.py,sha256=5JJ6rtS5mwJtuZIgO2sYHZlCy0XJP2eyyCK5zMD6ZAc,2452
|
|
82
|
-
wizards/admission_assessment_wizard.py,sha256=-Th9bwu6Sd6V2jA4fciK35QpoFc40U1quZHDMdOH93U,23609
|
|
83
|
-
wizards/care_plan.py,sha256=YVjjmbdUptOSkgkbhCIioHbcgISgzvIhlRiHZ3xvUJQ,10728
|
|
84
|
-
wizards/clinical_assessment.py,sha256=LrH_ATyYw8e1IWPwR9GNtc4acnqLC3PaqTH-RMGtRQE,29581
|
|
85
|
-
wizards/discharge_planning.py,sha256=17oN6EvSaRS8kSGV4xkXmu_wx4qOAOzMOUnWAzHa3_Y,2364
|
|
86
|
-
wizards/discharge_summary_wizard.py,sha256=47hFpLNUXmRYPaaWK7ptVCtwHD8AuY8v-bbPzDeTO-c,17916
|
|
87
|
-
wizards/dosage_calculation.py,sha256=UST0Y2hwRPcEomqXm6u_TxcDO6tvBvKdYb3lVuzGZUQ,20167
|
|
88
|
-
wizards/incident_report_wizard.py,sha256=IbKcvtDynNTDSFSN4SWG4FpXpyQrjaRE4dADMvHDjQk,17131
|
|
89
|
-
wizards/medication_reconciliation.py,sha256=QYF-_k85oHNU9VHvHJ8XxLxBops9j0b2EI9_G5TvWxI,2708
|
|
90
|
-
wizards/nursing_assessment.py,sha256=WHh-co87ZaFgZRl7Ss1ldJ4lBanDm_3ePVpqWkdT0m4,5967
|
|
91
|
-
wizards/patient_education.py,sha256=1Tkh_z_R4OxgsUaHU8qmlsqS1EYR-WN_dLl3Hvrpkkk,23493
|
|
92
|
-
wizards/quality_improvement.py,sha256=eY4KEbHQOfvNI8ybgFwDR5BmRDAw7fQ-x6dtFmIUyik,27690
|
|
93
|
-
wizards/sbar_report.py,sha256=sVkiF6Vq3FFYqXIdI-ueN2HCMiGOTC519jcf1ccqEUQ,11519
|
|
94
|
-
wizards/sbar_wizard.py,sha256=CJ63JAXwcfBf6C3aYyxY2LODbARP9GPl0ZGJWLbx88E,21790
|
|
95
|
-
wizards/shift_handoff_wizard.py,sha256=SkoNB0nLQGg92yz4j1j3NBR2mGVe_rw1pTjOFDy-JH0,19092
|
|
96
|
-
wizards/soap_note_wizard.py,sha256=DBzuuuOvIONhwdfn8jaE4PCuGeKsFwM65XTb6gKFIy4,23572
|
|
97
|
-
wizards/treatment_plan.py,sha256=t2Qk5eCa1gobEUaBztnwem_p9OuJK5BKqJ-Po8vXuns,512
|
|
98
|
-
empathy_framework-2.4.0.dist-info/METADATA,sha256=5ZWCBwRdpnVQQyYcKaGt-h9D-OGZWCJXBPfHNCaS5RQ,20711
|
|
99
|
-
empathy_framework-2.4.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
100
|
-
empathy_framework-2.4.0.dist-info/entry_points.txt,sha256=SP9lDns_BjDg7AGhVaSi2RioGCWkRQk_LC7lQYsp-r8,280
|
|
101
|
-
empathy_framework-2.4.0.dist-info/top_level.txt,sha256=8zHB-_f0MI2K55LIEjCeaFNcog3_KgLBa_dDfzE8ESI,110
|
|
102
|
-
empathy_framework-2.4.0.dist-info/RECORD,,
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
[console_scripts]
|
|
2
|
-
empathy = empathy_os.cli:main
|
|
3
|
-
empathy-inspect = empathy_software_plugin.cli.inspect:main
|
|
4
|
-
empathy-memory = empathy_os.memory.control_panel:main
|
|
5
|
-
empathy-scan = empathy_software_plugin.cli:scan_command
|
|
6
|
-
empathy-sync-claude = empathy_llm_toolkit.cli.sync_claude:main
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"note":"This file is an internal implementation detail to speed up HTML report generation. Its format can change at any time. You might be looking for the JSON report: https://coverage.rtfd.io/cmd.html#cmd-json","format":5,"version":"7.11.2","globals":"1647e1602d568c377a9cb0dc3296bc7b","files":{"__init___py":{"hash":"1e943cec927dee34f9523b2eb67d8922","index":{"url":"__init___py.html","file":"__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"claude_memory_py":{"hash":"25f8fe4e69f6b1e4091924c070803e8a","index":{"url":"claude_memory_py.html","file":"claude_memory.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":169,"n_excluded":0,"n_missing":169,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"code_health_py":{"hash":"a78753eaebd08c9c2cb5f1cd5a14f723","index":{"url":"code_health_py.html","file":"code_health.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":503,"n_excluded":0,"n_missing":503,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"contextual_patterns_py":{"hash":"12004dba086f2def1d9e65bbf68a88f8","index":{"url":"contextual_patterns_py.html","file":"contextual_patterns.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":171,"n_excluded":0,"n_missing":171,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"core_py":{"hash":"aa25b266741f161b0fa2500af1db03da","index":{"url":"core_py.html","file":"core.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":177,"n_excluded":0,"n_missing":151,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"git_pattern_extractor_py":{"hash":"88e57b53ff683a92613ae343a55ad1bb","index":{"url":"git_pattern_extractor_py.html","file":"git_pattern_extractor.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":164,"n_excluded":0,"n_missing":164,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"levels_py":{"hash":"ef211f0c742ccdab452cbe36ac205815","index":{"url":"levels_py.html","file":"levels.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":33,"n_excluded":0,"n_missing":12,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"pattern_confidence_py":{"hash":"1806d001ef22f2f9c4f5cc24faa5724d","index":{"url":"pattern_confidence_py.html","file":"pattern_confidence.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":196,"n_excluded":0,"n_missing":196,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"pattern_resolver_py":{"hash":"af2687d544197eb576abe872270157a5","index":{"url":"pattern_resolver_py.html","file":"pattern_resolver.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":121,"n_excluded":0,"n_missing":121,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"pattern_summary_py":{"hash":"51c42611c0d7a57f4e5c9f487f3b0882","index":{"url":"pattern_summary_py.html","file":"pattern_summary.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":178,"n_excluded":0,"n_missing":178,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"providers_py":{"hash":"8b779f9132bea067bec66007bd492b45","index":{"url":"providers_py.html","file":"providers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":106,"n_excluded":0,"n_missing":76,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_10414145323772df___init___py":{"hash":"dec456df46eda04d5d3381b09af05c36","index":{"url":"z_10414145323772df___init___py.html","file":"security/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":3,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_10414145323772df_audit_logger_py":{"hash":"9197b939a93f6b8dd8549ab6b73f0887","index":{"url":"z_10414145323772df_audit_logger_py.html","file":"security/audit_logger.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":247,"n_excluded":0,"n_missing":247,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_10414145323772df_audit_logger_example_py":{"hash":"ecc80543a0cac77b9b5a52d9d8451793","index":{"url":"z_10414145323772df_audit_logger_example_py.html","file":"security/audit_logger_example.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":59,"n_excluded":0,"n_missing":59,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_10414145323772df_pii_scrubber_py":{"hash":"0254532a873c529be428a4d88663e917","index":{"url":"z_10414145323772df_pii_scrubber_py.html","file":"security/pii_scrubber.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":140,"n_excluded":0,"n_missing":140,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_10414145323772df_secrets_detector_py":{"hash":"b160d5903a118f959559e32f7535d7e2","index":{"url":"z_10414145323772df_secrets_detector_py.html","file":"security/secrets_detector.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":199,"n_excluded":0,"n_missing":199,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_10414145323772df_secrets_detector_example_py":{"hash":"ba9b9af2e80e78ec21a15712e06dd279","index":{"url":"z_10414145323772df_secrets_detector_example_py.html","file":"security/secrets_detector_example.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":145,"n_excluded":0,"n_missing":145,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_10414145323772df_secure_memdocs_py":{"hash":"47c339d82b66068fb9a831fffb58bc8a","index":{"url":"z_10414145323772df_secure_memdocs_py.html","file":"security/secure_memdocs.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":350,"n_excluded":0,"n_missing":350,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_10414145323772df_secure_memdocs_example_py":{"hash":"3fd076ca92a0a84002c57d80cfed902f","index":{"url":"z_10414145323772df_secure_memdocs_example_py.html","file":"security/secure_memdocs_example.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":106,"n_excluded":0,"n_missing":106,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"session_status_py":{"hash":"4c8d6be4bbdac24bc27d0c27890532a6","index":{"url":"session_status_py.html","file":"session_status.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":312,"n_excluded":0,"n_missing":312,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"state_py":{"hash":"724ab29020a3a3870ac6b9c94c71127d","index":{"url":"state_py.html","file":"state.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":87,"n_excluded":0,"n_missing":40,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_984ef1e268fea449___init___py":{"hash":"10fa30f44c3688eb2de5302412aa33d6","index":{"url":"z_984ef1e268fea449___init___py.html","file":"wizards/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":5,"n_excluded":0,"n_missing":5,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_984ef1e268fea449_base_wizard_py":{"hash":"590f2d248a77ea3e621b9f3c4ded2397","index":{"url":"z_984ef1e268fea449_base_wizard_py.html","file":"wizards/base_wizard.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":56,"n_excluded":0,"n_missing":56,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_984ef1e268fea449_customer_support_wizard_py":{"hash":"f92a98bbbec12fad579ac19787971b08","index":{"url":"z_984ef1e268fea449_customer_support_wizard_py.html","file":"wizards/customer_support_wizard.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":17,"n_excluded":0,"n_missing":17,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_984ef1e268fea449_healthcare_wizard_py":{"hash":"96977dfa18d691fdd84424311686d23a","index":{"url":"z_984ef1e268fea449_healthcare_wizard_py.html","file":"wizards/healthcare_wizard.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":57,"n_excluded":0,"n_missing":57,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_984ef1e268fea449_technology_wizard_py":{"hash":"6998c841130aa6e0982dc586006a5640","index":{"url":"z_984ef1e268fea449_technology_wizard_py.html","file":"wizards/technology_wizard.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":19,"n_excluded":0,"n_missing":19,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}}}}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"note":"This file is an internal implementation detail to speed up HTML report generation. Its format can change at any time. You might be looking for the JSON report: https://coverage.rtfd.io/cmd.html#cmd-json","format":5,"version":"7.11.2","globals":"93e0a98f3da7f95e5ae873f233acfe8f","files":{"z_0da0bc3caf3df21d___init___py":{"hash":"678b97c61cc7e540c9ecbd0485aef62e","index":{"url":"z_0da0bc3caf3df21d___init___py.html","file":"/Users/patrickroebuck/empathy_11_6_2025/Empathy-framework/empathy_llm_toolkit/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_0da0bc3caf3df21d_claude_memory_py":{"hash":"9e1a909857359093b60c8b3641b9686f","index":{"url":"z_0da0bc3caf3df21d_claude_memory_py.html","file":"/Users/patrickroebuck/empathy_11_6_2025/Empathy-framework/empathy_llm_toolkit/claude_memory.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":169,"n_excluded":0,"n_missing":132,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_0da0bc3caf3df21d_core_py":{"hash":"45f6bf0d1f0f9b193700d313f3999f0a","index":{"url":"z_0da0bc3caf3df21d_core_py.html","file":"/Users/patrickroebuck/empathy_11_6_2025/Empathy-framework/empathy_llm_toolkit/core.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":124,"n_excluded":0,"n_missing":100,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_0da0bc3caf3df21d_levels_py":{"hash":"029cd19bbfaefe72a2df6fb26fafbb07","index":{"url":"z_0da0bc3caf3df21d_levels_py.html","file":"/Users/patrickroebuck/empathy_11_6_2025/Empathy-framework/empathy_llm_toolkit/levels.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":33,"n_excluded":0,"n_missing":12,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_0da0bc3caf3df21d_providers_py":{"hash":"8a61e565ded340098a9717471cb139cc","index":{"url":"z_0da0bc3caf3df21d_providers_py.html","file":"/Users/patrickroebuck/empathy_11_6_2025/Empathy-framework/empathy_llm_toolkit/providers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":104,"n_excluded":0,"n_missing":74,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"__init___py":{"hash":"bc61a9c102480a73e01fb8f507fe604c","index":{"url":"__init___py.html","file":"__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":3,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"audit_logger_py":{"hash":"288003e820abd1edb81b099a12e58af5","index":{"url":"audit_logger_py.html","file":"audit_logger.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":244,"n_excluded":0,"n_missing":72,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"audit_logger_example_py":{"hash":"8c491197716328c7faed6badacb3a68b","index":{"url":"audit_logger_example_py.html","file":"audit_logger_example.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":60,"n_excluded":0,"n_missing":60,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"pii_scrubber_py":{"hash":"9768c14c0e1e90619f7d80f059ca4395","index":{"url":"pii_scrubber_py.html","file":"pii_scrubber.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":140,"n_excluded":0,"n_missing":107,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"secrets_detector_py":{"hash":"36cd068d345d0328e6959132de4ade69","index":{"url":"secrets_detector_py.html","file":"secrets_detector.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":199,"n_excluded":0,"n_missing":199,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"test_audit_logger_py":{"hash":"a5a92daff7da2027470aca6a728adbb8","index":{"url":"test_audit_logger_py.html","file":"test_audit_logger.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":185,"n_excluded":0,"n_missing":1,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_0da0bc3caf3df21d_state_py":{"hash":"3ed61e7760d5e588d4d6743dffa9094f","index":{"url":"z_0da0bc3caf3df21d_state_py.html","file":"/Users/patrickroebuck/empathy_11_6_2025/Empathy-framework/empathy_llm_toolkit/state.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":87,"n_excluded":0,"n_missing":40,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}}}}
|
|
File without changes
|
|
File without changes
|