empathy-framework 3.5.3__tar.gz → 3.5.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/CHANGELOG.md +43 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/PKG-INFO +11 -3
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/README.md +8 -2
- empathy_framework-3.5.6/docs/guides/WORKFLOW_PATTERNS.md +235 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_framework.egg-info/PKG-INFO +11 -3
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_framework.egg-info/SOURCES.txt +33 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_framework.egg-info/requires.txt +2 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_llm_toolkit/__init__.py +2 -1
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_llm_toolkit/core.py +9 -1
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_llm_toolkit/providers.py +177 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/pyproject.toml +5 -4
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/cli.py +181 -14
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/cli_unified.py +1 -1
- empathy_framework-3.5.6/src/empathy_os/redis_config.py +303 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/workflow_commands.py +2 -2
- empathy_framework-3.5.6/tests/test_agent_orchestration_wizard.py +515 -0
- empathy_framework-3.5.6/tests/test_ai_collaboration_wizard.py +810 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_all_wizards.py +10 -2
- empathy_framework-3.5.6/tests/test_base.py +603 -0
- empathy_framework-3.5.6/tests/test_baseline.py +997 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_book_chapter_wizard.py +10 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_book_production_agents.py +19 -1
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_bug_predict_workflow.py +3 -69
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_claude_memory_extended.py +2 -1
- empathy_framework-3.5.6/tests/test_code_review.py +477 -0
- empathy_framework-3.5.6/tests/test_code_review_wizard.py +761 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_code_review_workflow.py +0 -82
- empathy_framework-3.5.6/tests/test_config_loaders.py +1216 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_cost_tracker.py +8 -8
- empathy_framework-3.5.6/tests/test_dependency_check.py +451 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_dependency_check_workflow.py +0 -73
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_discovery.py +8 -11
- empathy_framework-3.5.6/tests/test_document_gen.py +539 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_document_gen_workflow.py +1 -49
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_empathy_os_cli_extended.py +4 -4
- empathy_framework-3.5.6/tests/test_graph.py +1136 -0
- empathy_framework-3.5.6/tests/test_health_check.py +635 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_intelligence_integration.py +6 -2
- empathy_framework-3.5.6/tests/test_linter_parsers.py +1134 -0
- empathy_framework-3.5.6/tests/test_long_term.py +475 -0
- empathy_framework-3.5.6/tests/test_multi_model_wizard.py +599 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_perf_audit_workflow.py +1 -48
- empathy_framework-3.5.6/tests/test_performance_profiling_wizard.py +784 -0
- empathy_framework-3.5.6/tests/test_pr_review.py +977 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_production_smoke.py +6 -0
- empathy_framework-3.5.6/tests/test_provider_config.py +477 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_redis_bootstrap.py +16 -3
- empathy_framework-3.5.6/tests/test_redis_config.py +262 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_refactor_golden.py +4 -8
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_refactor_plan_workflow.py +1 -48
- empathy_framework-3.5.6/tests/test_refactoring.py +974 -0
- empathy_framework-3.5.6/tests/test_registry.py +412 -0
- empathy_framework-3.5.6/tests/test_release_prep.py +1154 -0
- empathy_framework-3.5.6/tests/test_reporting.py +373 -0
- empathy_framework-3.5.6/tests/test_reports.py +1169 -0
- empathy_framework-3.5.6/tests/test_sbar_wizard.py +171 -0
- empathy_framework-3.5.6/tests/test_scanner.py +771 -0
- empathy_framework-3.5.6/tests/test_secure_release.py +359 -0
- empathy_framework-3.5.6/tests/test_security_audit.py +1084 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_security_audit_workflow.py +1 -49
- empathy_framework-3.5.6/tests/test_security_learning_wizard.py +446 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_security_negative_cases.py +39 -36
- empathy_framework-3.5.6/tests/test_short_term.py +709 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_smart_router.py +9 -1
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_summary_index.py +3 -0
- empathy_framework-3.5.6/tests/test_sync_claude.py +292 -0
- empathy_framework-3.5.6/tests/test_tech_debt_wizard.py +471 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_templates.py +3 -11
- empathy_framework-3.5.6/tests/test_timeout.py +519 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_token_estimator.py +2 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_wizard_api.py +111 -131
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_workflow_wizard_integration.py +22 -19
- empathy_framework-3.5.3/src/empathy_os/redis_config.py +0 -216
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/.bandit +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/CODE_OF_CONDUCT.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/CONTRIBUTING.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/LICENSE +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/MANIFEST.in +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/QUICKSTART.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/SECURITY.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/agents/code_inspection/patterns/inspection/recurring_B112.json +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/agents/code_inspection/patterns/inspection/recurring_F541.json +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/agents/code_inspection/patterns/inspection/recurring_FORMAT.json +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/agents/code_inspection/patterns/inspection/recurring_bug_20250822_def456.json +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/agents/code_inspection/patterns/inspection/recurring_bug_20250915_abc123.json +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/agents/code_inspection/patterns/inspection/recurring_bug_20251212_3c5b9951.json +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/agents/code_inspection/patterns/inspection/recurring_bug_20251212_97c0f72f.json +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/agents/code_inspection/patterns/inspection/recurring_bug_20251212_a0871d53.json +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/agents/code_inspection/patterns/inspection/recurring_bug_20251212_a9b6ec41.json +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/agents/code_inspection/patterns/inspection/recurring_bug_null_001.json +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/agents/code_inspection/patterns/inspection/recurring_builtin.json +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/agents/compliance_anticipation_agent.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/agents/epic_integration_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/agents/trust_building_behaviors.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/__init__.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/accessibility_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/api_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/base_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/cicd_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/compliance_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/database_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/debugging_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/documentation_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/generate_wizards.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/localization_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/migration_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/monitoring_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/observability_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/performance_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/prompt_engineering_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/refactoring_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/scaling_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/security_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/coach_wizards/testing_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/api-reference/ai-wizards.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/api-reference/config.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/api-reference/core.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/api-reference/empathy-os.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/api-reference/index.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/api-reference/llm-toolkit.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/api-reference/multi-agent.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/api-reference/pattern-library.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/api-reference/persistence.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/api-reference/software-wizards.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/api-reference/wizards.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/examples/adaptive-learning-system.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/examples/multi-agent-team-coordination.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/examples/sbar-clinical-handoff.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/examples/simple-chatbot.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/examples/webhook-event-integration.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/getting-started/redis-setup.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/guides/DISTRIBUTION_POLICY.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/guides/MCP_PUBLISH_INSTRUCTIONS.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/guides/MKDOCS_TUTORIAL.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/guides/PUBLISHING.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/guides/claude-memory-integration.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/guides/foreword.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/guides/healthcare-wizards.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/guides/how-to-read-this-book.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/guides/multi-model-workflows.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/guides/pattern-catalog.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/guides/preface.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/guides/software-development-wizards.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/guides/trust-circuit-breaker.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/docs/index.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy.config.example.json +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy.config.example.yml +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_framework.egg-info/dependency_links.txt +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_framework.egg-info/entry_points.txt +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_framework.egg-info/top_level.txt +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_healthcare_plugin/__init__.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_healthcare_plugin/protocols/cardiac.json +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_healthcare_plugin/protocols/post_operative.json +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_healthcare_plugin/protocols/respiratory.json +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_healthcare_plugin/protocols/sepsis.json +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_llm_toolkit/README.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_llm_toolkit/claude_memory.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_llm_toolkit/code_health.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_llm_toolkit/contextual_patterns.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_llm_toolkit/git_pattern_extractor.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_llm_toolkit/levels.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_llm_toolkit/pattern_confidence.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_llm_toolkit/pattern_resolver.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_llm_toolkit/pattern_summary.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_llm_toolkit/session_status.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_llm_toolkit/state.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_software_plugin/SOFTWARE_PLUGIN_README.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_software_plugin/__init__.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_software_plugin/cli.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/empathy_software_plugin/plugin.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/README.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/WIZARDS_MASTER_GUIDE.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/WIZARD_DASHBOARD_IMPLEMENTATION.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/WIZARD_DASHBOARD_STATE_MANAGEMENT.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/WIZARD_DASHBOARD_WIREFRAMES.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/ai_wizards/all_ai_wizards_demo.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/ai_wizards/tests/test_ai_wizards.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/ai_wizards/tests/test_performance_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/ai_wizards/tests/test_security_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/claude_memory/README-SECURITY.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/claude_memory/enterprise-CLAUDE-secure.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/claude_memory/example-with-imports.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/claude_memory/project-CLAUDE.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/claude_memory/user-CLAUDE.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/ALL_DOCUMENTATION_COMPLETE.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/ALPHA_TESTER_RECRUITMENT.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/CHANGELOG.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/COMPLETE_IMPLEMENTATION_REPORT.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/CONTRIBUTING.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/DISCORD_SETUP_GUIDE.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/DOCUMENTATION_COMPLETE.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/FINAL_DELIVERABLES_SUMMARY.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/IDE_INTEGRATION_PLAN.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/IDE_INTEGRATION_SETUP_COMPLETE.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/IMPLEMENTATION_COMPLETE.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/JETBRAINS_PLUGIN_COMPLETE.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/MARKETPLACE_READINESS.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/PHASE_1_COMPLETE_AND_NEXT_STEPS.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/PRIVACY.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/README.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/TODO.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/VSCODE_EXTENSION_COMPLETE.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/WIZARD_IMPLEMENTATION_COMPLETE.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/__init__.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/coach-lsp-server/README.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/coach-lsp-server/server.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/coach.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/demo.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/demo_all_wizards.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/docs/API.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/docs/CUSTOM_WIZARDS.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/docs/FAQ.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/docs/INSTALLATION.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/docs/TROUBLESHOOTING.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/docs/USER_MANUAL.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/docs/WIZARDS.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/health_check.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/jetbrains-plugin/README.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/jetbrains-plugin-complete/README.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/lsp/README.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/lsp/__init__.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/lsp/cache.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/lsp/context_collector.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/lsp/error_handler.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/lsp/logging_config.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/lsp/protocol/__init__.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/lsp/protocol/messages.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/lsp/server.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/lsp/tests/__init__.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/lsp/tests/test_e2e.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/lsp/tests/test_server.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/setup/DISCORD_SETUP_INSTRUCTIONS.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/setup/GITHUB_SETUP_GUIDE.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/setup/README.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/setup/SETUP_COMPLETE.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/shared_learning.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/tests/__init__.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/tests/test_all_wizards.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/tests/test_coach_wizards.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/tests/test_new_wizards.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/vscode-extension/README.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/vscode-extension-complete/README.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/__init__.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/accessibility_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/api_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/base_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/compliance_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/database_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/debugging_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/design_review_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/devops_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/documentation_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/localization_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/monitoring_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/onboarding_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/performance_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/refactoring_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/retrospective_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/security_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/coach/wizards/testing_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/debugging_demo.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/domain_wizards/all_domain_wizards_demo.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/domain_wizards/healthcare_example.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/domain_wizards/tests/test_healthcare_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/level_5_transformative/BLOG_POST.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/level_5_transformative/README.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/level_5_transformative/data/deployment_pipeline.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/level_5_transformative/data/healthcare_handoff_code.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/level_5_transformative/run_full_demo.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/llm_toolkit_demo.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/multi_llm_usage.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/performance_demo.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/quickstart/README.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/quickstart/minimal_example.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/quickstart.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/redis_exploration.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/security_demo.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/security_integration_example.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/simple_usage.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/smart_team_quickstart.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/software_plugin_complete_demo.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/streamlit_debug_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/test_debugging_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/test_short_term_memory_full.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/testing_demo.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/wizard-dashboard/README.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/wizard-dashboard/SETUP.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/workflows/README.md +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/workflows/code_review_example.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/workflows/doc_gen_example.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/workflows/multi_model_example.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/examples/workflows/research_example.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/requirements.txt +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/setup.cfg +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/__init__.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/config.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/coordination.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/core.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/cost_tracker.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/discovery.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/emergence.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/exceptions.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/feedback_loops.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/levels.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/leverage_points.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/logging_config.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/monitoring.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/pattern_library.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/persistence.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/platform_utils.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/redis_memory.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/templates.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/src/empathy_os/trust_building.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_advanced_debugging.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_agent_factory.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_agent_factory_memory.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_agent_factory_resilience.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_audit_logger.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_audit_logger_extended.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_base_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_claude_memory.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_cli.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_clinical_protocol_monitor.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_code_health.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_code_review_crew_integration.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_code_review_pipeline.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_code_review_pipeline_workflow.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_config.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_control_panel.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_control_panel_security.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_coordination.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_core.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_core_reliability.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_coverage_analyzer.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_crewai_adapter.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_emergence.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_empathy_llm_core.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_empathy_llm_security.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_empathy_os.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_enhanced_testing.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_exceptions.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_executor_integration.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_fallback.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_feedback_loops.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_health_check_workflow.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_levels.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_leverage_points.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_llm_integration.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_llm_toolkit_levels.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_logging_config.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_memory_graph.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_model_registry.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_model_router.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_monitoring.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_pattern_library.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_persistence.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_pii_scrubber.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_pii_scrubber_extended.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_platform_compat_ci.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_platform_utils.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_plugin_base.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_plugin_registry.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_pr_review_workflow.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_progress.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_prompt_engineering_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_protocol_checker.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_protocol_loader.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_providers.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_quality_analyzer.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_redis_integration.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_redis_memory.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_refactoring_crew.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_resilience.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_secrets_detector.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_secure_memdocs.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_secure_memdocs_extended.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_secure_release_workflow.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_security_audit_crew.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_security_crew_integration.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_security_integration.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_security_scan.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_sensor_parsers.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_session_status.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_software_cli.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_software_integration.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_software_plugin.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_software_plugin_cli.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_state.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_step_config.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_telemetry.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_test_suggester.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_trajectory_analyzer.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_trust_building.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_trust_circuit_breaker.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_unified_memory.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_validation.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_wizard_outputs.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_wizard_site_comprehensive.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_workflow_base.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_workflow_commands.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/tests/test_xml_prompts.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/wizards/__init__.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/wizards/admission_assessment_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/wizards/care_plan.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/wizards/clinical_assessment.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/wizards/discharge_planning.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/wizards/discharge_summary_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/wizards/dosage_calculation.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/wizards/incident_report_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/wizards/medication_reconciliation.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/wizards/nursing_assessment.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/wizards/patient_education.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/wizards/quality_improvement.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/wizards/sbar_report.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/wizards/sbar_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/wizards/shift_handoff_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/wizards/soap_note_wizard.py +0 -0
- {empathy_framework-3.5.3 → empathy_framework-3.5.6}/wizards/treatment_plan.py +0 -0
|
@@ -5,6 +5,49 @@ All notable changes to the Empathy Framework will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.5.4] - 2025-12-29
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
#### Comprehensive Test Suite Expansion
|
|
13
|
+
|
|
14
|
+
- Added 30+ new test files with comprehensive coverage
|
|
15
|
+
- New test modules:
|
|
16
|
+
- `test_baseline.py` - 71 tests for BaselineManager suppression system
|
|
17
|
+
- `test_graph.py` - Memory graph knowledge base tests
|
|
18
|
+
- `test_linter_parsers.py` - Multi-linter parser tests (ESLint, Pylint, MyPy, TypeScript, Clippy)
|
|
19
|
+
- `test_agent_orchestration_wizard.py` - 54 tests for agent orchestration
|
|
20
|
+
- `test_code_review_wizard.py` - 52 tests for code review wizard
|
|
21
|
+
- `test_tech_debt_wizard.py` - 39 tests for tech debt tracking
|
|
22
|
+
- `test_security_learning_wizard.py` - 35 tests for security learning
|
|
23
|
+
- `test_secure_release.py` - 31 tests for secure release pipeline
|
|
24
|
+
- `test_sync_claude.py` - 27 tests for Claude sync functionality
|
|
25
|
+
- `test_reporting.py` - 27 tests for reporting concepts
|
|
26
|
+
- `test_sbar_wizard.py` - Healthcare SBAR wizard tests
|
|
27
|
+
- Integration and performance test directories (`tests/integration/`, `tests/performance/`)
|
|
28
|
+
- **Project Indexing System** (`src/empathy_os/project_index/`) — JSON-based file tracking with:
|
|
29
|
+
- Automatic project structure scanning and indexing
|
|
30
|
+
- File metadata tracking (size, type, last modified)
|
|
31
|
+
- Codebase statistics and reports
|
|
32
|
+
- CrewAI integration for AI-powered analysis
|
|
33
|
+
- Test maintenance workflows (`test_lifecycle.py`, `test_maintenance.py`)
|
|
34
|
+
|
|
35
|
+
### Fixed
|
|
36
|
+
|
|
37
|
+
- **BaselineManager**: Fixed test isolation bug where `BASELINE_SCHEMA.copy()` created shallow copies, causing nested dictionaries to be shared across test instances. Changed to `copy.deepcopy(BASELINE_SCHEMA)` for proper isolation.
|
|
38
|
+
- **ESLint Parser Test**: Fixed `test_parse_eslint_text_multiple_files` - rule names must be lowercase letters and hyphens only (changed `rule-1` to `no-unused-vars`)
|
|
39
|
+
- **Lint Warnings**: Fixed ambiguous variable name `l` → `line` in scanner.py
|
|
40
|
+
- **Lint Warnings**: Fixed unused loop variable `pkg` → `_pkg` in test_dependency_check.py
|
|
41
|
+
|
|
42
|
+
### Tests
|
|
43
|
+
|
|
44
|
+
- Total tests: 5,603 passed, 72 skipped
|
|
45
|
+
- Coverage: 63.65% (exceeds 25% target)
|
|
46
|
+
- All workflow tests now pass with proper mocking
|
|
47
|
+
- Fixed 31+ previously failing workflow tests
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
8
51
|
## [3.5.3] - 2025-12-29
|
|
9
52
|
|
|
10
53
|
### Documentation
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: empathy-framework
|
|
3
|
-
Version: 3.5.
|
|
3
|
+
Version: 3.5.6
|
|
4
4
|
Summary: AI collaboration framework with persistent memory, anticipatory intelligence, code inspection, and multi-agent orchestration
|
|
5
5
|
Author-email: Patrick Roebuck <patrick.roebuck@smartAImemory.com>
|
|
6
6
|
Maintainer-email: Smart-AI-Memory <patrick.roebuck@smartAImemory.com>
|
|
@@ -225,6 +225,8 @@ Requires-Dist: ruff<1.0,>=0.1; extra == "dev"
|
|
|
225
225
|
Requires-Dist: coverage<8.0,>=7.0; extra == "dev"
|
|
226
226
|
Requires-Dist: bandit<2.0,>=1.7; extra == "dev"
|
|
227
227
|
Requires-Dist: pre-commit<4.0,>=3.0; extra == "dev"
|
|
228
|
+
Requires-Dist: httpx<1.0.0,>=0.27.0; extra == "dev"
|
|
229
|
+
Requires-Dist: fastapi<1.0.0,>=0.109.1; extra == "dev"
|
|
228
230
|
Provides-Extra: full
|
|
229
231
|
Requires-Dist: anthropic<1.0.0,>=0.8.0; extra == "full"
|
|
230
232
|
Requires-Dist: openai<2.0.0,>=1.6.0; extra == "full"
|
|
@@ -276,8 +278,8 @@ Dynamic: license-file
|
|
|
276
278
|
**The AI collaboration framework that predicts problems before they happen.**
|
|
277
279
|
|
|
278
280
|
[](https://pypi.org/project/empathy-framework/)
|
|
279
|
-
[](https://github.com/Smart-AI-Memory/empathy-framework/actions)
|
|
282
|
+
[](https://github.com/Smart-AI-Memory/empathy-framework)
|
|
281
283
|
[](LICENSE)
|
|
282
284
|
[](https://www.python.org)
|
|
283
285
|
|
|
@@ -287,6 +289,12 @@ pip install empathy-framework[full]
|
|
|
287
289
|
|
|
288
290
|
## What's New in v3.5.x
|
|
289
291
|
|
|
292
|
+
### Project Indexing & Test Suite Expansion (v3.5.4)
|
|
293
|
+
|
|
294
|
+
- **Project Indexing System** — JSON-based file tracking with automatic structure scanning, metadata tracking, and CrewAI integration
|
|
295
|
+
- **5,603 Tests** — Comprehensive test coverage at 64% with 30+ new test modules
|
|
296
|
+
- **BaselineManager Fix** — Resolved test isolation bug affecting suppression system
|
|
297
|
+
|
|
290
298
|
### Memory API Security Hardening (v3.5.0)
|
|
291
299
|
|
|
292
300
|
- **Input Validation** — Pattern IDs, agent IDs, and classifications validated to prevent path traversal and injection attacks
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
**The AI collaboration framework that predicts problems before they happen.**
|
|
4
4
|
|
|
5
5
|
[](https://pypi.org/project/empathy-framework/)
|
|
6
|
-
[](https://github.com/Smart-AI-Memory/empathy-framework/actions)
|
|
7
|
+
[](https://github.com/Smart-AI-Memory/empathy-framework)
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
[](https://www.python.org)
|
|
10
10
|
|
|
@@ -14,6 +14,12 @@ pip install empathy-framework[full]
|
|
|
14
14
|
|
|
15
15
|
## What's New in v3.5.x
|
|
16
16
|
|
|
17
|
+
### Project Indexing & Test Suite Expansion (v3.5.4)
|
|
18
|
+
|
|
19
|
+
- **Project Indexing System** — JSON-based file tracking with automatic structure scanning, metadata tracking, and CrewAI integration
|
|
20
|
+
- **5,603 Tests** — Comprehensive test coverage at 64% with 30+ new test modules
|
|
21
|
+
- **BaselineManager Fix** — Resolved test isolation bug affecting suppression system
|
|
22
|
+
|
|
17
23
|
### Memory API Security Hardening (v3.5.0)
|
|
18
24
|
|
|
19
25
|
- **Input Validation** — Pattern IDs, agent IDs, and classifications validated to prevent path traversal and injection attacks
|
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
# Workflow Patterns Guide
|
|
2
|
+
|
|
3
|
+
This guide helps you choose the right workflow pattern for your use case. The Empathy Framework supports three patterns, each optimized for different scenarios.
|
|
4
|
+
|
|
5
|
+
## Quick Decision
|
|
6
|
+
|
|
7
|
+
**Default: Crew** - Unless you have a specific reason to choose otherwise.
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
empathy workflow new my-workflow # Crew (default, recommended)
|
|
11
|
+
empathy workflow new my-workflow --base # Base pattern
|
|
12
|
+
empathy workflow new my-workflow --compose # Composition pattern
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## The Three Patterns
|
|
18
|
+
|
|
19
|
+
### 1. Crew Pattern (Default)
|
|
20
|
+
|
|
21
|
+
**What it is:** Multiple specialized AI agents collaborate on a task, each bringing domain expertise.
|
|
22
|
+
|
|
23
|
+
**Best for:**
|
|
24
|
+
- Analysis tasks requiring multiple perspectives
|
|
25
|
+
- Quality-critical workflows where thoroughness matters
|
|
26
|
+
- Tasks that benefit from debate/consensus (security audits, code reviews)
|
|
27
|
+
|
|
28
|
+
**Trade-offs:**
|
|
29
|
+
| Pros | Cons |
|
|
30
|
+
|------|------|
|
|
31
|
+
| Richer, more thorough analysis | Higher cost (multiple agents) |
|
|
32
|
+
| Multiple perspectives catch more issues | Longer execution time |
|
|
33
|
+
| Self-correcting through agent discussion | More complex to debug |
|
|
34
|
+
|
|
35
|
+
**Example from codebase:** `SecurityAuditCrew` - 5 agents (SecurityAnalyst, CodeReviewer, PentestExpert, ComplianceChecker, ReportWriter) collaborate on security analysis.
|
|
36
|
+
|
|
37
|
+
**When NOT to use:**
|
|
38
|
+
- Simple, single-purpose tasks
|
|
39
|
+
- Cost-sensitive batch operations
|
|
40
|
+
- When speed matters more than thoroughness
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
### 2. Base Pattern
|
|
45
|
+
|
|
46
|
+
**What it is:** Sequential stages with automatic model tier routing for cost optimization.
|
|
47
|
+
|
|
48
|
+
**Best for:**
|
|
49
|
+
- Single-purpose workflows with clear stages
|
|
50
|
+
- Cost-sensitive operations
|
|
51
|
+
- Tasks where stages naturally build on each other
|
|
52
|
+
|
|
53
|
+
**Trade-offs:**
|
|
54
|
+
| Pros | Cons |
|
|
55
|
+
|------|------|
|
|
56
|
+
| Cost-optimized (tier routing) | Single perspective |
|
|
57
|
+
| Predictable execution flow | Less thorough than crew |
|
|
58
|
+
| Built-in telemetry/progress tracking | Sequential only |
|
|
59
|
+
|
|
60
|
+
**Example from codebase:** `TestGenerationWorkflow` - stages: identify → analyze → generate → format
|
|
61
|
+
|
|
62
|
+
```python
|
|
63
|
+
class MyWorkflow(BaseWorkflow):
|
|
64
|
+
def define_steps(self) -> list[WorkflowStepConfig]:
|
|
65
|
+
return [
|
|
66
|
+
WorkflowStepConfig(
|
|
67
|
+
name="analyze",
|
|
68
|
+
tier=ModelTier.CAPABLE, # Routes to Sonnet/GPT-4o
|
|
69
|
+
prompt_template="Analyze: {input}"
|
|
70
|
+
),
|
|
71
|
+
WorkflowStepConfig(
|
|
72
|
+
name="summarize",
|
|
73
|
+
tier=ModelTier.CHEAP, # Routes to Haiku/GPT-4o-mini
|
|
74
|
+
prompt_template="Summarize: {previous_output}"
|
|
75
|
+
),
|
|
76
|
+
]
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
**When NOT to use:**
|
|
80
|
+
- Orchestrating multiple existing workflows
|
|
81
|
+
- Tasks requiring parallel execution
|
|
82
|
+
- When you need multi-agent collaboration
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
### 3. Composition Pattern
|
|
87
|
+
|
|
88
|
+
**What it is:** Orchestrate multiple existing workflows, optionally in parallel.
|
|
89
|
+
|
|
90
|
+
**Best for:**
|
|
91
|
+
- Meta-workflows that combine existing capabilities
|
|
92
|
+
- Parallel execution of independent analyses
|
|
93
|
+
- Custom result aggregation across workflows
|
|
94
|
+
|
|
95
|
+
**Trade-offs:**
|
|
96
|
+
| Pros | Cons |
|
|
97
|
+
|------|------|
|
|
98
|
+
| Reuse existing workflows | No built-in tier routing |
|
|
99
|
+
| Parallel execution possible | Manual cost aggregation |
|
|
100
|
+
| Flexible orchestration | More boilerplate |
|
|
101
|
+
|
|
102
|
+
**Example from codebase:** `SecureReleasePipeline` - orchestrates SecurityAuditWorkflow + CodeReviewWorkflow + ReleasePreparationWorkflow
|
|
103
|
+
|
|
104
|
+
```python
|
|
105
|
+
class MyPipeline:
|
|
106
|
+
async def execute(self, path: str) -> PipelineResult:
|
|
107
|
+
# Run in parallel
|
|
108
|
+
security_task = asyncio.create_task(
|
|
109
|
+
SecurityAuditWorkflow().execute(path)
|
|
110
|
+
)
|
|
111
|
+
review_task = asyncio.create_task(
|
|
112
|
+
CodeReviewWorkflow().execute(path)
|
|
113
|
+
)
|
|
114
|
+
|
|
115
|
+
security_result, review_result = await asyncio.gather(
|
|
116
|
+
security_task, review_task
|
|
117
|
+
)
|
|
118
|
+
|
|
119
|
+
return self._aggregate_results(security_result, review_result)
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
**When NOT to use:**
|
|
123
|
+
- Building a new standalone capability
|
|
124
|
+
- When you need tier-based cost optimization
|
|
125
|
+
- Simple single-stage tasks
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
|
|
129
|
+
## Decision Tree
|
|
130
|
+
|
|
131
|
+
```
|
|
132
|
+
Start
|
|
133
|
+
│
|
|
134
|
+
├─ "Am I combining 2+ existing workflows?"
|
|
135
|
+
│ └─ Yes → Composition
|
|
136
|
+
│ └─ No ↓
|
|
137
|
+
│
|
|
138
|
+
├─ "Do I need multiple AI perspectives?"
|
|
139
|
+
│ └─ Yes → Crew (default)
|
|
140
|
+
│ └─ No ↓
|
|
141
|
+
│
|
|
142
|
+
└─ "Is this a sequential, cost-sensitive task?"
|
|
143
|
+
└─ Yes → Base
|
|
144
|
+
└─ No → Crew (default)
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
---
|
|
148
|
+
|
|
149
|
+
## Configuration
|
|
150
|
+
|
|
151
|
+
Set your project's default pattern in `empathy.config.yml`:
|
|
152
|
+
|
|
153
|
+
```yaml
|
|
154
|
+
workflow:
|
|
155
|
+
default_pattern: crew # crew | base | compose
|
|
156
|
+
|
|
157
|
+
crew:
|
|
158
|
+
default_agents: 3 # Cost/quality tradeoff
|
|
159
|
+
timeout_seconds: 300
|
|
160
|
+
|
|
161
|
+
base:
|
|
162
|
+
default_tier: capable # cheap | capable | premium
|
|
163
|
+
enable_telemetry: true
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
Override per-workflow:
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
# Use base pattern even though project defaults to crew
|
|
170
|
+
empathy workflow new cost-sensitive-task --base
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
---
|
|
174
|
+
|
|
175
|
+
## Migration Paths
|
|
176
|
+
|
|
177
|
+
### Base → Crew
|
|
178
|
+
When your Base workflow needs richer analysis:
|
|
179
|
+
|
|
180
|
+
1. Identify the different "perspectives" your workflow should have
|
|
181
|
+
2. Create agent definitions for each perspective
|
|
182
|
+
3. Replace `define_steps()` with agent collaboration logic
|
|
183
|
+
|
|
184
|
+
### Crew → Composition
|
|
185
|
+
When you want to reuse your Crew alongside other workflows:
|
|
186
|
+
|
|
187
|
+
1. Keep your Crew as-is
|
|
188
|
+
2. Create a new Composition wrapper
|
|
189
|
+
3. Call your Crew from the composition alongside other workflows
|
|
190
|
+
|
|
191
|
+
### Composition → Base
|
|
192
|
+
When your composed workflows should be a single optimized pipeline:
|
|
193
|
+
|
|
194
|
+
1. Identify the core stages from each sub-workflow
|
|
195
|
+
2. Merge into a single `define_steps()` with tier routing
|
|
196
|
+
3. Remove the composition wrapper
|
|
197
|
+
|
|
198
|
+
---
|
|
199
|
+
|
|
200
|
+
## Comparison Table
|
|
201
|
+
|
|
202
|
+
| Aspect | Crew | Base | Compose |
|
|
203
|
+
|--------|------|------|---------|
|
|
204
|
+
| **Default** | ✅ Yes | No | No |
|
|
205
|
+
| **Cost** | High | Low-Medium | Varies |
|
|
206
|
+
| **Thoroughness** | High | Medium | Depends |
|
|
207
|
+
| **Speed** | Slow | Fast | Varies |
|
|
208
|
+
| **Complexity** | Medium | Low | Medium |
|
|
209
|
+
| **Parallelism** | Agent-level | No | Workflow-level |
|
|
210
|
+
| **Tier Routing** | No | Yes | Manual |
|
|
211
|
+
| **Telemetry** | Manual | Built-in | Manual |
|
|
212
|
+
|
|
213
|
+
---
|
|
214
|
+
|
|
215
|
+
## Examples from Empathy Framework
|
|
216
|
+
|
|
217
|
+
| Workflow | Pattern | Why |
|
|
218
|
+
|----------|---------|-----|
|
|
219
|
+
| `SecurityAuditCrew` | Crew | Multiple security perspectives needed |
|
|
220
|
+
| `TestGenerationWorkflow` | Base | Sequential stages, cost-sensitive |
|
|
221
|
+
| `SecureReleasePipeline` | Compose | Orchestrates 4 existing workflows |
|
|
222
|
+
| `CodeReviewWorkflow` | Base | Sequential analysis stages |
|
|
223
|
+
| `ResearchSynthesisWorkflow` | Crew | Multi-document analysis benefits from perspectives |
|
|
224
|
+
|
|
225
|
+
---
|
|
226
|
+
|
|
227
|
+
## Summary
|
|
228
|
+
|
|
229
|
+
1. **Start with Crew** - It's the default for a reason
|
|
230
|
+
2. **Use Base** when cost/speed matters more than thoroughness
|
|
231
|
+
3. **Use Compose** when combining existing workflows
|
|
232
|
+
4. **Configure defaults** in `empathy.config.yml`
|
|
233
|
+
5. **Override per-workflow** with `--base` or `--compose` flags
|
|
234
|
+
|
|
235
|
+
Questions? See the implementation examples in `src/empathy_os/workflows/`.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: empathy-framework
|
|
3
|
-
Version: 3.5.
|
|
3
|
+
Version: 3.5.6
|
|
4
4
|
Summary: AI collaboration framework with persistent memory, anticipatory intelligence, code inspection, and multi-agent orchestration
|
|
5
5
|
Author-email: Patrick Roebuck <patrick.roebuck@smartAImemory.com>
|
|
6
6
|
Maintainer-email: Smart-AI-Memory <patrick.roebuck@smartAImemory.com>
|
|
@@ -225,6 +225,8 @@ Requires-Dist: ruff<1.0,>=0.1; extra == "dev"
|
|
|
225
225
|
Requires-Dist: coverage<8.0,>=7.0; extra == "dev"
|
|
226
226
|
Requires-Dist: bandit<2.0,>=1.7; extra == "dev"
|
|
227
227
|
Requires-Dist: pre-commit<4.0,>=3.0; extra == "dev"
|
|
228
|
+
Requires-Dist: httpx<1.0.0,>=0.27.0; extra == "dev"
|
|
229
|
+
Requires-Dist: fastapi<1.0.0,>=0.109.1; extra == "dev"
|
|
228
230
|
Provides-Extra: full
|
|
229
231
|
Requires-Dist: anthropic<1.0.0,>=0.8.0; extra == "full"
|
|
230
232
|
Requires-Dist: openai<2.0.0,>=1.6.0; extra == "full"
|
|
@@ -276,8 +278,8 @@ Dynamic: license-file
|
|
|
276
278
|
**The AI collaboration framework that predicts problems before they happen.**
|
|
277
279
|
|
|
278
280
|
[](https://pypi.org/project/empathy-framework/)
|
|
279
|
-
[](https://github.com/Smart-AI-Memory/empathy-framework/actions)
|
|
282
|
+
[](https://github.com/Smart-AI-Memory/empathy-framework)
|
|
281
283
|
[](LICENSE)
|
|
282
284
|
[](https://www.python.org)
|
|
283
285
|
|
|
@@ -287,6 +289,12 @@ pip install empathy-framework[full]
|
|
|
287
289
|
|
|
288
290
|
## What's New in v3.5.x
|
|
289
291
|
|
|
292
|
+
### Project Indexing & Test Suite Expansion (v3.5.4)
|
|
293
|
+
|
|
294
|
+
- **Project Indexing System** — JSON-based file tracking with automatic structure scanning, metadata tracking, and CrewAI integration
|
|
295
|
+
- **5,603 Tests** — Comprehensive test coverage at 64% with 30+ new test modules
|
|
296
|
+
- **BaselineManager Fix** — Resolved test isolation bug affecting suppression system
|
|
297
|
+
|
|
290
298
|
### Memory API Security Hardening (v3.5.0)
|
|
291
299
|
|
|
292
300
|
- **Input Validation** — Pattern IDs, agent IDs, and classifications validated to prevent path traversal and injection attacks
|
|
@@ -67,6 +67,7 @@ docs/guides/DISTRIBUTION_POLICY.md
|
|
|
67
67
|
docs/guides/MCP_PUBLISH_INSTRUCTIONS.md
|
|
68
68
|
docs/guides/MKDOCS_TUTORIAL.md
|
|
69
69
|
docs/guides/PUBLISHING.md
|
|
70
|
+
docs/guides/WORKFLOW_PATTERNS.md
|
|
70
71
|
docs/guides/claude-memory-integration.md
|
|
71
72
|
docs/guides/foreword.md
|
|
72
73
|
docs/guides/healthcare-wizards.md
|
|
@@ -254,10 +255,14 @@ tests/test_advanced_debugging.py
|
|
|
254
255
|
tests/test_agent_factory.py
|
|
255
256
|
tests/test_agent_factory_memory.py
|
|
256
257
|
tests/test_agent_factory_resilience.py
|
|
258
|
+
tests/test_agent_orchestration_wizard.py
|
|
259
|
+
tests/test_ai_collaboration_wizard.py
|
|
257
260
|
tests/test_all_wizards.py
|
|
258
261
|
tests/test_audit_logger.py
|
|
259
262
|
tests/test_audit_logger_extended.py
|
|
263
|
+
tests/test_base.py
|
|
260
264
|
tests/test_base_wizard.py
|
|
265
|
+
tests/test_baseline.py
|
|
261
266
|
tests/test_book_chapter_wizard.py
|
|
262
267
|
tests/test_book_production_agents.py
|
|
263
268
|
tests/test_bug_predict_workflow.py
|
|
@@ -266,11 +271,14 @@ tests/test_claude_memory_extended.py
|
|
|
266
271
|
tests/test_cli.py
|
|
267
272
|
tests/test_clinical_protocol_monitor.py
|
|
268
273
|
tests/test_code_health.py
|
|
274
|
+
tests/test_code_review.py
|
|
269
275
|
tests/test_code_review_crew_integration.py
|
|
270
276
|
tests/test_code_review_pipeline.py
|
|
271
277
|
tests/test_code_review_pipeline_workflow.py
|
|
278
|
+
tests/test_code_review_wizard.py
|
|
272
279
|
tests/test_code_review_workflow.py
|
|
273
280
|
tests/test_config.py
|
|
281
|
+
tests/test_config_loaders.py
|
|
274
282
|
tests/test_control_panel.py
|
|
275
283
|
tests/test_control_panel_security.py
|
|
276
284
|
tests/test_coordination.py
|
|
@@ -279,8 +287,10 @@ tests/test_core_reliability.py
|
|
|
279
287
|
tests/test_cost_tracker.py
|
|
280
288
|
tests/test_coverage_analyzer.py
|
|
281
289
|
tests/test_crewai_adapter.py
|
|
290
|
+
tests/test_dependency_check.py
|
|
282
291
|
tests/test_dependency_check_workflow.py
|
|
283
292
|
tests/test_discovery.py
|
|
293
|
+
tests/test_document_gen.py
|
|
284
294
|
tests/test_document_gen_workflow.py
|
|
285
295
|
tests/test_emergence.py
|
|
286
296
|
tests/test_empathy_llm_core.py
|
|
@@ -292,19 +302,25 @@ tests/test_exceptions.py
|
|
|
292
302
|
tests/test_executor_integration.py
|
|
293
303
|
tests/test_fallback.py
|
|
294
304
|
tests/test_feedback_loops.py
|
|
305
|
+
tests/test_graph.py
|
|
306
|
+
tests/test_health_check.py
|
|
295
307
|
tests/test_health_check_workflow.py
|
|
296
308
|
tests/test_intelligence_integration.py
|
|
297
309
|
tests/test_levels.py
|
|
298
310
|
tests/test_leverage_points.py
|
|
311
|
+
tests/test_linter_parsers.py
|
|
299
312
|
tests/test_llm_integration.py
|
|
300
313
|
tests/test_llm_toolkit_levels.py
|
|
301
314
|
tests/test_logging_config.py
|
|
315
|
+
tests/test_long_term.py
|
|
302
316
|
tests/test_memory_graph.py
|
|
303
317
|
tests/test_model_registry.py
|
|
304
318
|
tests/test_model_router.py
|
|
305
319
|
tests/test_monitoring.py
|
|
320
|
+
tests/test_multi_model_wizard.py
|
|
306
321
|
tests/test_pattern_library.py
|
|
307
322
|
tests/test_perf_audit_workflow.py
|
|
323
|
+
tests/test_performance_profiling_wizard.py
|
|
308
324
|
tests/test_persistence.py
|
|
309
325
|
tests/test_pii_scrubber.py
|
|
310
326
|
tests/test_pii_scrubber_extended.py
|
|
@@ -312,33 +328,47 @@ tests/test_platform_compat_ci.py
|
|
|
312
328
|
tests/test_platform_utils.py
|
|
313
329
|
tests/test_plugin_base.py
|
|
314
330
|
tests/test_plugin_registry.py
|
|
331
|
+
tests/test_pr_review.py
|
|
315
332
|
tests/test_pr_review_workflow.py
|
|
316
333
|
tests/test_production_smoke.py
|
|
317
334
|
tests/test_progress.py
|
|
318
335
|
tests/test_prompt_engineering_wizard.py
|
|
319
336
|
tests/test_protocol_checker.py
|
|
320
337
|
tests/test_protocol_loader.py
|
|
338
|
+
tests/test_provider_config.py
|
|
321
339
|
tests/test_providers.py
|
|
322
340
|
tests/test_quality_analyzer.py
|
|
323
341
|
tests/test_redis_bootstrap.py
|
|
342
|
+
tests/test_redis_config.py
|
|
324
343
|
tests/test_redis_integration.py
|
|
325
344
|
tests/test_redis_memory.py
|
|
326
345
|
tests/test_refactor_golden.py
|
|
327
346
|
tests/test_refactor_plan_workflow.py
|
|
347
|
+
tests/test_refactoring.py
|
|
328
348
|
tests/test_refactoring_crew.py
|
|
349
|
+
tests/test_registry.py
|
|
350
|
+
tests/test_release_prep.py
|
|
351
|
+
tests/test_reporting.py
|
|
352
|
+
tests/test_reports.py
|
|
329
353
|
tests/test_resilience.py
|
|
354
|
+
tests/test_sbar_wizard.py
|
|
355
|
+
tests/test_scanner.py
|
|
330
356
|
tests/test_secrets_detector.py
|
|
331
357
|
tests/test_secure_memdocs.py
|
|
332
358
|
tests/test_secure_memdocs_extended.py
|
|
359
|
+
tests/test_secure_release.py
|
|
333
360
|
tests/test_secure_release_workflow.py
|
|
361
|
+
tests/test_security_audit.py
|
|
334
362
|
tests/test_security_audit_crew.py
|
|
335
363
|
tests/test_security_audit_workflow.py
|
|
336
364
|
tests/test_security_crew_integration.py
|
|
337
365
|
tests/test_security_integration.py
|
|
366
|
+
tests/test_security_learning_wizard.py
|
|
338
367
|
tests/test_security_negative_cases.py
|
|
339
368
|
tests/test_security_scan.py
|
|
340
369
|
tests/test_sensor_parsers.py
|
|
341
370
|
tests/test_session_status.py
|
|
371
|
+
tests/test_short_term.py
|
|
342
372
|
tests/test_smart_router.py
|
|
343
373
|
tests/test_software_cli.py
|
|
344
374
|
tests/test_software_integration.py
|
|
@@ -347,9 +377,12 @@ tests/test_software_plugin_cli.py
|
|
|
347
377
|
tests/test_state.py
|
|
348
378
|
tests/test_step_config.py
|
|
349
379
|
tests/test_summary_index.py
|
|
380
|
+
tests/test_sync_claude.py
|
|
381
|
+
tests/test_tech_debt_wizard.py
|
|
350
382
|
tests/test_telemetry.py
|
|
351
383
|
tests/test_templates.py
|
|
352
384
|
tests/test_test_suggester.py
|
|
385
|
+
tests/test_timeout.py
|
|
353
386
|
tests/test_token_estimator.py
|
|
354
387
|
tests/test_trajectory_analyzer.py
|
|
355
388
|
tests/test_trust_building.py
|
|
@@ -12,7 +12,7 @@ Licensed under Fair Source 0.9
|
|
|
12
12
|
|
|
13
13
|
from .core import EmpathyLLM
|
|
14
14
|
from .levels import EmpathyLevel
|
|
15
|
-
from .providers import AnthropicProvider, LocalProvider, OpenAIProvider
|
|
15
|
+
from .providers import AnthropicProvider, GeminiProvider, LocalProvider, OpenAIProvider
|
|
16
16
|
from .state import CollaborationState, UserPattern
|
|
17
17
|
|
|
18
18
|
__version__ = "1.9.5"
|
|
@@ -21,6 +21,7 @@ __all__ = [
|
|
|
21
21
|
"EmpathyLLM",
|
|
22
22
|
"OpenAIProvider",
|
|
23
23
|
"AnthropicProvider",
|
|
24
|
+
"GeminiProvider",
|
|
24
25
|
"LocalProvider",
|
|
25
26
|
"CollaborationState",
|
|
26
27
|
"UserPattern",
|
|
@@ -23,7 +23,13 @@ from empathy_os.memory import (
|
|
|
23
23
|
)
|
|
24
24
|
|
|
25
25
|
from .levels import EmpathyLevel
|
|
26
|
-
from .providers import
|
|
26
|
+
from .providers import (
|
|
27
|
+
AnthropicProvider,
|
|
28
|
+
BaseLLMProvider,
|
|
29
|
+
GeminiProvider,
|
|
30
|
+
LocalProvider,
|
|
31
|
+
OpenAIProvider,
|
|
32
|
+
)
|
|
27
33
|
from .routing import ModelRouter
|
|
28
34
|
from .state import CollaborationState, PatternType, UserPattern
|
|
29
35
|
|
|
@@ -218,6 +224,8 @@ class EmpathyLLM:
|
|
|
218
224
|
)
|
|
219
225
|
elif provider == "openai":
|
|
220
226
|
return OpenAIProvider(api_key=api_key, model=model or "gpt-4-turbo-preview", **kwargs)
|
|
227
|
+
elif provider in ("google", "gemini"):
|
|
228
|
+
return GeminiProvider(api_key=api_key, model=model or "gemini-1.5-pro", **kwargs)
|
|
221
229
|
elif provider == "local":
|
|
222
230
|
return LocalProvider(
|
|
223
231
|
endpoint=kwargs.get("endpoint", "http://localhost:11434"),
|