empathy-framework 5.0.3__tar.gz → 5.1.1__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-5.0.3 → empathy_framework-5.1.1}/CHANGELOG.md +85 -0
- empathy_framework-5.1.1/LICENSE +201 -0
- empathy_framework-5.1.1/LICENSE_CHANGE_ANNOUNCEMENT.md +101 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/PKG-INFO +259 -142
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/README.md +55 -2
- empathy_framework-5.1.1/docs/api-reference/memory.md +301 -0
- empathy_framework-5.1.1/docs/api-reference/security-scanner.md +855 -0
- empathy_framework-5.1.1/docs/api-reference/workflows.md +402 -0
- empathy_framework-5.1.1/docs/getting-started/installation.md +171 -0
- empathy_framework-5.1.1/docs/getting-started/mcp-integration.md +136 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_framework.egg-info/PKG-INFO +259 -142
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_framework.egg-info/SOURCES.txt +49 -0
- empathy_framework-5.1.1/examples/adaptive_routing_workflow_demo.py +157 -0
- empathy_framework-5.1.1/examples/agent_coordination_demo.py +234 -0
- empathy_framework-5.1.1/examples/agent_tracking_demo.py +169 -0
- empathy_framework-5.1.1/examples/approval_gates_demo.py +365 -0
- empathy_framework-5.1.1/examples/coordinated_workflow_demo.py +363 -0
- empathy_framework-5.1.1/examples/dashboard_demo.py +229 -0
- empathy_framework-5.1.1/examples/event_streaming_demo.py +318 -0
- empathy_framework-5.1.1/examples/feedback_loop_demo.py +382 -0
- empathy_framework-5.1.1/examples/scanner_usage.py +277 -0
- empathy_framework-5.1.1/examples/suggest_adaptive_routing.py +153 -0
- empathy_framework-5.1.1/examples/test_approval_gates.py +121 -0
- empathy_framework-5.1.1/examples/workflow_chaining_demo.py +254 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/pyproject.toml +2 -1
- empathy_framework-5.1.1/src/.empathy/discovery_stats.json +15 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/__init__.py +1 -1
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/batch.py +5 -5
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/routing.py +1 -1
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/workflow.py +2 -1
- empathy_framework-5.1.1/src/empathy_os/cli/parsers/cache.py +65 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli_minimal.py +3 -3
- empathy_framework-5.1.1/src/empathy_os/cli_router.py +428 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/dashboard/__init__.py +1 -2
- empathy_framework-5.1.1/src/empathy_os/dashboard/app.py +512 -0
- empathy_framework-5.1.1/src/empathy_os/dashboard/simple_server.py +403 -0
- empathy_framework-5.1.1/src/empathy_os/dashboard/standalone_server 2.py +536 -0
- empathy_framework-5.1.1/src/empathy_os/memory/types.py +441 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/meta_workflows/intent_detector.py +71 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/models/__init__.py +19 -0
- empathy_framework-5.1.1/src/empathy_os/models/adaptive_routing.py +437 -0
- empathy_framework-5.1.1/src/empathy_os/models/auth_cli.py +444 -0
- empathy_framework-5.1.1/src/empathy_os/models/auth_strategy.py +450 -0
- empathy_framework-5.1.1/src/empathy_os/project_index/scanner_parallel.py +291 -0
- empathy_framework-5.1.1/src/empathy_os/telemetry/agent_coordination 2.py +478 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/telemetry/agent_coordination.py +3 -3
- empathy_framework-5.1.1/src/empathy_os/telemetry/agent_tracking 2.py +350 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/telemetry/agent_tracking.py +1 -2
- empathy_framework-5.1.1/src/empathy_os/telemetry/approval_gates 2.py +563 -0
- empathy_framework-5.1.1/src/empathy_os/telemetry/event_streaming 2.py +405 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/telemetry/event_streaming.py +3 -3
- empathy_framework-5.1.1/src/empathy_os/telemetry/feedback_loop 2.py +557 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/telemetry/feedback_loop.py +1 -1
- empathy_framework-5.1.1/src/empathy_os/vscode_bridge.py +173 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/__init__.py +8 -0
- empathy_framework-5.1.1/src/empathy_os/workflows/autonomous_test_gen.py +569 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/bug_predict.py +45 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/code_review.py +92 -22
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/document_gen.py +594 -62
- empathy_framework-5.1.1/src/empathy_os/workflows/llm_base.py +363 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/perf_audit.py +69 -0
- empathy_framework-5.1.1/src/empathy_os/workflows/progressive/README.md +454 -0
- empathy_framework-5.1.1/src/empathy_os/workflows/progressive/__init__ 2.py +92 -0
- empathy_framework-5.1.1/src/empathy_os/workflows/progressive/cli 2.py +242 -0
- empathy_framework-5.1.1/src/empathy_os/workflows/progressive/core 2.py +488 -0
- empathy_framework-5.1.1/src/empathy_os/workflows/progressive/orchestrator 2.py +701 -0
- empathy_framework-5.1.1/src/empathy_os/workflows/progressive/reports 2.py +528 -0
- empathy_framework-5.1.1/src/empathy_os/workflows/progressive/telemetry 2.py +280 -0
- empathy_framework-5.1.1/src/empathy_os/workflows/progressive/test_gen 2.py +514 -0
- empathy_framework-5.1.1/src/empathy_os/workflows/progressive/workflow 2.py +628 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/release_prep.py +54 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/security_audit.py +154 -79
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/test_gen.py +60 -0
- empathy_framework-5.1.1/src/empathy_os/workflows/test_gen_behavioral.py +477 -0
- empathy_framework-5.1.1/src/empathy_os/workflows/test_gen_parallel.py +341 -0
- empathy_framework-5.1.1/tests/test_smoke.py +157 -0
- empathy_framework-5.0.3/LICENSE +0 -139
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/.bandit +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/CODE_OF_CONDUCT.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/CONTRIBUTING.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/MANIFEST.in +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/SECURITY.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/agents/code_inspection/patterns/inspection/recurring_B112.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/agents/code_inspection/patterns/inspection/recurring_F541.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/agents/code_inspection/patterns/inspection/recurring_FORMAT.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/agents/code_inspection/patterns/inspection/recurring_bug_20250822_def456.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/agents/code_inspection/patterns/inspection/recurring_bug_20250915_abc123.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/agents/code_inspection/patterns/inspection/recurring_bug_20251212_3c5b9951.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/agents/code_inspection/patterns/inspection/recurring_bug_20251212_97c0f72f.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/agents/code_inspection/patterns/inspection/recurring_bug_20251212_a0871d53.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/agents/code_inspection/patterns/inspection/recurring_bug_20251212_a9b6ec41.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/agents/code_inspection/patterns/inspection/recurring_bug_null_001.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/agents/code_inspection/patterns/inspection/recurring_builtin.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/api-reference/README.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/api-reference/config.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/api-reference/core.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/api-reference/empathy-os.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/api-reference/index.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/api-reference/llm-toolkit.md +0 -0
- /empathy_framework-5.0.3/docs/api-reference/memory.md → /empathy_framework-5.1.1/docs/api-reference/memory 2.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/api-reference/meta-orchestration.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/api-reference/multi-agent.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/api-reference/pattern-library.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/api-reference/persistence.md +0 -0
- /empathy_framework-5.0.3/docs/api-reference/security-scanner.md → /empathy_framework-5.1.1/docs/api-reference/security-scanner 2.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/api-reference/software-wizards.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/api-reference/wizards.md +0 -0
- /empathy_framework-5.0.3/docs/api-reference/workflows.md → /empathy_framework-5.1.1/docs/api-reference/workflows 2.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/examples/adaptive-learning-system.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/examples/generated-plan-release-prep.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/examples/multi-agent-team-coordination.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/examples/sbar-clinical-handoff.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/examples/simple-chatbot.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/examples/webhook-event-integration.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/getting-started/choose-your-path.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/getting-started/first-steps.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/getting-started/index.md +0 -0
- /empathy_framework-5.0.3/docs/getting-started/installation.md → /empathy_framework-5.1.1/docs/getting-started/installation 2.md +0 -0
- /empathy_framework-5.0.3/docs/getting-started/mcp-integration.md → /empathy_framework-5.1.1/docs/getting-started/mcp-integration 2.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/getting-started/redis-setup.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/DISTRIBUTION_POLICY.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/MCP_PUBLISH_INSTRUCTIONS.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/MKDOCS_TUTORIAL.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/PUBLISHING.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/RELEASE_PREPARATION.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/WORKFLOW_PATTERNS.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/claude-memory-integration.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/five-levels-of-empathy.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/foreword.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/healthcare-wizards.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/how-to-read-this-book.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/multi-model-workflows.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/pattern-catalog.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/preface.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/signoz-integration.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/teaching-ai-your-standards.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/trust-circuit-breaker.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/guides/xml-enhanced-prompts.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/docs/index.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_framework.egg-info/dependency_links.txt +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_framework.egg-info/entry_points.txt +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_framework.egg-info/requires.txt +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_framework.egg-info/top_level.txt +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_healthcare_plugin/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_healthcare_plugin/monitors/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_healthcare_plugin/monitors/clinical_protocol_monitor.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_healthcare_plugin/monitors/monitoring/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_healthcare_plugin/monitors/monitoring/protocol_checker.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_healthcare_plugin/monitors/monitoring/protocol_loader.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_healthcare_plugin/monitors/monitoring/sensor_parsers.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_healthcare_plugin/monitors/monitoring/trajectory_analyzer.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_healthcare_plugin/protocols/cardiac.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_healthcare_plugin/protocols/post_operative.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_healthcare_plugin/protocols/respiratory.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_healthcare_plugin/protocols/sepsis.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/README.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/adapters/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/adapters/autogen_adapter.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/adapters/crewai_adapter.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/adapters/haystack_adapter.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/adapters/langchain_adapter.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/adapters/langgraph_adapter.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/adapters/native.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/adapters/wizard_adapter.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/base.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/crews/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/crews/code_review.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/crews/health_check.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/crews/refactoring.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/crews/security_audit.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/decorators.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/factory.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/framework.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/memory_integration.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agent_factory/resilient.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agents_md/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agents_md/loader.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agents_md/parser.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/agents_md/registry.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/claude_memory.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/cli/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/cli/sync_claude.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/code_health.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/commands/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/commands/context.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/commands/loader.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/commands/models.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/commands/parser.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/commands/registry.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/config/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/config/unified.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/context/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/context/compaction.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/context/manager.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/contextual_patterns.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/core.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/git_pattern_extractor.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/hooks/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/hooks/config.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/hooks/executor.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/hooks/registry.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/hooks/scripts/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/hooks/scripts/evaluate_session.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/hooks/scripts/first_time_init.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/hooks/scripts/pre_compact.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/hooks/scripts/session_end.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/hooks/scripts/session_start.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/hooks/scripts/suggest_compact.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/learning/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/learning/evaluator.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/learning/extractor.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/learning/storage.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/levels.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/pattern_confidence.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/pattern_resolver.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/pattern_summary.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/providers.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/routing/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/routing/model_router.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/security/IMPLEMENTATION_SUMMARY.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/security/PHASE2_COMPLETE.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/security/PHASE2_SECRETS_DETECTOR_COMPLETE.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/security/QUICK_REFERENCE.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/security/README.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/security/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/security/audit_logger.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/security/audit_logger_example.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/security/pii_scrubber.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/security/secrets_detector.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/security/secrets_detector_example.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/security/secure_memdocs.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/security/secure_memdocs_example.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/session_status.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/state.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/utils/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_llm_toolkit/utils/tokens.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_software_plugin/SOFTWARE_PLUGIN_README.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_software_plugin/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_software_plugin/cli/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_software_plugin/cli/inspect.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_software_plugin/cli.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/empathy_software_plugin/plugin.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/README.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/WIZARD_DASHBOARD_IMPLEMENTATION.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/WIZARD_DASHBOARD_STATE_MANAGEMENT.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/WIZARD_DASHBOARD_WIREFRAMES.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/adaptive_routing_demo.py +0 -0
- /empathy_framework-5.0.3/examples/adaptive_routing_workflow_demo.py → /empathy_framework-5.1.1/examples/adaptive_routing_workflow_demo 2.py +0 -0
- /empathy_framework-5.0.3/examples/agent_coordination_demo.py → /empathy_framework-5.1.1/examples/agent_coordination_demo 2.py +0 -0
- /empathy_framework-5.0.3/examples/agent_tracking_demo.py → /empathy_framework-5.1.1/examples/agent_tracking_demo 2.py +0 -0
- /empathy_framework-5.0.3/examples/approval_gates_demo.py → /empathy_framework-5.1.1/examples/approval_gates_demo 2.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/claude_memory/README-SECURITY.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/claude_memory/enterprise-CLAUDE-secure.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/claude_memory/example-with-imports.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/claude_memory/project-CLAUDE.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/claude_memory/user-CLAUDE.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/complete-workflow/README.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/complete-workflow/workflow_example.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/config/empathy.config.example.yml +0 -0
- /empathy_framework-5.0.3/examples/coordinated_workflow_demo.py → /empathy_framework-5.1.1/examples/coordinated_workflow_demo 2.py +0 -0
- /empathy_framework-5.0.3/examples/dashboard_demo.py → /empathy_framework-5.1.1/examples/dashboard_demo 2.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/demos/demo_end_to_end_workflow.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/demos/demo_memory_integration.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/demos/demo_meta_workflows.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/demos/demo_progressive_demo.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/demos/demo_security_complete.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/demos/demo_test_workflow.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/domain_wizards/all_domain_wizards_demo.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/domain_wizards/healthcare_example.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/domain_wizards/tests/test_healthcare_wizard.py +0 -0
- /empathy_framework-5.0.3/examples/event_streaming_demo.py → /empathy_framework-5.1.1/examples/event_streaming_demo 2.py +0 -0
- /empathy_framework-5.0.3/examples/feedback_loop_demo.py → /empathy_framework-5.1.1/examples/feedback_loop_demo 2.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/hybrid_cli_demo.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/level_5_transformative/BLOG_POST.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/level_5_transformative/README.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/level_5_transformative/data/deployment_pipeline.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/level_5_transformative/data/healthcare_handoff_code.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/llm_toolkit_demo.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/meta_orchestrator_demo.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/multi_llm_usage.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/orchestration/advanced_composition.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/orchestration/basic_usage.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/orchestration/custom_workflow.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/progressive_test_gen_demo.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/quickstart/README.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/quickstart.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/redis_exploration.py +0 -0
- /empathy_framework-5.0.3/examples/scanner_usage.py → /empathy_framework-5.1.1/examples/scanner_usage 2.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/security_integration_example.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/simple_usage.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/smart_team_quickstart.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/sonnet_opus_fallback_example.py +0 -0
- /empathy_framework-5.0.3/examples/suggest_adaptive_routing.py → /empathy_framework-5.1.1/examples/suggest_adaptive_routing 2.py +0 -0
- /empathy_framework-5.0.3/examples/test_approval_gates.py → /empathy_framework-5.1.1/examples/test_approval_gates 2.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/test_debugging_wizard.py +0 -0
- /empathy_framework-5.0.3/examples/workflow_chaining_demo.py → /empathy_framework-5.1.1/examples/workflow_chaining_demo 2.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/workflows/README.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/workflows/code_review_example.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/workflows/doc_gen_example.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/workflows/multi_model_example.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/examples/workflows/research_example.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/requirements.txt +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/setup.cfg +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/adaptive/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/adaptive/task_complexity.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/agent_monitoring.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cache/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cache/base.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cache/dependency_manager.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cache/hash_only.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cache/hybrid.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cache/storage.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cache_monitor.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cache_stats.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/__main__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/cache.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/help.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/info.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/inspect.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/inspection.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/memory.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/metrics.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/orchestrate.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/patterns.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/profiling.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/provider.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/setup.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/status.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/sync.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/tier.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/commands/utilities.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/core.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/parsers/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/parsers/batch.py +0 -0
- /empathy_framework-5.0.3/src/empathy_os/cli/parsers/cache.py → /empathy_framework-5.1.1/src/empathy_os/cli/parsers/cache 2.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/parsers/help.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/parsers/info.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/parsers/inspect.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/parsers/metrics.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/parsers/orchestrate.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/parsers/patterns.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/parsers/provider.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/parsers/routing.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/parsers/setup.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/parsers/status.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/parsers/sync.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/parsers/tier.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/parsers/workflow.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/utils/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/utils/data.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli/utils/helpers.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli_legacy.py +0 -0
- /empathy_framework-5.0.3/src/empathy_os/cli_router.py → /empathy_framework-5.1.1/src/empathy_os/cli_router 2.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cli_unified.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/config/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/config/xml_config.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/config.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/coordination.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/core.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/cost_tracker.py +0 -0
- /empathy_framework-5.0.3/src/empathy_os/dashboard/app.py → /empathy_framework-5.1.1/src/empathy_os/dashboard/app 2.py +0 -0
- /empathy_framework-5.0.3/src/empathy_os/dashboard/simple_server.py → /empathy_framework-5.1.1/src/empathy_os/dashboard/simple_server 2.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/dashboard/standalone_server.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/discovery.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/emergence.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/exceptions.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/feedback_loops.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/hot_reload/README.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/hot_reload/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/hot_reload/config.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/hot_reload/integration.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/hot_reload/reloader.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/hot_reload/watcher.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/hot_reload/websocket.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/levels.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/leverage_points.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/logging_config.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/claude_memory.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/config.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/control_panel.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/cross_session.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/edges.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/file_session.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/graph.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/long_term.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/nodes.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/redis_bootstrap.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/security/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/security/audit_logger.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/security/pii_scrubber.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/security/secrets_detector.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/short_term.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/storage/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/summary_index.py +0 -0
- /empathy_framework-5.0.3/src/empathy_os/memory/types.py → /empathy_framework-5.1.1/src/empathy_os/memory/types 2.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/memory/unified.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/meta_workflows/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/meta_workflows/agent_creator.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/meta_workflows/builtin_templates.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/meta_workflows/cli_meta_workflows.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/meta_workflows/form_engine.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/meta_workflows/models.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/meta_workflows/pattern_learner.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/meta_workflows/plan_generator.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/meta_workflows/session_context.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/meta_workflows/template_registry.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/meta_workflows/workflow.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/metrics/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/metrics/collector.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/metrics/prompt_metrics.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/models/__main__.py +0 -0
- /empathy_framework-5.0.3/src/empathy_os/models/adaptive_routing.py → /empathy_framework-5.1.1/src/empathy_os/models/adaptive_routing 2.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/models/cli.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/models/empathy_executor.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/models/executor.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/models/fallback.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/models/provider_config.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/models/registry.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/models/tasks.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/models/telemetry.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/models/token_estimator.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/models/validation.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/monitoring/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/monitoring/alerts.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/monitoring/alerts_cli.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/monitoring/multi_backend.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/monitoring/otel_backend.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/optimization/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/optimization/context_optimizer.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/orchestration/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/orchestration/agent_templates.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/orchestration/config_store.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/orchestration/execution_strategies.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/orchestration/meta_orchestrator.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/orchestration/pattern_learner.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/orchestration/real_tools.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/pattern_cache.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/pattern_library.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/patterns/debugging/all_patterns.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/patterns/debugging/workflow_20260107_1770825e.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/patterns/refactoring_memory.json +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/persistence.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/platform_utils.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/plugins/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/plugins/base.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/plugins/registry.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/project_index/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/project_index/cli.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/project_index/index.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/project_index/models.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/project_index/reports.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/project_index/scanner.py +0 -0
- /empathy_framework-5.0.3/src/empathy_os/project_index/scanner_parallel.py → /empathy_framework-5.1.1/src/empathy_os/project_index/scanner_parallel 2.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/prompts/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/prompts/config.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/prompts/context.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/prompts/parser.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/prompts/registry.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/prompts/templates.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/redis_config.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/redis_memory.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/resilience/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/resilience/circuit_breaker.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/resilience/fallback.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/resilience/health.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/resilience/retry.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/resilience/timeout.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/routing/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/routing/chain_executor.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/routing/classifier.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/routing/smart_router.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/routing/workflow_registry.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/scaffolding/README.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/scaffolding/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/scaffolding/__main__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/scaffolding/cli.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/ab_testing.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/blueprint.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/cli.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/collaboration.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/domain_templates.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/embeddings.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/engine.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/explainer.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/feedback.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/forms.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/generator.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/llm_analyzer.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/mcp_server.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/session.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/storage.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/success.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/visual_editor.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/socratic/web_ui.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/telemetry/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/telemetry/approval_gates.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/telemetry/cli.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/telemetry/usage_tracker.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/templates.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/test_generator/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/test_generator/__main__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/test_generator/cli.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/test_generator/generator.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/test_generator/risk_analyzer.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/tier_recommender.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/trust/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/trust/circuit_breaker.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/trust_building.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/validation/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/validation/xml_validator.py +0 -0
- /empathy_framework-5.0.3/src/empathy_os/vscode_bridge.py → /empathy_framework-5.1.1/src/empathy_os/vscode_bridge 2.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflow_commands.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflow_patterns/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflow_patterns/behavior.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflow_patterns/core.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflow_patterns/output.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflow_patterns/registry.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflow_patterns/structural.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/base.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/batch_processing.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/builder.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/caching.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/code_review_adapters.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/code_review_pipeline.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/config.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/dependency_check.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/document_manager.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/document_manager_README.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/documentation_orchestrator.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/history.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/keyboard_shortcuts/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/keyboard_shortcuts/generators.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/keyboard_shortcuts/parsers.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/keyboard_shortcuts/prompts.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/keyboard_shortcuts/schema.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/keyboard_shortcuts/workflow.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/manage_docs.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/manage_docs_README.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/manage_documentation.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/new_sample_workflow1.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/new_sample_workflow1_README.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/orchestrated_health_check.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/orchestrated_release_prep.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/output.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/pr_review.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/progress.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/progress_server.py +0 -0
- /empathy_framework-5.0.3/src/empathy_os/workflows/progressive/README.md → /empathy_framework-5.1.1/src/empathy_os/workflows/progressive/README 2.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/progressive/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/progressive/cli.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/progressive/core.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/progressive/orchestrator.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/progressive/reports.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/progressive/telemetry.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/progressive/test_gen.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/progressive/workflow.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/refactor_plan.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/release_prep_crew.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/research_synthesis.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/routing.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/secure_release.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/security_adapters.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/security_audit_phase3.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/step_config.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/telemetry_mixin.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/test5.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/test5_README.md +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/test_coverage_boost_crew.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/test_lifecycle.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/test_maintenance.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/test_maintenance_cli.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/test_maintenance_crew.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/test_runner.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/tier_tracking.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/src/empathy_os/workflows/xml_enhanced_crew.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_agent_factory.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_agent_factory_memory.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_agent_factory_resilience.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_audit_logger.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_audit_logger_extended.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_base.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_baseline.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_book_production_agents.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_bug_predict_workflow.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_claude_memory.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_claude_memory_extended.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_clinical_protocol_monitor.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_code_health.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_code_review.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_code_review_crew_integration.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_code_review_pipeline.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_code_review_pipeline_workflow.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_code_review_workflow.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_config.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_control_panel.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_control_panel_security.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_coordination.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_core.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_core_reliability.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_cost_tracker.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_dependency_check.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_dependency_check_workflow.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_discovery.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_document_gen.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_document_gen_workflow.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_emergence.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_empathy_llm_core.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_empathy_llm_security.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_empathy_os.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_exceptions.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_executor_integration.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_fallback.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_fallback_suite.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_feedback_loops.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_finding_extraction.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_graph.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_health_check.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_healthcare_plugin.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_intelligence_integration.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_levels.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_leverage_points.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_llm_integration.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_llm_toolkit_agents.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_llm_toolkit_core.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_llm_toolkit_decorators.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_llm_toolkit_empathy_core.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_llm_toolkit_langgraph_adapter.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_llm_toolkit_levels.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_llm_toolkit_memory.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_llm_toolkit_patterns.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_llm_toolkit_providers.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_llm_toolkit_security.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_llm_toolkit_session_status.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_llm_toolkit_wizard_adapter.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_logging_config.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_long_term.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_memory_graph.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_model_registry.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_model_router.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_monitoring.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_pattern_cache.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_pattern_library.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_perf_audit_workflow.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_persistence.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_pii_scrubber.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_pii_scrubber_extended.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_platform_compat_ci.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_platform_utils.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_plugin_base.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_plugin_registry.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_pr_review.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_pr_review_workflow.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_production_smoke.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_progress.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_protocol_checker.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_protocol_loader.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_provider_config.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_providers.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_redis_bootstrap.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_redis_config.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_redis_integration.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_redis_memory.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_redis_memory_errors.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_refactor_golden.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_refactor_plan_workflow.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_refactoring.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_refactoring_crew.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_registry.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_release_prep.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_reporting.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_reports.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_resilience.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_sbar_wizard.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_scanner.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_scanner_exceptions.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_secrets_detector.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_secure_memdocs.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_secure_memdocs_extended.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_secure_release.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_secure_release_workflow.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_security_audit.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_security_audit_crew.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_security_audit_workflow.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_security_crew_integration.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_security_integration.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_security_negative_cases.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_security_scan.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_sensor_parsers.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_session_status.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_short_term.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_smart_router.py +0 -0
- /empathy_framework-5.0.3/tests/test_smoke.py → /empathy_framework-5.1.1/tests/test_smoke 2.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_sonnet_opus_fallback.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_state.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_step_config.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_summary_index.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_sync_claude.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_tech_debt_wizard.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_telemetry.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_templates.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_timeout.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_token_estimator.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_trajectory_analyzer.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_trust_building.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_trust_circuit_breaker.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_unified_memory.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_validation.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_wizard_outputs.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_wizard_site_comprehensive.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_workflow_base.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_workflow_commands.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_workflow_wizard_integration.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_xml_prompts.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/tests/test_xml_spec_generation.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/workflow_scaffolding/__init__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/workflow_scaffolding/__main__.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/workflow_scaffolding/cli.py +0 -0
- {empathy_framework-5.0.3 → empathy_framework-5.1.1}/workflow_scaffolding/generator.py +0 -0
|
@@ -7,6 +7,91 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [5.1.1] - 2026-01-29
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **Enhanced Natural Language Routing**: Improved discoverability of v5.1.0 features through conversational language
|
|
15
|
+
- Added intent detection patterns for authentication strategy commands
|
|
16
|
+
- Recognizes queries like: "setup authentication", "configure auth", "check auth status", "recommend auth"
|
|
17
|
+
- Added intent detection patterns for agent dashboard
|
|
18
|
+
- Recognizes queries like: "show dashboard", "monitor agents", "agent coordination"
|
|
19
|
+
- Enhanced test-coverage-boost patterns for batch generation
|
|
20
|
+
- Recognizes queries like: "batch test generation", "rapidly generate tests", "bulk tests"
|
|
21
|
+
- Added keyword mappings in CLI router for direct access:
|
|
22
|
+
- Auth commands: `auth-setup`, `auth-status`, `auth-recommend`, `auth-reset`, `auth`
|
|
23
|
+
- Dashboard commands: `dashboard`, `agent-dashboard`
|
|
24
|
+
- Batch test commands: `batch-tests`, `bulk-tests`
|
|
25
|
+
|
|
26
|
+
### Tests
|
|
27
|
+
|
|
28
|
+
- Added 12 comprehensive tests for natural language routing (all passing)
|
|
29
|
+
- Intent detection tests for all new patterns
|
|
30
|
+
- Keyword routing verification tests
|
|
31
|
+
- End-to-end natural language routing tests
|
|
32
|
+
- Pattern and mapping registration verification
|
|
33
|
+
|
|
34
|
+
### Documentation
|
|
35
|
+
|
|
36
|
+
- Users can now discover v5.1.0 features using natural language:
|
|
37
|
+
- "I need to setup authentication" → routes to auth CLI
|
|
38
|
+
- "show me the agent dashboard" → opens coordination dashboard
|
|
39
|
+
- "rapidly generate tests in batch" → batch test generation
|
|
40
|
+
|
|
41
|
+
## [5.1.0] - 2026-01-29
|
|
42
|
+
|
|
43
|
+
### Added
|
|
44
|
+
|
|
45
|
+
- **Authentication Strategy System**: Intelligent routing between Claude subscriptions and Anthropic API based on codebase/module size
|
|
46
|
+
- Automatically detects module size and recommends optimal authentication mode (subscription vs API)
|
|
47
|
+
- Cost optimization: Small/medium modules use subscription (free), large modules use API (1M context)
|
|
48
|
+
- Configurable thresholds based on subscription tier (Pro, Max, Enterprise)
|
|
49
|
+
- CLI commands for configuration management:
|
|
50
|
+
- `python -m empathy_os.models.auth_cli setup` - Interactive configuration wizard
|
|
51
|
+
- `python -m empathy_os.models.auth_cli status` - View current auth strategy (table or JSON)
|
|
52
|
+
- `python -m empathy_os.models.auth_cli recommend <file>` - Get auth recommendation for specific file
|
|
53
|
+
- `python -m empathy_os.models.auth_cli reset --confirm` - Clear configuration
|
|
54
|
+
- Integrated into 7 major workflows with consistent 4-step pattern:
|
|
55
|
+
- DocumentGenerationWorkflow
|
|
56
|
+
- TestGenerationWorkflow
|
|
57
|
+
- CodeReviewWorkflow
|
|
58
|
+
- BugPredictWorkflow
|
|
59
|
+
- SecurityAuditWorkflow
|
|
60
|
+
- PerformanceAuditWorkflow
|
|
61
|
+
- ReleasePreparationWorkflow
|
|
62
|
+
- Non-breaking: Enabled by default with graceful degradation
|
|
63
|
+
- Auth mode tracking: All workflows report `auth_mode_used` in output for telemetry
|
|
64
|
+
- Comprehensive documentation: 3 guides (950+ lines total)
|
|
65
|
+
- 7 integration tests created and passing
|
|
66
|
+
|
|
67
|
+
### Fixed
|
|
68
|
+
|
|
69
|
+
- **Dashboard Demo Script**: Updated `dashboard_demo.py` to use correct HeartbeatCoordinator API
|
|
70
|
+
- Changed from `HeartbeatCoordinator(agent_id=...)` to `coordinator.start_heartbeat(agent_id=...)`
|
|
71
|
+
- Changed from `coordinator.report()` to `coordinator.beat()`
|
|
72
|
+
- Fixed compatibility with current telemetry API
|
|
73
|
+
|
|
74
|
+
- **SecurityAuditWorkflow**: Fixed LOC calculation and file scanning issues
|
|
75
|
+
- Fixed `count_lines_of_code()` to handle directories recursively
|
|
76
|
+
- Fixed file scanning to handle both single files and directories
|
|
77
|
+
- Fixed data propagation in `_remediate` stage
|
|
78
|
+
|
|
79
|
+
- **CodeReviewWorkflow**: Fixed auth mode tracking in scan stage
|
|
80
|
+
- Added `auth_mode_used` to scan stage output for cases where architect_review is skipped
|
|
81
|
+
|
|
82
|
+
### Documentation
|
|
83
|
+
|
|
84
|
+
- Added `docs/AUTH_STRATEGY_GUIDE.md` - Complete user guide with CLI commands (457 lines)
|
|
85
|
+
- Added `docs/AUTH_CLI_IMPLEMENTATION.md` - CLI implementation details (286 lines)
|
|
86
|
+
- Added `docs/AUTH_WORKFLOW_INTEGRATIONS.md` - Integration guide for all 7 workflows (430+ lines)
|
|
87
|
+
- Updated all workflow documentation with auth strategy usage examples
|
|
88
|
+
|
|
89
|
+
### Tests
|
|
90
|
+
|
|
91
|
+
- Added 7 integration tests for auth strategy in workflows (all passing)
|
|
92
|
+
- All existing tests continue to pass (127+ tests for DocumentGenerationWorkflow alone)
|
|
93
|
+
- Zero breaking changes - full backward compatibility maintained
|
|
94
|
+
|
|
10
95
|
## [5.0.2] - 2026-01-28
|
|
11
96
|
|
|
12
97
|
### Added
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2025 Deep Study AI, LLC
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
# Empathy Framework is Now Fully Open Source (Apache 2.0)
|
|
2
|
+
|
|
3
|
+
**Date:** January 28, 2026
|
|
4
|
+
|
|
5
|
+
We're excited to announce that **Empathy Framework is now fully open source** under the Apache License 2.0!
|
|
6
|
+
|
|
7
|
+
## What Changed?
|
|
8
|
+
|
|
9
|
+
- **Before:** Fair Source License 0.9 (free for small teams, paid for larger organizations)
|
|
10
|
+
- **After:** Apache License 2.0 (free and open source for everyone)
|
|
11
|
+
|
|
12
|
+
## Why Apache 2.0?
|
|
13
|
+
|
|
14
|
+
Empathy Framework helps developers save 70-85% on LLM costs through:
|
|
15
|
+
- Progressive tier escalation (cheap models for simple tasks)
|
|
16
|
+
- Intelligent caching (85% hit rates)
|
|
17
|
+
- Batch processing (50% cost reduction)
|
|
18
|
+
- Multi-agent orchestration
|
|
19
|
+
|
|
20
|
+
**But we realized the license was limiting adoption**, the restrictions made developers hesitant to try the framework.
|
|
21
|
+
|
|
22
|
+
**Open source first. Revenue later.** The path to sustainable business is:
|
|
23
|
+
1. **Adoption** - Get the framework into developers' hands
|
|
24
|
+
2. **Community** - Build contributors and advocates
|
|
25
|
+
3. **Value Creation** - Prove the technology works at scale
|
|
26
|
+
4. **Monetization** - Offer hosted services, enterprise features, support
|
|
27
|
+
|
|
28
|
+
We were trying to skip to step 4. That doesn't work.
|
|
29
|
+
|
|
30
|
+
## What This Means for You
|
|
31
|
+
|
|
32
|
+
### If you're a developer:
|
|
33
|
+
- ✅ **Use it freely** - Personal projects, commercial products, anything
|
|
34
|
+
- ✅ **Fork and modify** - Build on top of it however you want
|
|
35
|
+
- ✅ **Contribute** - PRs welcome, no CLA required
|
|
36
|
+
- ✅ **No restrictions** - No employee limits, no usage limits
|
|
37
|
+
|
|
38
|
+
### If you're a company:
|
|
39
|
+
- ✅ **No commercial license needed** - Use in production freely
|
|
40
|
+
- ✅ **Enterprise-friendly** - Apache 2.0 is approved by most legal teams
|
|
41
|
+
- ✅ **Patent protection** - Apache 2.0 includes patent grants
|
|
42
|
+
- ✅ **Clear terms** - Well-understood OSI-approved license
|
|
43
|
+
|
|
44
|
+
## What Hasn't Changed
|
|
45
|
+
|
|
46
|
+
- **Same great features** - All the cost optimization, caching, orchestration
|
|
47
|
+
- **Same innovation** - We're still building the best AI framework
|
|
48
|
+
- **Same commitment** - Active development, responsive maintainers
|
|
49
|
+
- **Same quality** - 7,168 tests passing (99.9%)
|
|
50
|
+
|
|
51
|
+
## Our Commitment Going Forward
|
|
52
|
+
|
|
53
|
+
We're doubling down on making Empathy Framework the best AI orchestration tool:
|
|
54
|
+
|
|
55
|
+
1. **Claude-native focus** - Leveraging prompt caching, 200K context, extended thinking
|
|
56
|
+
2. **Performance** - 18x faster than v4.8 (already shipped in v4.9)
|
|
57
|
+
3. **Cost optimization** - Batch API, caching, adaptive routing (shipped in v5.0.2)
|
|
58
|
+
4. **Developer experience** - Better docs, more examples, easier onboarding
|
|
59
|
+
|
|
60
|
+
## How You Can Help
|
|
61
|
+
|
|
62
|
+
Now that we're fully open source, we need **adoption and feedback**:
|
|
63
|
+
|
|
64
|
+
- ⭐ **Star the repo** - https://github.com/Smart-AI-Memory/empathy-framework
|
|
65
|
+
- 🐛 **Report bugs** - Help us improve quality
|
|
66
|
+
- 💡 **Share ideas** - Feature requests welcome
|
|
67
|
+
- 📝 **Write tutorials** - Show others how to use it
|
|
68
|
+
- 🤝 **Contribute code** - PRs appreciated
|
|
69
|
+
|
|
70
|
+
## Future Monetization
|
|
71
|
+
|
|
72
|
+
Going open source doesn't mean we won't build a business. We plan to offer:
|
|
73
|
+
|
|
74
|
+
- **Empathy Cloud** - Hosted/managed version (like Vercel for Next.js)
|
|
75
|
+
- **Enterprise Edition** - Advanced features (SSO, audit logs, team management)
|
|
76
|
+
- **Support Contracts** - SLAs, dedicated help, custom integrations
|
|
77
|
+
- **Consulting** - Help teams implement AI orchestration
|
|
78
|
+
|
|
79
|
+
But **first, we need adoption**. And that means being fully open source.
|
|
80
|
+
|
|
81
|
+
## Get Started
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
pip install empathy-framework[developer]
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
Read the docs: https://smartaimemory.com/framework-docs/
|
|
88
|
+
|
|
89
|
+
Join the community: https://github.com/Smart-AI-Memory/empathy-framework/discussions
|
|
90
|
+
|
|
91
|
+
## Thank You
|
|
92
|
+
|
|
93
|
+
To everyone who believed in Empathy Framework under Fair Source - thank you. This change makes the project accessible to everyone, not just a select few.
|
|
94
|
+
|
|
95
|
+
Let's build the future of AI orchestration together.
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
**Questions?** Open an issue or discussion on GitHub.
|
|
100
|
+
|
|
101
|
+
**Built by [Deep Study AI, LLC](https://smartaimemory.com)** · Licensed under [Apache 2.0](LICENSE)
|