empathy-framework 4.1.1__tar.gz → 4.4.0__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-4.1.1 → empathy_framework-4.4.0}/CHANGELOG.md +475 -1
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/PKG-INFO +77 -12
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/README.md +69 -3
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_framework.egg-info/PKG-INFO +77 -12
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_framework.egg-info/SOURCES.txt +31 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_framework.egg-info/requires.txt +6 -7
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/pyproject.toml +15 -11
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/cli_unified.py +13 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/memory/long_term.py +5 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/memory/unified.py +149 -9
- empathy_framework-4.4.0/src/empathy_os/meta_workflows/__init__.py +74 -0
- empathy_framework-4.4.0/src/empathy_os/meta_workflows/agent_creator.py +254 -0
- empathy_framework-4.4.0/src/empathy_os/meta_workflows/builtin_templates.py +567 -0
- empathy_framework-4.4.0/src/empathy_os/meta_workflows/cli_meta_workflows.py +1551 -0
- empathy_framework-4.4.0/src/empathy_os/meta_workflows/form_engine.py +304 -0
- empathy_framework-4.4.0/src/empathy_os/meta_workflows/intent_detector.py +298 -0
- empathy_framework-4.4.0/src/empathy_os/meta_workflows/models.py +567 -0
- empathy_framework-4.4.0/src/empathy_os/meta_workflows/pattern_learner.py +754 -0
- empathy_framework-4.4.0/src/empathy_os/meta_workflows/session_context.py +398 -0
- empathy_framework-4.4.0/src/empathy_os/meta_workflows/template_registry.py +229 -0
- empathy_framework-4.4.0/src/empathy_os/meta_workflows/workflow.py +980 -0
- empathy_framework-4.4.0/src/empathy_os/orchestration/execution_strategies.py +1647 -0
- empathy_framework-4.4.0/src/empathy_os/orchestration/pattern_learner.py +699 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/__init__.py +273 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/ab_testing.py +969 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/blueprint.py +532 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/cli.py +689 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/collaboration.py +1112 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/domain_templates.py +916 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/embeddings.py +734 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/engine.py +729 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/explainer.py +663 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/feedback.py +767 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/forms.py +624 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/generator.py +716 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/llm_analyzer.py +635 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/mcp_server.py +751 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/session.py +306 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/storage.py +635 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/success.py +719 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/visual_editor.py +812 -0
- empathy_framework-4.4.0/src/empathy_os/socratic/web_ui.py +925 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/manage_documentation.py +18 -2
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/release_prep_crew.py +16 -1
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/test_coverage_boost_crew.py +16 -1
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/test_maintenance_crew.py +18 -1
- empathy_framework-4.1.1/src/empathy_os/orchestration/execution_strategies.py +0 -760
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/.bandit +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/CODE_OF_CONDUCT.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/CONTRIBUTING.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/LICENSE +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/MANIFEST.in +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/QUICKSTART.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/SECURITY.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/agents/code_inspection/patterns/inspection/recurring_B112.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/agents/code_inspection/patterns/inspection/recurring_F541.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/agents/code_inspection/patterns/inspection/recurring_FORMAT.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/agents/code_inspection/patterns/inspection/recurring_bug_20250822_def456.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/agents/code_inspection/patterns/inspection/recurring_bug_20250915_abc123.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/agents/code_inspection/patterns/inspection/recurring_bug_20251212_3c5b9951.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/agents/code_inspection/patterns/inspection/recurring_bug_20251212_97c0f72f.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/agents/code_inspection/patterns/inspection/recurring_bug_20251212_a0871d53.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/agents/code_inspection/patterns/inspection/recurring_bug_20251212_a9b6ec41.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/agents/code_inspection/patterns/inspection/recurring_bug_null_001.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/agents/code_inspection/patterns/inspection/recurring_builtin.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/accessibility_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/api_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/base_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/cicd_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/code_reviewer_README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/code_reviewer_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/compliance_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/database_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/debugging_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/documentation_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/generate_wizards.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/localization_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/migration_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/monitoring_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/observability_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/performance_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/prompt_engineering_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/refactoring_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/scaling_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/security_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/coach_wizards/testing_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/api-reference/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/api-reference/ai-wizards.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/api-reference/config.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/api-reference/core.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/api-reference/empathy-os.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/api-reference/index.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/api-reference/llm-toolkit.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/api-reference/meta-orchestration.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/api-reference/multi-agent.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/api-reference/pattern-library.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/api-reference/persistence.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/api-reference/software-wizards.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/api-reference/wizards.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/examples/adaptive-learning-system.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/examples/multi-agent-team-coordination.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/examples/sbar-clinical-handoff.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/examples/simple-chatbot.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/examples/webhook-event-integration.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/getting-started/redis-setup.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/DISTRIBUTION_POLICY.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/MCP_PUBLISH_INSTRUCTIONS.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/MKDOCS_TUTORIAL.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/PUBLISHING.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/RELEASE_PREPARATION.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/WORKFLOW_PATTERNS.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/claude-memory-integration.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/crewai-integration.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/five-levels-of-empathy.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/foreword.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/healthcare-wizards.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/how-to-read-this-book.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/multi-model-workflows.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/pattern-catalog.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/preface.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/signoz-integration.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/software-development-wizards.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/teaching-ai-your-standards.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/trust-circuit-breaker.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/guides/xml-enhanced-prompts.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/docs/index.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy.config.example.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy.config.example.yml +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_framework.egg-info/dependency_links.txt +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_framework.egg-info/entry_points.txt +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_framework.egg-info/top_level.txt +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_healthcare_plugin/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_healthcare_plugin/monitors/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_healthcare_plugin/monitors/clinical_protocol_monitor.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_healthcare_plugin/monitors/monitoring/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_healthcare_plugin/monitors/monitoring/protocol_checker.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_healthcare_plugin/monitors/monitoring/protocol_loader.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_healthcare_plugin/monitors/monitoring/sensor_parsers.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_healthcare_plugin/monitors/monitoring/trajectory_analyzer.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_healthcare_plugin/protocols/cardiac.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_healthcare_plugin/protocols/post_operative.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_healthcare_plugin/protocols/respiratory.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_healthcare_plugin/protocols/sepsis.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/adapters/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/adapters/autogen_adapter.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/adapters/crewai_adapter.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/adapters/haystack_adapter.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/adapters/langchain_adapter.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/adapters/langgraph_adapter.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/adapters/native.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/adapters/wizard_adapter.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/base.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/crews/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/crews/code_review.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/crews/health_check.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/crews/refactoring.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/crews/security_audit.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/decorators.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/factory.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/framework.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/memory_integration.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/agent_factory/resilient.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/claude_memory.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/cli/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/cli/sync_claude.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/code_health.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/config/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/config/unified.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/contextual_patterns.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/core.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/git_pattern_extractor.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/levels.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/pattern_confidence.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/pattern_resolver.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/pattern_summary.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/providers.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/routing/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/routing/model_router.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/security/IMPLEMENTATION_SUMMARY.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/security/PHASE2_COMPLETE.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/security/PHASE2_SECRETS_DETECTOR_COMPLETE.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/security/QUICK_REFERENCE.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/security/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/security/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/security/audit_logger.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/security/audit_logger_example.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/security/pii_scrubber.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/security/secrets_detector.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/security/secrets_detector_example.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/security/secure_memdocs.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/security/secure_memdocs_example.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/session_status.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/state.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/utils/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/utils/tokens.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/wizards/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/wizards/base_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/wizards/customer_support_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/wizards/healthcare_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/wizards/patient_assessment_README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/wizards/patient_assessment_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_llm_toolkit/wizards/technology_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/SOFTWARE_PLUGIN_README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/cli/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/cli/inspect.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/cli.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/plugin.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/advanced_debugging_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/agent_orchestration_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/ai_collaboration_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/ai_context_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/ai_documentation_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/base_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/book_chapter_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/code_review_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/debugging/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/debugging/bug_risk_analyzer.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/debugging/config_loaders.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/debugging/fix_applier.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/debugging/language_patterns.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/debugging/linter_parsers.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/debugging/verification.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/enhanced_testing_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/memory_enhanced_debugging_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/multi_model_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/pattern_extraction_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/pattern_retriever_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/performance/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/performance/bottleneck_detector.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/performance/profiler_parsers.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/performance/trajectory_analyzer.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/performance_profiling_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/prompt_engineering_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/rag_pattern_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/security/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/security/exploit_analyzer.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/security/owasp_patterns.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/security/vulnerability_scanner.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/security_analysis_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/security_learning_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/tech_debt_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/testing/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/testing/coverage_analyzer.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/testing/quality_analyzer.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/testing/test_suggester.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/empathy_software_plugin/wizards/testing_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/WIZARDS_MASTER_GUIDE.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/WIZARD_DASHBOARD_IMPLEMENTATION.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/WIZARD_DASHBOARD_STATE_MANAGEMENT.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/WIZARD_DASHBOARD_WIREFRAMES.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/ai_wizards/all_ai_wizards_demo.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/ai_wizards/tests/test_ai_wizards.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/ai_wizards/tests/test_performance_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/ai_wizards/tests/test_security_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/claude_memory/README-SECURITY.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/claude_memory/enterprise-CLAUDE-secure.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/claude_memory/example-with-imports.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/claude_memory/project-CLAUDE.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/claude_memory/user-CLAUDE.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/ALL_DOCUMENTATION_COMPLETE.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/ALPHA_TESTER_RECRUITMENT.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/CHANGELOG.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/COMPLETE_IMPLEMENTATION_REPORT.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/CONTRIBUTING.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/DISCORD_SETUP_GUIDE.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/DOCUMENTATION_COMPLETE.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/FINAL_DELIVERABLES_SUMMARY.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/IDE_INTEGRATION_PLAN.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/IDE_INTEGRATION_SETUP_COMPLETE.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/IMPLEMENTATION_COMPLETE.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/JETBRAINS_PLUGIN_COMPLETE.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/MARKETPLACE_READINESS.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/PHASE_1_COMPLETE_AND_NEXT_STEPS.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/PRIVACY.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/TODO.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/VSCODE_EXTENSION_COMPLETE.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/WIZARD_IMPLEMENTATION_COMPLETE.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/coach-lsp-server/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/coach-lsp-server/server.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/coach.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/demo.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/demo_all_wizards.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/docs/API.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/docs/CUSTOM_WIZARDS.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/docs/FAQ.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/docs/INSTALLATION.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/docs/TROUBLESHOOTING.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/docs/USER_MANUAL.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/docs/WIZARDS.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/health_check.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/jetbrains-plugin/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/jetbrains-plugin-complete/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/lsp/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/lsp/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/lsp/cache.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/lsp/context_collector.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/lsp/error_handler.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/lsp/logging_config.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/lsp/protocol/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/lsp/protocol/messages.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/lsp/server.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/lsp/tests/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/lsp/tests/test_e2e.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/lsp/tests/test_server.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/setup/DISCORD_SETUP_INSTRUCTIONS.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/setup/GITHUB_SETUP_GUIDE.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/setup/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/setup/SETUP_COMPLETE.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/shared_learning.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/tests/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/tests/test_all_wizards.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/tests/test_coach_wizards.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/tests/test_new_wizards.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/vscode-extension/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/vscode-extension-complete/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/accessibility_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/api_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/base_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/compliance_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/database_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/debugging_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/design_review_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/devops_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/documentation_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/localization_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/monitoring_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/onboarding_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/performance_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/refactoring_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/retrospective_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/security_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/coach/wizards/testing_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/debugging_demo.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/domain_wizards/all_domain_wizards_demo.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/domain_wizards/healthcare_example.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/domain_wizards/tests/test_healthcare_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/level_5_transformative/BLOG_POST.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/level_5_transformative/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/level_5_transformative/data/deployment_pipeline.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/level_5_transformative/data/healthcare_handoff_code.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/level_5_transformative/run_full_demo.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/llm_toolkit_demo.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/meta_orchestrator_demo.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/multi_llm_usage.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/orchestration/advanced_composition.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/orchestration/basic_usage.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/orchestration/custom_workflow.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/performance_demo.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/progressive_test_gen_demo.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/quickstart/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/quickstart/minimal_example.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/quickstart.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/redis_exploration.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/security_demo.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/security_integration_example.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/simple_usage.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/smart_team_quickstart.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/software_plugin_complete_demo.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/sonnet_opus_fallback_example.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/streamlit_debug_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/test_debugging_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/test_short_term_memory_full.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/testing_demo.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/wizard-dashboard/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/wizard-dashboard/SETUP.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/workflows/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/workflows/code_review_example.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/workflows/doc_gen_example.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/workflows/multi_model_example.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/examples/workflows/research_example.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/requirements.txt +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/setup.cfg +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/adaptive/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/adaptive/task_complexity.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/agent_monitoring.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/cache/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/cache/base.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/cache/dependency_manager.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/cache/hash_only.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/cache/hybrid.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/cache/storage.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/cache_monitor.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/cache_stats.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/cli.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/config/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/config/xml_config.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/config.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/coordination.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/core.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/cost_tracker.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/dashboard/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/dashboard/server.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/discovery.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/emergence.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/exceptions.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/feedback_loops.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/hot_reload/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/hot_reload/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/hot_reload/config.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/hot_reload/integration.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/hot_reload/reloader.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/hot_reload/watcher.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/hot_reload/websocket.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/levels.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/leverage_points.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/logging_config.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/memory/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/memory/claude_memory.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/memory/config.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/memory/control_panel.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/memory/edges.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/memory/graph.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/memory/nodes.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/memory/redis_bootstrap.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/memory/security/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/memory/security/audit_logger.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/memory/security/pii_scrubber.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/memory/security/secrets_detector.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/memory/short_term.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/memory/storage/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/memory/summary_index.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/metrics/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/metrics/prompt_metrics.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/models/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/models/__main__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/models/cli.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/models/empathy_executor.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/models/executor.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/models/fallback.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/models/provider_config.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/models/registry.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/models/tasks.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/models/telemetry.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/models/token_estimator.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/models/validation.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/monitoring/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/monitoring/alerts.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/monitoring/alerts_cli.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/monitoring/multi_backend.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/monitoring/otel_backend.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/optimization/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/optimization/context_optimizer.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/orchestration/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/orchestration/agent_templates.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/orchestration/config_store.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/orchestration/meta_orchestrator.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/orchestration/real_tools.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/pattern_cache.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/pattern_library.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/patterns/debugging/all_patterns.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/patterns/debugging/workflow_20260107_1770825e.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/patterns/refactoring_memory.json +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/persistence.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/platform_utils.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/plugins/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/plugins/base.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/plugins/registry.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/project_index/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/project_index/cli.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/project_index/crew_integration.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/project_index/index.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/project_index/models.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/project_index/reports.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/project_index/scanner.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/prompts/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/prompts/config.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/prompts/context.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/prompts/parser.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/prompts/registry.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/prompts/templates.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/redis_config.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/redis_memory.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/resilience/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/resilience/circuit_breaker.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/resilience/fallback.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/resilience/health.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/resilience/retry.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/resilience/timeout.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/routing/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/routing/chain_executor.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/routing/classifier.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/routing/smart_router.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/routing/wizard_registry.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/scaffolding/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/scaffolding/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/scaffolding/__main__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/scaffolding/cli.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/telemetry/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/telemetry/cli.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/telemetry/usage_tracker.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/templates.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/test_generator/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/test_generator/__main__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/test_generator/cli.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/test_generator/generator.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/test_generator/risk_analyzer.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/tier_recommender.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/trust/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/trust/circuit_breaker.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/trust_building.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/validation/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/validation/xml_validator.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/wizard_factory_cli.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflow_commands.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflow_patterns/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflow_patterns/behavior.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflow_patterns/core.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflow_patterns/output.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflow_patterns/registry.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflow_patterns/structural.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/base.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/batch_processing.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/bug_predict.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/code_review.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/code_review_adapters.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/code_review_pipeline.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/config.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/dependency_check.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/document_gen.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/document_manager.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/document_manager_README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/documentation_orchestrator.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/keyboard_shortcuts/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/keyboard_shortcuts/generators.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/keyboard_shortcuts/parsers.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/keyboard_shortcuts/prompts.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/keyboard_shortcuts/schema.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/keyboard_shortcuts/workflow.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/manage_docs.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/manage_docs_README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/new_sample_workflow1.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/new_sample_workflow1_README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/orchestrated_health_check.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/orchestrated_release_prep.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/perf_audit.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/pr_review.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/progress.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/progress_server.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/progressive/README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/progressive/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/progressive/cli.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/progressive/core.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/progressive/orchestrator.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/progressive/reports.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/progressive/telemetry.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/progressive/test_gen.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/progressive/workflow.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/refactor_plan.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/release_prep.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/research_synthesis.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/secure_release.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/security_adapters.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/security_audit.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/step_config.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/test5.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/test5_README.md +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/test_gen.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/test_lifecycle.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/test_maintenance.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/test_maintenance_cli.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/test_runner.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/tier_tracking.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/src/empathy_os/workflows/xml_enhanced_crew.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_advanced_debugging.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_agent_factory.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_agent_factory_memory.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_agent_factory_resilience.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_agent_orchestration_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_ai_collaboration_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_all_wizards.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_audit_logger.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_audit_logger_extended.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_base.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_base_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_base_wizard_exceptions.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_baseline.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_book_chapter_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_book_production_agents.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_bug_predict_workflow.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_claude_memory.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_claude_memory_extended.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_cli.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_clinical_protocol_monitor.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_code_health.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_code_review.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_code_review_crew_integration.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_code_review_pipeline.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_code_review_pipeline_workflow.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_code_review_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_code_review_workflow.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_config.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_config_loaders.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_control_panel.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_control_panel_security.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_coordination.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_core.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_core_reliability.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_cost_tracker.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_coverage_analyzer.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_crewai_adapter.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_dependency_check.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_dependency_check_workflow.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_discovery.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_document_gen.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_document_gen_workflow.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_emergence.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_empathy_llm_core.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_empathy_llm_security.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_empathy_os.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_empathy_os_cli_extended.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_enhanced_testing.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_exceptions.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_executor_integration.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_fallback.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_fallback_suite.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_feedback_loops.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_finding_extraction.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_graph.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_health_check.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_intelligence_integration.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_levels.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_leverage_points.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_linter_parsers.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_llm_integration.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_llm_toolkit_levels.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_logging_config.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_long_term.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_memory_graph.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_model_registry.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_model_router.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_monitoring.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_multi_model_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_multi_model_wizard_boundary.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_pattern_cache.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_pattern_library.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_perf_audit_workflow.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_performance_profiling_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_persistence.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_pii_scrubber.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_pii_scrubber_extended.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_platform_compat_ci.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_platform_utils.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_plugin_base.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_plugin_registry.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_pr_review.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_pr_review_workflow.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_production_smoke.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_progress.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_prompt_engineering_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_protocol_checker.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_protocol_loader.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_provider_config.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_providers.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_quality_analyzer.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_redis_bootstrap.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_redis_config.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_redis_integration.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_redis_memory.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_redis_memory_errors.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_refactor_golden.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_refactor_plan_workflow.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_refactoring.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_refactoring_crew.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_registry.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_release_prep.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_reporting.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_reports.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_resilience.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_sbar_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_scanner.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_scanner_exceptions.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_secrets_detector.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_secure_memdocs.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_secure_memdocs_extended.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_secure_release.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_secure_release_workflow.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_security_audit.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_security_audit_crew.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_security_audit_workflow.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_security_crew_integration.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_security_integration.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_security_learning_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_security_negative_cases.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_security_scan.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_sensor_parsers.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_session_status.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_short_term.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_smart_router.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_software_cli.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_software_integration.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_software_plugin.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_software_plugin_cli.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_sonnet_opus_fallback.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_state.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_step_config.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_summary_index.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_sync_claude.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_tech_debt_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_telemetry.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_templates.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_test_suggester.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_timeout.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_token_estimator.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_trajectory_analyzer.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_trust_building.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_trust_circuit_breaker.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_unified_memory.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_validation.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_wizard_api.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_wizard_api_integration.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_wizard_outputs.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_wizard_site_comprehensive.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_workflow_base.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_workflow_commands.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_workflow_wizard_integration.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_xml_prompts.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/tests/test_xml_spec_generation.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/wizards/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/wizards/admission_assessment_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/wizards/care_plan.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/wizards/clinical_assessment.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/wizards/discharge_planning.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/wizards/discharge_summary_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/wizards/dosage_calculation.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/wizards/incident_report_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/wizards/medication_reconciliation.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/wizards/nursing_assessment.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/wizards/patient_education.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/wizards/quality_improvement.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/wizards/sbar_report.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/wizards/sbar_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/wizards/shift_handoff_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/wizards/soap_note_wizard.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/wizards/treatment_plan.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/workflow_scaffolding/__init__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/workflow_scaffolding/__main__.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/workflow_scaffolding/cli.py +0 -0
- {empathy_framework-4.1.1 → empathy_framework-4.4.0}/workflow_scaffolding/generator.py +0 -0
|
@@ -5,9 +5,483 @@ 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
|
+
## [4.4.0] - 2026-01-19
|
|
9
|
+
|
|
10
|
+
### Added - PRODUCTION-READY AGENT TEAM SYSTEM 🚀🎯
|
|
11
|
+
|
|
12
|
+
#### Real LLM Agent Execution
|
|
13
|
+
- **Real LLM Agent Execution** - Meta-workflow agents now execute with real LLM calls
|
|
14
|
+
- Integrated Anthropic client for Claude model execution
|
|
15
|
+
- Accurate token counting and cost tracking from actual API usage
|
|
16
|
+
- Progressive tier escalation (CHEAP → CAPABLE → PREMIUM) with real execution
|
|
17
|
+
- Graceful fallback to simulation when API key not available
|
|
18
|
+
- Full telemetry integration via UsageTracker
|
|
19
|
+
- **Files**: `src/empathy_os/meta_workflows/workflow.py`
|
|
20
|
+
|
|
21
|
+
- **AskUserQuestion Tool Integration** - Form collection now supports real tool invocation
|
|
22
|
+
- Callback-based pattern for AskUserQuestion tool injection
|
|
23
|
+
- Interactive mode: Uses callback when provided (Claude Code context)
|
|
24
|
+
- Default mode: Graceful fallback to question defaults
|
|
25
|
+
- `set_callback()` method for runtime configuration
|
|
26
|
+
- Maintains full backward compatibility with existing tests
|
|
27
|
+
- **Files**: `src/empathy_os/meta_workflows/form_engine.py`
|
|
28
|
+
|
|
29
|
+
#### Enhanced Agent Team UX
|
|
30
|
+
- **Skill-based invocation** for agent teams
|
|
31
|
+
- `/release-prep` - Invoke release preparation agent team
|
|
32
|
+
- `/test-coverage` - Invoke test coverage boost agent team
|
|
33
|
+
- `/test-maintenance` - Invoke test maintenance agent team
|
|
34
|
+
- `/manage-docs` - Invoke documentation management agent team
|
|
35
|
+
- Skills work directly in Claude Code as slash commands
|
|
36
|
+
|
|
37
|
+
- **Natural language agent creation**
|
|
38
|
+
- `empathy meta-workflow ask "your request"` - Describe what you need
|
|
39
|
+
- Auto-suggests appropriate agent teams based on intent
|
|
40
|
+
- `--auto` flag for automatic execution of best match
|
|
41
|
+
- Intent detection with confidence scoring
|
|
42
|
+
|
|
43
|
+
- **Intent detection system** (`intent_detector.py`)
|
|
44
|
+
- Analyzes natural language requests
|
|
45
|
+
- Maps to appropriate meta-workflow templates
|
|
46
|
+
- Keyword and phrase pattern matching
|
|
47
|
+
- Confidence scoring for match quality
|
|
48
|
+
|
|
49
|
+
- **Integrated skills**
|
|
50
|
+
- Updated `/test` to suggest `/test-coverage` and `/test-maintenance`
|
|
51
|
+
- Updated `/security-scan` to suggest `/release-prep`
|
|
52
|
+
- Updated `/docs` to suggest `/manage-docs`
|
|
53
|
+
|
|
54
|
+
#### Built-in Templates & Infrastructure
|
|
55
|
+
- **Built-in meta-workflow templates** (`builtin_templates.py`)
|
|
56
|
+
- `release-prep`: Comprehensive release readiness assessment
|
|
57
|
+
- `test-coverage-boost`: Multi-agent test generation with gap analysis
|
|
58
|
+
- `test-maintenance`: Automated test lifecycle management
|
|
59
|
+
- `manage-docs`: Documentation sync and gap detection
|
|
60
|
+
- All templates use Socratic form collection and progressive tier escalation
|
|
61
|
+
|
|
62
|
+
- **Enhanced TemplateRegistry**
|
|
63
|
+
- `load_template()` now checks built-in templates first
|
|
64
|
+
- `list_templates()` includes built-in templates
|
|
65
|
+
- `is_builtin()` method to identify built-in templates
|
|
66
|
+
|
|
67
|
+
- **Migration documentation**
|
|
68
|
+
- `docs/CREWAI_MIGRATION.md`: Complete migration guide with examples
|
|
69
|
+
- Before/after code comparisons
|
|
70
|
+
- FAQ for common migration questions
|
|
71
|
+
|
|
72
|
+
### Architecture
|
|
73
|
+
|
|
74
|
+
**Execution Flow (Production Ready)**:
|
|
75
|
+
```text
|
|
76
|
+
User Request
|
|
77
|
+
↓
|
|
78
|
+
MetaOrchestrator (analyzes task complexity + domain)
|
|
79
|
+
↓
|
|
80
|
+
SocraticFormEngine (asks questions via AskUserQuestion callback)
|
|
81
|
+
↓
|
|
82
|
+
DynamicAgentCreator (generates agent team from responses)
|
|
83
|
+
↓
|
|
84
|
+
Real LLM Execution (Anthropic client with tier escalation)
|
|
85
|
+
↓
|
|
86
|
+
UsageTracker (telemetry + cost tracking)
|
|
87
|
+
↓
|
|
88
|
+
PatternLearner (stores in files + memory)
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
### Changed - DEPENDENCY OPTIMIZATION 📦
|
|
92
|
+
|
|
93
|
+
- **CrewAI moved to optional dependencies**
|
|
94
|
+
- CrewAI and LangChain removed from core dependencies
|
|
95
|
+
- Reduces install size and dependency conflicts
|
|
96
|
+
- Install with `pip install empathy-framework[crewai]` if needed
|
|
97
|
+
- The "Crew" workflows never actually used CrewAI library
|
|
98
|
+
|
|
99
|
+
- `SocraticFormEngine` now accepts `ask_user_callback` parameter for tool integration
|
|
100
|
+
- `MetaWorkflow._execute_at_tier()` now uses real LLM execution by default
|
|
101
|
+
- Added `_execute_llm_call()` method using Anthropic client
|
|
102
|
+
- `_simulate_llm_call()` retained as fallback for testing/no-API scenarios
|
|
103
|
+
|
|
104
|
+
### Deprecated
|
|
105
|
+
|
|
106
|
+
- **Crew-based workflows deprecated** in favor of meta-workflow system:
|
|
107
|
+
- `ReleasePreparationCrew` → Use `empathy meta-workflow run release-prep`
|
|
108
|
+
- `TestCoverageBoostCrew` → Use `empathy meta-workflow run test-coverage-boost`
|
|
109
|
+
- `TestMaintenanceCrew` → Use `empathy meta-workflow run test-maintenance`
|
|
110
|
+
- `ManageDocumentationCrew` → Use `empathy meta-workflow run manage-docs`
|
|
111
|
+
- All deprecated workflows emit `DeprecationWarning` when instantiated
|
|
112
|
+
- See [docs/CREWAI_MIGRATION.md](docs/CREWAI_MIGRATION.md) for migration guide
|
|
113
|
+
|
|
114
|
+
### Migration Notes
|
|
115
|
+
|
|
116
|
+
**From v4.2.1**: No breaking changes. Existing code continues to work:
|
|
117
|
+
- Tests using mock execution still work
|
|
118
|
+
- Form engine without callback uses defaults (backward compatible)
|
|
119
|
+
- Real execution only attempted when `mock_execution=False`
|
|
120
|
+
- Deprecated workflows continue to work
|
|
121
|
+
|
|
122
|
+
**To enable real execution**:
|
|
123
|
+
```python
|
|
124
|
+
# Set ANTHROPIC_API_KEY environment variable
|
|
125
|
+
# Then use mock_execution=False
|
|
126
|
+
result = workflow.execute(mock_execution=False)
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
**To migrate from Crew workflows**:
|
|
130
|
+
```bash
|
|
131
|
+
# Instead of using ReleasePreparationCrew
|
|
132
|
+
empathy meta-workflow run release-prep
|
|
133
|
+
|
|
134
|
+
# Instead of using TestCoverageBoostCrew
|
|
135
|
+
empathy meta-workflow run test-coverage-boost
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
**Benefits of meta-workflows over Crew workflows**:
|
|
139
|
+
- Smaller dependency footprint (no CrewAI/LangChain required)
|
|
140
|
+
- Interactive configuration via Socratic questioning
|
|
141
|
+
- Automatic cost optimization with progressive tier escalation
|
|
142
|
+
- Session context for learning preferences
|
|
143
|
+
- 125+ tests covering the system
|
|
144
|
+
|
|
145
|
+
---
|
|
146
|
+
|
|
147
|
+
## [4.2.1] - 2026-01-18
|
|
148
|
+
|
|
149
|
+
### Added - MAJOR FEATURE 🎭
|
|
150
|
+
|
|
151
|
+
- **Complete Socratic Agent Generation System** (18,253 lines in 34 files)
|
|
152
|
+
- **LLM Analyzer** (`llm_analyzer.py`): Intent analysis and workflow recommendations using LLM
|
|
153
|
+
- **Semantic Search** (`embeddings.py`): TF-IDF vectorization for workflow discovery
|
|
154
|
+
- **Visual Editor** (`visual_editor.py`): React Flow-based drag-and-drop workflow designer
|
|
155
|
+
- **MCP Server** (`mcp_server.py`): Model Context Protocol integration for Claude Code
|
|
156
|
+
- **Domain Templates** (`domain_templates.py`): Pre-built templates with auto-detection
|
|
157
|
+
- **A/B Testing** (`ab_testing.py`): Workflow variation testing framework
|
|
158
|
+
- **Collaboration** (`collaboration.py`): Multi-user workflow editing
|
|
159
|
+
- **Explainer** (`explainer.py`): Workflow explanation system
|
|
160
|
+
- **Feedback** (`feedback.py`): User feedback collection
|
|
161
|
+
- **Web UI** (`web_ui.py`): Interactive web interface components
|
|
162
|
+
- **Files**: `src/empathy_os/socratic/` (19 modules)
|
|
163
|
+
|
|
164
|
+
- **10 New CLI Skills** (882 lines)
|
|
165
|
+
- `/cache` - Hybrid cache diagnostics and optimization
|
|
166
|
+
- `/cost-report` - LLM API cost tracking and analysis
|
|
167
|
+
- `/crew` - CrewAI workflow management
|
|
168
|
+
- `/deps` - Dependency health, security, and update checks
|
|
169
|
+
- `/docs` - Documentation generation and maintenance
|
|
170
|
+
- `/init` - Project initialization with best practices
|
|
171
|
+
- `/memory` - Memory system analysis and debugging
|
|
172
|
+
- `/perf` - Performance profiling and optimization
|
|
173
|
+
- `/refactor` - Safe code refactoring with workflow support
|
|
174
|
+
- `/security-scan` - Comprehensive security and quality checks
|
|
175
|
+
- **Files**: `.claude/commands/*.md` (10 skill files)
|
|
176
|
+
|
|
177
|
+
- **Comprehensive Documentation** (1,488 lines)
|
|
178
|
+
- `docs/META_WORKFLOWS.md` (989 lines): Complete user guide with examples
|
|
179
|
+
- `docs/WORKFLOW_TEMPLATES.md` (499 lines): Template creation guide
|
|
180
|
+
|
|
181
|
+
- **Expanded Test Suite** (4,743 lines for Socratic + 2,521 lines for meta-workflows)
|
|
182
|
+
- 15 test files for Socratic system
|
|
183
|
+
- 6 test files for meta-workflows
|
|
184
|
+
- 125+ unit tests passing
|
|
185
|
+
- End-to-end integration tests
|
|
186
|
+
|
|
187
|
+
### Changed
|
|
188
|
+
|
|
189
|
+
- **Dependencies Updated** (from dependabot recommendations)
|
|
190
|
+
- pytest: 7.0,<9.0 → 7.0,<10.0 (allows pytest 9.x)
|
|
191
|
+
- pytest-asyncio: 0.21,<1.0 → 0.21,<2.0 (allows 1.x)
|
|
192
|
+
- pytest-cov: 4.0,<5.0 → 4.0,<8.0 (allows newer versions)
|
|
193
|
+
- pre-commit: 3.0,<4.0 → 3.0,<5.0 (allows pre-commit 4.x)
|
|
194
|
+
|
|
195
|
+
### Summary
|
|
196
|
+
|
|
197
|
+
**Total additions**: 31,056 lines across 74 files
|
|
198
|
+
- Socratic system: 18,253 lines (source + tests)
|
|
199
|
+
- Meta-workflow docs/tests: 4,009 lines
|
|
200
|
+
- CLI skills: 882 lines
|
|
201
|
+
- Version bump: 6 lines
|
|
202
|
+
|
|
203
|
+
---
|
|
204
|
+
|
|
205
|
+
## [4.2.0] - 2026-01-17
|
|
206
|
+
|
|
207
|
+
### Added - MAJOR FEATURE 🚀
|
|
208
|
+
|
|
209
|
+
- **Meta-Workflow System**: Intelligent workflow orchestration through interactive forms, dynamic agent creation, and pattern learning
|
|
210
|
+
- **Socratic Form Engine**: Interactive requirements gathering via `AskUserQuestion` with batched questions (max 4 at a time)
|
|
211
|
+
- **Dynamic Agent Creator**: Generates agent teams from workflow templates based on form responses with configurable tier strategies
|
|
212
|
+
- **Template Registry**: Reusable workflow templates with built-in `python_package_publish` template (8 questions, 8 agent rules)
|
|
213
|
+
- **Pattern Learning**: Analyzes historical executions for optimization insights with memory integration support
|
|
214
|
+
- **Hybrid Storage Architecture**: Combines file-based persistence with memory-based semantic querying for intelligent recommendations
|
|
215
|
+
- **Memory Integration**: Optional UnifiedMemory integration for rich semantic queries and context-aware recommendationsa
|
|
216
|
+
- **CLI Interface**: 10 commands for managing meta-workflows
|
|
217
|
+
- `empathy meta-workflow list-templates` - List available workflow templates
|
|
218
|
+
- `empathy meta-workflow inspect <template_id>` - Inspect template details
|
|
219
|
+
- `empathy meta-workflow run <template_id>` - Execute a meta-workflow from template
|
|
220
|
+
- `empathy meta-workflow analytics [template_id]` - Show pattern learning insights
|
|
221
|
+
- `empathy meta-workflow list-runs` - List historical executions
|
|
222
|
+
- `empathy meta-workflow show <run_id>` - Show detailed execution report
|
|
223
|
+
- `empathy meta-workflow cleanup` - Clean up old execution results
|
|
224
|
+
- `empathy meta-workflow search-memory <query>` - Search memory for patterns (NEW)
|
|
225
|
+
- `empathy meta-workflow session-stats` - Show session context statistics (NEW)
|
|
226
|
+
- `empathy meta-workflow suggest-defaults <template_id>` - Get suggested defaults based on history (NEW)
|
|
227
|
+
- **Progressive Tier Escalation**: Agent-level tier strategies (CHEAP_ONLY, PROGRESSIVE, CAPABLE_FIRST)
|
|
228
|
+
- **Files**: `src/empathy_os/meta_workflows/` (7 new modules, ~2,500 lines)
|
|
229
|
+
- `models.py` - Core data structures (MetaWorkflowTemplate, AgentSpec, FormSchema, etc.)
|
|
230
|
+
- `form_engine.py` - Socratic form collection via AskUserQuestion
|
|
231
|
+
- `agent_creator.py` - Dynamic agent generation from templates
|
|
232
|
+
- `workflow.py` - MetaWorkflow orchestrator with 5-stage execution
|
|
233
|
+
- `pattern_learner.py` - Analytics and optimization with memory integration
|
|
234
|
+
- `template_registry.py` - Template loading/saving/validation
|
|
235
|
+
- `cli_meta_workflows.py` - CLI commands
|
|
236
|
+
|
|
237
|
+
- **Comprehensive Test Suite**: 200+ tests achieving 78.60% overall coverage with real data (no mocks)
|
|
238
|
+
- **Meta-workflow tests** (105 tests, 59.53% coverage)
|
|
239
|
+
- Core data structures and models (26 tests, 98.68% coverage)
|
|
240
|
+
- Form engine and question batching (12 tests, 91.07% coverage)
|
|
241
|
+
- Agent creator and rule matching (20 tests, 100% coverage)
|
|
242
|
+
- Workflow orchestration (17 tests, 93.03% coverage)
|
|
243
|
+
- Pattern learning and analytics (20 tests, 61.54% coverage)
|
|
244
|
+
- End-to-end integration tests (10 tests, full lifecycle validation)
|
|
245
|
+
- **Memory search tests** (30 tests, ~80% coverage)
|
|
246
|
+
- Basic search functionality (query, filters, scoring)
|
|
247
|
+
- Relevance algorithm validation
|
|
248
|
+
- Edge cases and error handling
|
|
249
|
+
- **Session context tests** (35 tests, ~85% coverage)
|
|
250
|
+
- Choice recording and retrieval
|
|
251
|
+
- Default suggestions with validation
|
|
252
|
+
- Session statistics and TTL expiration
|
|
253
|
+
- **Core framework tests** (expanded 28 tests, 72.49% → 78.60% overall coverage)
|
|
254
|
+
- **Pattern Library** (76.80% coverage, +13 tests): Validation, filtering, linking, relationships
|
|
255
|
+
- **EmpathyOS Core** (44.07% coverage, +15 tests): Async workflows, shared library integration, empathy levels
|
|
256
|
+
- **Persistence** (100% coverage, 22 tests): JSON/SQLite operations, state management, metrics collection
|
|
257
|
+
- **Agent Monitoring** (98.51% coverage, 36 tests): Metrics tracking, team stats, alerting
|
|
258
|
+
- **Feedback Loops** (97.14% coverage, 34 tests): Loop detection, virtuous/vicious cycles, interventions
|
|
259
|
+
- **Files**: `tests/unit/meta_workflows/` (6 test modules), `tests/unit/memory/test_memory_search.py`, `tests/unit/test_pattern_library.py`, `tests/unit/test_core.py`, `tests/unit/test_persistence.py`, `tests/unit/test_agent_monitoring.py`, `tests/unit/test_feedback_loops.py`, `tests/integration/test_meta_workflow_e2e.py`
|
|
260
|
+
|
|
261
|
+
- **Security Features**: OWASP Top 10 compliant with comprehensive security review
|
|
262
|
+
- ✅ No `eval()` or `exec()` usage (AST-verified)
|
|
263
|
+
- ✅ Path traversal protection via `_validate_file_path()` on all file operations
|
|
264
|
+
- ✅ Specific exception handling (no bare `except:`)
|
|
265
|
+
- ✅ Input validation at all boundaries (template IDs, file paths, run IDs)
|
|
266
|
+
- ✅ Memory classification as INTERNAL with PII scrubbing enabled
|
|
267
|
+
- ✅ Graceful fallback when memory unavailable
|
|
268
|
+
- **Documentation**: `META_WORKFLOW_SECURITY_REVIEW.md`
|
|
269
|
+
|
|
270
|
+
- **Pattern Learning & Analytics**:
|
|
271
|
+
- Agent count analysis (min/max/average)
|
|
272
|
+
- Tier performance tracking by agent role
|
|
273
|
+
- Cost analysis with tier breakdown
|
|
274
|
+
- Failure pattern detection
|
|
275
|
+
- Memory-enhanced recommendations (when memory available)
|
|
276
|
+
- Semantic search for similar executions (requires memory)
|
|
277
|
+
- Comprehensive analytics reports
|
|
278
|
+
|
|
279
|
+
### Architecture
|
|
280
|
+
|
|
281
|
+
**Execution Flow**:
|
|
282
|
+
|
|
283
|
+
```text
|
|
284
|
+
Template Selection
|
|
285
|
+
↓
|
|
286
|
+
Socratic Form (AskUserQuestion)
|
|
287
|
+
↓
|
|
288
|
+
Agent Team Generation (from form responses)
|
|
289
|
+
↓
|
|
290
|
+
Progressive Execution (tier escalation per agent)
|
|
291
|
+
↓
|
|
292
|
+
File Storage + Memory Storage (hybrid)
|
|
293
|
+
↓
|
|
294
|
+
Pattern Learning & Analytics
|
|
295
|
+
```
|
|
296
|
+
|
|
297
|
+
**Hybrid Storage Benefits**:
|
|
298
|
+
|
|
299
|
+
- **Files**: Persistent, human-readable JSON/text, easy backup
|
|
300
|
+
- **Memory**: Semantic search, natural language queries, relationship modeling
|
|
301
|
+
- **Graceful Fallback**: Works without memory, enhanced intelligence when available
|
|
302
|
+
|
|
303
|
+
### Migration Guide
|
|
304
|
+
|
|
305
|
+
Meta-workflows are opt-in. To use:
|
|
306
|
+
|
|
307
|
+
```python
|
|
308
|
+
from empathy_os.meta_workflows import (
|
|
309
|
+
TemplateRegistry,
|
|
310
|
+
MetaWorkflow,
|
|
311
|
+
FormResponse,
|
|
312
|
+
)
|
|
313
|
+
|
|
314
|
+
# Load template
|
|
315
|
+
registry = TemplateRegistry()
|
|
316
|
+
template = registry.load_template("python_package_publish")
|
|
317
|
+
|
|
318
|
+
# Create workflow
|
|
319
|
+
workflow = MetaWorkflow(template=template)
|
|
320
|
+
|
|
321
|
+
# Execute (interactive form will be shown)
|
|
322
|
+
result = workflow.execute()
|
|
323
|
+
|
|
324
|
+
# Or provide responses programmatically
|
|
325
|
+
response = FormResponse(
|
|
326
|
+
template_id="python_package_publish",
|
|
327
|
+
responses={
|
|
328
|
+
"has_tests": "Yes",
|
|
329
|
+
"test_coverage_required": "90%",
|
|
330
|
+
"quality_checks": ["Linting (ruff)", "Type checking (mypy)"],
|
|
331
|
+
"version_bump": "minor",
|
|
332
|
+
},
|
|
333
|
+
)
|
|
334
|
+
result = workflow.execute(form_response=response, mock_execution=True)
|
|
335
|
+
|
|
336
|
+
print(f"Created {len(result.agents_created)} agents")
|
|
337
|
+
print(f"Total cost: ${result.total_cost:.2f}")
|
|
338
|
+
```
|
|
339
|
+
|
|
340
|
+
**With Memory Integration** (optional):
|
|
341
|
+
|
|
342
|
+
```python
|
|
343
|
+
from empathy_os.memory.unified import UnifiedMemory
|
|
344
|
+
from empathy_os.meta_workflows import PatternLearner, MetaWorkflow
|
|
345
|
+
|
|
346
|
+
# Initialize memory
|
|
347
|
+
memory = UnifiedMemory(user_id="agent@company.com")
|
|
348
|
+
learner = PatternLearner(memory=memory)
|
|
349
|
+
|
|
350
|
+
# Create workflow with memory integration
|
|
351
|
+
workflow = MetaWorkflow(template=template, pattern_learner=learner)
|
|
352
|
+
|
|
353
|
+
# Execute - automatically stores in files + memory
|
|
354
|
+
result = workflow.execute(form_response=response)
|
|
355
|
+
|
|
356
|
+
# Memory-enhanced queries
|
|
357
|
+
similar = learner.search_executions_by_context(
|
|
358
|
+
query="successful workflows with high test coverage",
|
|
359
|
+
limit=5,
|
|
360
|
+
)
|
|
361
|
+
|
|
362
|
+
# Smart recommendations
|
|
363
|
+
recommendations = learner.get_smart_recommendations(
|
|
364
|
+
template_id="python_package_publish",
|
|
365
|
+
form_response=new_response,
|
|
366
|
+
)
|
|
367
|
+
```
|
|
368
|
+
|
|
369
|
+
### Performance
|
|
370
|
+
|
|
371
|
+
- **Test Execution**: 7.55s (full suite of 105 tests)
|
|
372
|
+
- **Integration Tests**: 4.99s (10 tests)
|
|
373
|
+
- **Pattern Analysis**: ~50-100ms (100 executions)
|
|
374
|
+
- **Memory Write**: +10-20ms per execution (negligible overhead)
|
|
375
|
+
|
|
376
|
+
### Original Tests Summary (Days 1-5)
|
|
377
|
+
|
|
378
|
+
- ✅ **105 meta-workflow tests passing** (95 unit + 10 integration, 100% pass rate)
|
|
379
|
+
- ✅ **59.53% coverage** on meta-workflows (exceeds 53% requirement)
|
|
380
|
+
- ✅ **90-100% coverage** on core modules (models, agent_creator, workflow, form_engine)
|
|
381
|
+
- ✅ No regressions in existing functionality
|
|
382
|
+
- ✅ Security tests validate AST analysis and path traversal prevention
|
|
383
|
+
|
|
384
|
+
### Documentation
|
|
385
|
+
|
|
386
|
+
- ✅ `DAY_5_COMPLETION_SUMMARY.md` - Day 5 deliverables and status
|
|
387
|
+
- ✅ `META_WORKFLOW_SECURITY_REVIEW.md` - Comprehensive security audit
|
|
388
|
+
- ✅ `MEMORY_INTEGRATION_SUMMARY.md` - Memory architecture and benefits
|
|
389
|
+
- ✅ Inline docstrings - All public APIs documented
|
|
390
|
+
- ✅ CLI help text - All commands documented
|
|
391
|
+
|
|
392
|
+
- **Memory Search Implementation**: Full keyword-based search with relevance scoring
|
|
393
|
+
- `UnifiedMemory.search_patterns()` - Search patterns with query, pattern_type, and classification filters
|
|
394
|
+
- **Relevance scoring algorithm**: Exact phrase matches (10 points), keyword in content (2 points), keyword in metadata (1 point)
|
|
395
|
+
- **Filtering capabilities**: By pattern_type and classification
|
|
396
|
+
- **Graceful fallback**: Returns empty list when memory unavailable
|
|
397
|
+
- **Files**: `src/empathy_os/memory/unified.py` (+165 lines)
|
|
398
|
+
- **Tests**: `tests/unit/memory/test_memory_search.py` (30 tests, ~80% coverage)
|
|
399
|
+
- Basic search functionality (query, pattern_type, classification filters)
|
|
400
|
+
- Relevance scoring validation
|
|
401
|
+
- Edge cases (empty query, special characters, very long queries)
|
|
402
|
+
- Helper method validation (_get_all_patterns with invalid JSON, nested directories)
|
|
403
|
+
|
|
404
|
+
- **Session Context Tracking**: Short-term memory for personalized workflow experiences
|
|
405
|
+
- `SessionContext` class for tracking form choices and suggesting defaults
|
|
406
|
+
- **Choice recording**: Track user selections per template and question
|
|
407
|
+
- **Default suggestions**: Intelligent defaults based on recent history
|
|
408
|
+
- **TTL-based expiration**: Configurable time-to-live (default: 1 hour)
|
|
409
|
+
- **Session statistics**: Track choice counts and workflow execution metadata
|
|
410
|
+
- **Validation**: Choice validation against form schema
|
|
411
|
+
- **Files**: `src/empathy_os/meta_workflows/session_context.py` (340 lines)
|
|
412
|
+
- **Tests**: `tests/unit/meta_workflows/test_session_context.py` (35 tests, ~85% coverage)
|
|
413
|
+
- Choice recording with/without memory
|
|
414
|
+
- Default suggestion with schema validation
|
|
415
|
+
- Recent choice retrieval
|
|
416
|
+
- Session statistics
|
|
417
|
+
- TTL expiration
|
|
418
|
+
- Edge cases (invalid choices, missing schema)
|
|
419
|
+
|
|
420
|
+
- **Additional Production-Ready Workflow Templates**: 4 comprehensive templates for common use cases
|
|
421
|
+
- **code_refactoring_workflow**: Safe code refactoring with validation, testing, and review
|
|
422
|
+
- 8 questions (scope, type, tests, coverage, style, safety, backup, review)
|
|
423
|
+
- 8 agents (analyzer, test runners, planner, refactorer, enforcer, reviewer, validator)
|
|
424
|
+
- Cost range: $0.15-$2.50
|
|
425
|
+
- Use cases: Safe refactoring, modernize code, improve quality
|
|
426
|
+
- **security_audit_workflow**: Comprehensive security audit with vulnerability scanning
|
|
427
|
+
- 9 questions (scope, compliance, severity, dependencies, scans, config, reports, issues)
|
|
428
|
+
- 8 agents (vuln scanner, dependency checker, secret detector, OWASP validator, config auditor, compliance validator, report generator, issue creator)
|
|
429
|
+
- Cost range: $0.25-$3.00
|
|
430
|
+
- Use cases: Security audits, compliance validation, vulnerability assessment
|
|
431
|
+
- **documentation_generation_workflow**: Automated documentation creation
|
|
432
|
+
- 10 questions (doc types, audience, examples, format, style, diagrams, README, links)
|
|
433
|
+
- 9 agents (code analyzer, API doc generator, example generator, user guide writer, diagram generator, README updater, link validator, formatter, quality reviewer)
|
|
434
|
+
- Cost range: $0.20-$2.80
|
|
435
|
+
- Use cases: API docs, user guides, architecture documentation
|
|
436
|
+
- **test_creation_management_workflow**: Enterprise-level test creation and management
|
|
437
|
+
- 12 questions (scope, test types, framework, coverage, quality checks, inspection mode, updates, data strategy, parallel execution, reports, CI integration, documentation)
|
|
438
|
+
- 11 agents (test analyzer, unit test generator, integration test creator, e2e test designer, quality validator, test updater, fixture manager, performance test creator, report generator, CI integration specialist, documentation writer)
|
|
439
|
+
- Cost range: $0.30-$3.50
|
|
440
|
+
- Use cases: Comprehensive test suites, test quality improvement, CI/CD integration, enterprise testing
|
|
441
|
+
- **Files**: `.empathy/meta_workflows/templates/` (4 template JSON files)
|
|
442
|
+
- **All templates validated**: JSON schema conformance, CLI testing completed
|
|
443
|
+
|
|
444
|
+
### Tests
|
|
445
|
+
|
|
446
|
+
- ✅ **170+ tests passing** (105 original + 65 new, 100% pass rate)
|
|
447
|
+
- ✅ **62%+ estimated coverage** overall
|
|
448
|
+
- ✅ **Memory search tests**: 30 tests (~80% coverage)
|
|
449
|
+
- ✅ **Session context tests**: 35 tests (~85% coverage)
|
|
450
|
+
- ✅ **Template validation**: All 5 templates load successfully
|
|
451
|
+
- ✅ **CLI validation**: All commands tested and working
|
|
452
|
+
- ✅ No regressions in existing functionality
|
|
453
|
+
- ✅ Security tests validate AST analysis and path traversal prevention
|
|
454
|
+
|
|
455
|
+
### CLI Testing Validation
|
|
456
|
+
|
|
457
|
+
- ✅ `empathy meta-workflow list-templates` - Shows all 4 templates
|
|
458
|
+
- ✅ `empathy meta-workflow inspect <template_id>` - Detailed template view
|
|
459
|
+
- ✅ `empathy meta-workflow list-runs` - Shows execution history
|
|
460
|
+
- ✅ `empathy meta-workflow analytics <template_id>` - Pattern learning insights
|
|
461
|
+
- **Documentation**: `TEST_RESULTS_SUMMARY.md` - Complete CLI testing report
|
|
462
|
+
|
|
463
|
+
### Quality Assurance
|
|
464
|
+
|
|
465
|
+
- ✅ **Production-ready**: Zero quality compromises
|
|
466
|
+
- ✅ **Extended testing**: Additional 3+ hours of quality validation
|
|
467
|
+
- ✅ **OWASP Top 10 compliance**: Security hardened implementation
|
|
468
|
+
- ✅ **Comprehensive documentation**: User guides, API docs, security reviews
|
|
469
|
+
- **Report**: `QA_PUBLISH_REPORT.md` - Quality assurance and publish readiness
|
|
470
|
+
|
|
471
|
+
### Future Enhancements
|
|
472
|
+
|
|
473
|
+
**Deferred to v4.3.0**:
|
|
474
|
+
|
|
475
|
+
- Real LLM integration (replace mock execution with actual API calls)
|
|
476
|
+
- Telemetry integration for meta-workflow cost tracking
|
|
477
|
+
- Cross-template pattern recognition
|
|
478
|
+
- Advanced session context features (preference learning, workflow suggestions)
|
|
479
|
+
|
|
480
|
+
---
|
|
481
|
+
|
|
8
482
|
## [4.1.1] - 2026-01-17
|
|
9
483
|
|
|
10
|
-
###
|
|
484
|
+
### Changes
|
|
11
485
|
|
|
12
486
|
- **Progressive CLI Integration**: Integrated progressive workflow commands into main empathy CLI
|
|
13
487
|
- `empathy progressive list` - List all saved progressive workflow results
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: empathy-framework
|
|
3
|
-
Version: 4.
|
|
4
|
-
Summary: AI collaboration framework with progressive tier escalation (70-85% cost savings), meta-orchestration, dynamic agent composition (6 patterns), intelligent caching (85% hit rate),
|
|
3
|
+
Version: 4.4.0
|
|
4
|
+
Summary: AI collaboration framework with real LLM agent execution, AskUserQuestion tool integration, Socratic agent generation, progressive tier escalation (70-85% cost savings), meta-orchestration, dynamic agent composition (6 patterns), intelligent caching (85% hit rate), semantic workflow discovery, visual workflow editor, MCP integration for Claude Code, and multi-agent orchestration.
|
|
5
5
|
Author-email: Patrick Roebuck <admin@smartaimemory.com>
|
|
6
6
|
Maintainer-email: Smart-AI-Memory <admin@smartaimemory.com>
|
|
7
7
|
License: # Fair Source License, version 0.9
|
|
@@ -176,9 +176,6 @@ Requires-Dist: rich<14.0.0,>=13.0.0
|
|
|
176
176
|
Requires-Dist: typer<1.0.0,>=0.9.0
|
|
177
177
|
Requires-Dist: pyyaml<7.0,>=6.0
|
|
178
178
|
Requires-Dist: anthropic<1.0.0,>=0.25.0
|
|
179
|
-
Requires-Dist: crewai<1.0.0,>=0.1.0
|
|
180
|
-
Requires-Dist: langchain<2.0.0,>=0.1.0
|
|
181
|
-
Requires-Dist: langchain-core<2.0.0,>=1.2.6
|
|
182
179
|
Provides-Extra: anthropic
|
|
183
180
|
Requires-Dist: anthropic<1.0.0,>=0.25.0; extra == "anthropic"
|
|
184
181
|
Provides-Extra: openai
|
|
@@ -200,6 +197,8 @@ Requires-Dist: langgraph-checkpoint<4.0.0,>=3.0.0; extra == "agents"
|
|
|
200
197
|
Requires-Dist: marshmallow<5.0.0,>=4.1.2; extra == "agents"
|
|
201
198
|
Provides-Extra: crewai
|
|
202
199
|
Requires-Dist: crewai<1.0.0,>=0.1.0; extra == "crewai"
|
|
200
|
+
Requires-Dist: langchain<2.0.0,>=0.1.0; extra == "crewai"
|
|
201
|
+
Requires-Dist: langchain-core<2.0.0,>=1.2.6; extra == "crewai"
|
|
203
202
|
Provides-Extra: cache
|
|
204
203
|
Requires-Dist: sentence-transformers<4.0.0,>=2.0.0; extra == "cache"
|
|
205
204
|
Requires-Dist: torch<3.0.0,>=2.0.0; extra == "cache"
|
|
@@ -251,9 +250,9 @@ Requires-Dist: mkdocstrings[python]<1.0.0,>=0.24.0; extra == "docs"
|
|
|
251
250
|
Requires-Dist: mkdocs-with-pdf<1.0.0,>=0.9.3; extra == "docs"
|
|
252
251
|
Requires-Dist: pymdown-extensions<11.0,>=10.0; extra == "docs"
|
|
253
252
|
Provides-Extra: dev
|
|
254
|
-
Requires-Dist: pytest<
|
|
255
|
-
Requires-Dist: pytest-asyncio<
|
|
256
|
-
Requires-Dist: pytest-cov<
|
|
253
|
+
Requires-Dist: pytest<10.0,>=7.0; extra == "dev"
|
|
254
|
+
Requires-Dist: pytest-asyncio<2.0,>=0.21; extra == "dev"
|
|
255
|
+
Requires-Dist: pytest-cov<8.0,>=4.0; extra == "dev"
|
|
257
256
|
Requires-Dist: pytest-xdist<4.0,>=3.5.0; extra == "dev"
|
|
258
257
|
Requires-Dist: pytest-testmon<3.0,>=2.1.0; extra == "dev"
|
|
259
258
|
Requires-Dist: pytest-picked<1.0,>=0.5.0; extra == "dev"
|
|
@@ -262,7 +261,7 @@ Requires-Dist: mypy<2.0,>=1.0; extra == "dev"
|
|
|
262
261
|
Requires-Dist: ruff<1.0,>=0.1; extra == "dev"
|
|
263
262
|
Requires-Dist: coverage<8.0,>=7.0; extra == "dev"
|
|
264
263
|
Requires-Dist: bandit<2.0,>=1.7; extra == "dev"
|
|
265
|
-
Requires-Dist: pre-commit<
|
|
264
|
+
Requires-Dist: pre-commit<5.0,>=3.0; extra == "dev"
|
|
266
265
|
Requires-Dist: httpx<1.0.0,>=0.27.0; extra == "dev"
|
|
267
266
|
Requires-Dist: fastapi<1.0.0,>=0.109.1; extra == "dev"
|
|
268
267
|
Provides-Extra: developer
|
|
@@ -373,11 +372,77 @@ Dynamic: license-file
|
|
|
373
372
|
pip install empathy-framework[developer] # Lightweight for individual developers
|
|
374
373
|
```
|
|
375
374
|
|
|
376
|
-
## What's New in v4.
|
|
375
|
+
## What's New in v4.2.0 🤖 **META-WORKFLOW SYSTEM**
|
|
377
376
|
|
|
378
|
-
### **
|
|
377
|
+
### **Intelligent Workflow Orchestration Through Forms + Dynamic Agents**
|
|
379
378
|
|
|
380
|
-
**The breakthrough:**
|
|
379
|
+
**The breakthrough:** v4.2 introduces a meta-workflow system that combines Socratic forms (interactive questions), dynamic agent team creation, and pattern learning for self-improving workflows.
|
|
380
|
+
|
|
381
|
+
**How it works:**
|
|
382
|
+
|
|
383
|
+
1. 🎯 **Template Selection** - Choose from pre-built workflow templates (e.g., `python_package_publish`)
|
|
384
|
+
2. 📝 **Socratic Forms** - Answer interactive questions about your workflow requirements
|
|
385
|
+
3. 🤖 **Dynamic Agent Creation** - System generates optimized agent team based on your responses
|
|
386
|
+
4. ⚡ **Progressive Execution** - Agents execute with tier escalation (cheap → capable → premium)
|
|
387
|
+
5. 🧠 **Pattern Learning** - System learns from outcomes to optimize future workflows
|
|
388
|
+
|
|
389
|
+
**Quick Start:**
|
|
390
|
+
|
|
391
|
+
```bash
|
|
392
|
+
# Run meta-workflow with interactive form
|
|
393
|
+
empathy meta-workflow run python_package_publish
|
|
394
|
+
|
|
395
|
+
# View pattern learning insights
|
|
396
|
+
empathy meta-workflow analytics python_package_publish
|
|
397
|
+
|
|
398
|
+
# List historical executions
|
|
399
|
+
empathy meta-workflow list-runs
|
|
400
|
+
```
|
|
401
|
+
|
|
402
|
+
**Example workflow:**
|
|
403
|
+
|
|
404
|
+
```python
|
|
405
|
+
from empathy_os.meta_workflows import TemplateRegistry, MetaWorkflow, FormResponse
|
|
406
|
+
|
|
407
|
+
# Load template
|
|
408
|
+
registry = TemplateRegistry()
|
|
409
|
+
template = registry.load_template("python_package_publish")
|
|
410
|
+
|
|
411
|
+
# Create workflow
|
|
412
|
+
workflow = MetaWorkflow(template=template)
|
|
413
|
+
|
|
414
|
+
# Execute with form responses
|
|
415
|
+
response = FormResponse(
|
|
416
|
+
template_id="python_package_publish",
|
|
417
|
+
responses={
|
|
418
|
+
"has_tests": "Yes",
|
|
419
|
+
"test_coverage_required": "90%",
|
|
420
|
+
"quality_checks": ["Linting (ruff)", "Type checking (mypy)"],
|
|
421
|
+
"version_bump": "minor",
|
|
422
|
+
},
|
|
423
|
+
)
|
|
424
|
+
result = workflow.execute(form_response=response, mock_execution=True)
|
|
425
|
+
|
|
426
|
+
print(f"✅ Created {len(result.agents_created)} agents")
|
|
427
|
+
print(f"💰 Total cost: ${result.total_cost:.2f}")
|
|
428
|
+
```
|
|
429
|
+
|
|
430
|
+
**Key Features:**
|
|
431
|
+
|
|
432
|
+
- ✅ **Interactive forms** via `AskUserQuestion` (batched, max 4 at a time)
|
|
433
|
+
- ✅ **Dynamic agent generation** from templates based on responses
|
|
434
|
+
- ✅ **Hybrid storage** - files (persistent) + memory (semantic queries)
|
|
435
|
+
- ✅ **Pattern learning** - analyzes historical executions for optimization
|
|
436
|
+
- ✅ **7 CLI commands** - list, run, analytics, show, export, validate
|
|
437
|
+
- ✅ **Security hardened** - OWASP Top 10 compliant, AST-verified
|
|
438
|
+
|
|
439
|
+
---
|
|
440
|
+
|
|
441
|
+
## What's in v4.0.0 🎭 **META-ORCHESTRATION**
|
|
442
|
+
|
|
443
|
+
### **AI Agents That Compose Themselves**
|
|
444
|
+
|
|
445
|
+
**The concept:** Instead of manually wiring agent workflows, v4.0 introduces a meta-orchestration system that analyzes tasks, selects optimal agent teams, chooses composition patterns, and learns from outcomes.
|
|
381
446
|
|
|
382
447
|
**What this means:**
|
|
383
448
|
|