empathy-framework 4.9.0__py3-none-any.whl → 4.9.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: empathy-framework
3
- Version: 4.9.0
3
+ Version: 4.9.1
4
4
  Summary: AI collaboration framework with real LLM agent execution, AskUserQuestion tool integration, Socratic agent generation, progressive tier escalation (70-85% cost savings), meta-orchestration, dynamic agent composition (6 patterns), intelligent caching (85% hit rate), semantic workflow discovery, visual workflow editor, MCP integration for Claude Code, and multi-agent orchestration.
5
5
  Author-email: Patrick Roebuck <admin@smartaimemory.com>
6
6
  Maintainer-email: Smart-AI-Memory <admin@smartaimemory.com>
@@ -362,11 +362,11 @@ Dynamic: license-file
362
362
 
363
363
  Run code review, debugging, testing, and release workflows from your terminal or Claude Code. Smart tier routing saves 34-86% on LLM costs.
364
364
 
365
- [![PyPI](https://img.shields.io/pypi/v/empathy-framework)](https://pypi.org/project/empathy-framework/)
366
- [![Tests](https://img.shields.io/badge/tests-11%2C000%2B%20passing-brightgreen)](https://github.com/Smart-AI-Memory/empathy-framework/actions)
367
- [![Coverage](https://img.shields.io/badge/coverage-68%25-yellow)](https://github.com/Smart-AI-Memory/empathy-framework)
365
+ [![PyPI](https://img.shields.io/pypi/v/empathy-framework?color=blue)](https://pypi.org/project/empathy-framework/)
366
+ [![Tests](https://img.shields.io/badge/tests-7%2C168%20passing%20(99.9%25)-brightgreen)](https://github.com/Smart-AI-Memory/empathy-framework/actions)
368
367
  [![Python](https://img.shields.io/badge/python-3.10+-blue)](https://www.python.org)
369
368
  [![License](https://img.shields.io/badge/license-Fair%20Source%200.9-blue)](LICENSE)
369
+ [![Performance](https://img.shields.io/badge/performance-18x%20faster-success)](https://github.com/Smart-AI-Memory/empathy-framework/blob/main/CHANGELOG.md)
370
370
 
371
371
  ```bash
372
372
  pip install empathy-framework[developer]
@@ -392,20 +392,37 @@ pip install empathy-framework[developer]
392
392
 
393
393
  ---
394
394
 
395
- ## What's New in v4.8.0
395
+ ## What's New in v4.9.0
396
396
 
397
- **🚀 Scanner Performance Optimizations** - **3.65x faster** project scanning with parallel processing and incremental updates:
397
+ **⚡ 18x Faster Performance** - Massive performance gains through Phase 2 optimizations:
398
398
 
399
- - **Parallel Processing:** Multi-core scanning enabled by default (2x faster)
400
- - **Incremental Scanning:** Git diff-based updates (10x faster for typical changes)
401
- - **Optional Dependencies:** Skip dependency analysis for 27% speedup
399
+ - **Redis Two-Tier Caching:** 2x faster memory operations (37,000x for cached keys)
400
+ - **Generator Expressions:** 99.9% memory reduction across 27 optimizations
401
+ - **Parallel Scanning:** Multi-core processing enabled by default (2-4x faster)
402
+ - **Incremental Scanning:** Git diff-based updates (10x faster)
403
+
404
+ **🧭 Natural Language Workflows** - Use plain English instead of workflow names:
405
+
406
+ ```bash
407
+ /workflows "find security vulnerabilities" # → security-audit
408
+ /workflows "check code performance" # → perf-audit
409
+ /workflows "predict bugs" # → bug-predict
410
+ /plan "review my code" # → code-review
411
+ ```
402
412
 
403
413
  **📊 Real-World Performance:**
404
414
 
405
- - Full scan: 3,472 files in 1.8s (was 3.6s)
406
- - Incremental: 100 changed files in 0.3s (was 1.0s)
415
+ - Combined workflow: 3.59s 0.2s (**18x faster**)
416
+ - Full scan: 3,472 files in 0.98s (was 3.59s)
417
+ - Redis cached operations: 37ms → 0.001ms
418
+
419
+ **🎯 Improved Navigation:**
420
+
421
+ - Split `/workflow` into `/workflows` (automated analysis) and `/plan` (planning/review)
422
+ - Clearer hub organization with better categorization
423
+ - Natural language routing matches intent to workflow
407
424
 
408
- [See performance guide](docs/SCANNER_OPTIMIZATIONS.md) | [Examples](examples/scanner_usage.py)
425
+ [See CHANGELOG.md](CHANGELOG.md) | [Performance Docs](docs/REDIS_OPTIMIZATION_SUMMARY.md)
409
426
 
410
427
  ---
411
428
 
@@ -446,8 +463,14 @@ python -m empathy_os.models.cli provider --set anthropic
446
463
  ```bash
447
464
  /dev # Developer tools (debug, commit, PR, review)
448
465
  /testing # Run tests, coverage, benchmarks
466
+ /workflows # Automated analysis (security, bugs, perf)
467
+ /plan # Planning, TDD, code review
449
468
  /docs # Documentation generation
450
469
  /release # Release preparation
470
+
471
+ # Natural language support:
472
+ /workflows "find security issues"
473
+ /plan "review my code"
451
474
  ```
452
475
 
453
476
  **CLI:**
@@ -476,19 +499,35 @@ async with EmpathyOS() as empathy:
476
499
 
477
500
  Workflows are organized into hubs for easy discovery:
478
501
 
479
- | Hub | Command | Description |
480
- | ----------------- | ------------ | -------------------------------------------- |
481
- | **Developer** | `/dev` | Debug, commit, PR, code review, quality |
482
- | **Testing** | `/testing` | Run tests, coverage analysis, benchmarks |
483
- | **Documentation** | `/docs` | Generate and manage documentation |
484
- | **Release** | `/release` | Release prep, security scan, publishing |
485
- | **Workflow** | `/workflow` | Planning, TDD, refactoring workflows |
486
- | **Utilities** | `/utilities` | Project init, dependencies, profiling |
487
- | **Learning** | `/learning` | Pattern learning and session evaluation |
488
- | **Context** | `/context` | State management and memory |
489
- | **Agent** | `/agent` | Create and manage custom agents |
490
-
491
- **Example usage:**
502
+ | Hub | Command | Description |
503
+ | ----------------- | ------------- | -------------------------------------------- |
504
+ | **Developer** | `/dev` | Debug, commit, PR, code review, quality |
505
+ | **Testing** | `/testing` | Run tests, coverage analysis, benchmarks |
506
+ | **Documentation** | `/docs` | Generate and manage documentation |
507
+ | **Release** | `/release` | Release prep, security scan, publishing |
508
+ | **Workflows** | `/workflows` | Automated analysis (security, bugs, perf) |
509
+ | **Plan** | `/plan` | Planning, TDD, code review, refactoring |
510
+ | **Utilities** | `/utilities` | Project init, dependencies, profiling |
511
+ | **Learning** | `/learning` | Pattern learning and session evaluation |
512
+ | **Context** | `/context` | State management and memory |
513
+ | **Agent** | `/agent` | Create and manage custom agents |
514
+
515
+ **Natural Language Support:**
516
+
517
+ ```bash
518
+ # Use plain English - intelligent routing matches your intent
519
+ /workflows "find security vulnerabilities" # → security-audit
520
+ /workflows "check code performance" # → perf-audit
521
+ /workflows "predict bugs" # → bug-predict
522
+ /plan "review my code" # → code-review
523
+ /plan "help me plan this feature" # → planning
524
+
525
+ # Or use traditional workflow names
526
+ /workflows security-audit
527
+ /plan code-review
528
+ ```
529
+
530
+ **Interactive menus:**
492
531
 
493
532
  ```bash
494
533
  /dev # Show interactive menu
@@ -1,4 +1,4 @@
1
- empathy_framework-4.9.0.dist-info/licenses/LICENSE,sha256=IJ9eeI5KSrD5P7alsn7sI_6_1bDihxBA5S4Sen4jf2k,4937
1
+ empathy_framework-4.9.1.dist-info/licenses/LICENSE,sha256=IJ9eeI5KSrD5P7alsn7sI_6_1bDihxBA5S4Sen4jf2k,4937
2
2
  empathy_healthcare_plugin/__init__.py,sha256=4NioL1_86UXzkd-QNkQZUSZ8rKTQGSP0TC9VXP32kQs,295
3
3
  empathy_healthcare_plugin/monitors/__init__.py,sha256=Udp8qfZR504QAq5_eQjvtIaE7v06Yguc7nuF40KllQc,196
4
4
  empathy_healthcare_plugin/monitors/clinical_protocol_monitor.py,sha256=MWE5t8tW9HWZn_SNo-inx8-0nhdTNGhbcB8ZeDWyXa0,11648
@@ -94,7 +94,7 @@ empathy_llm_toolkit/security/secure_memdocs.py,sha256=x6won-u3tiBkv5ZPVRpSJKTs1m
94
94
  empathy_llm_toolkit/security/secure_memdocs_example.py,sha256=4UwbaM5X-c93p4_3pz6LKaeNYzfxptzbsYY_-ZuG0A0,8359
95
95
  empathy_llm_toolkit/utils/__init__.py,sha256=b2Juy_nuMJ7Ax9tck725V7i3s5shaMSfqZZbiJ2-rOc,187
96
96
  empathy_llm_toolkit/utils/tokens.py,sha256=0HwENtc1ud543NzFNeDg3ghH8tGQmNMVUw-LZ93U1YQ,7187
97
- empathy_os/__init__.py,sha256=CWBbmb2sK9MvWJURtIUW33VCeA9tIwY5R7pW4Y7Ldsg,12046
97
+ empathy_os/__init__.py,sha256=11YkfyrLbSt1-bJ3nBZREqQO9RJAqTRuxJWdPcI8MAI,12061
98
98
  empathy_os/agent_monitoring.py,sha256=s4seLC_J4AtQ3PYWrRPO8YHM-Fbm0Q36kPEdlTHf2HI,13375
99
99
  empathy_os/cache_monitor.py,sha256=lcBqODhYY9iPaH35PWkOSgyMavdvXneHv9F57dPmjnc,11190
100
100
  empathy_os/cache_stats.py,sha256=rWJPBNFEfhuLwKYKy89D_Qa9GPIyVso2jdCKp_cdJhI,10232
@@ -382,8 +382,8 @@ workflow_scaffolding/__init__.py,sha256=UpX5vjjjPjIaAKyIV1D4GxJzLUZy5DzdzgSkePYM
382
382
  workflow_scaffolding/__main__.py,sha256=0qspuNoadTDqyskXTlT8Sahqau-XIxN35NHTSGVW6z4,236
383
383
  workflow_scaffolding/cli.py,sha256=yLgvMsPbqI-LHt7UKXMuj-Dc0-44EqWiChldysrw1YQ,6763
384
384
  workflow_scaffolding/generator.py,sha256=9eEmm324kVzf8BCtXEML090pyke06o0U7aGATzZIaPM,8869
385
- empathy_framework-4.9.0.dist-info/METADATA,sha256=A42trSFKu7TJLqPhKxJygG4T7JfIC1iUt2WASQd4D9Q,29776
386
- empathy_framework-4.9.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
387
- empathy_framework-4.9.0.dist-info/entry_points.txt,sha256=Ox9iu_2Fx66x5fyZ5L1NJrrFFekD-BZJIudHNzKwYPs,1565
388
- empathy_framework-4.9.0.dist-info/top_level.txt,sha256=YJNBYFE2u5f2XnveFqYO-rZDcHR_aMOHAiIIf9tl72c,102
389
- empathy_framework-4.9.0.dist-info/RECORD,,
385
+ empathy_framework-4.9.1.dist-info/METADATA,sha256=pbpZNiI6BCLm6VBIC7RzE4xEIUGn8taSyjgclxCXG7w,31268
386
+ empathy_framework-4.9.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
387
+ empathy_framework-4.9.1.dist-info/entry_points.txt,sha256=Ox9iu_2Fx66x5fyZ5L1NJrrFFekD-BZJIudHNzKwYPs,1565
388
+ empathy_framework-4.9.1.dist-info/top_level.txt,sha256=YJNBYFE2u5f2XnveFqYO-rZDcHR_aMOHAiIIf9tl72c,102
389
+ empathy_framework-4.9.1.dist-info/RECORD,,
empathy_os/__init__.py CHANGED
@@ -55,9 +55,9 @@ Copyright 2025 Smart AI Memory, LLC
55
55
  Licensed under Fair Source 0.9
56
56
  """
57
57
 
58
- __version__ = "4.6.5"
58
+ __version__ = "4.9.1"
59
59
  __author__ = "Patrick Roebuck"
60
- __email__ = "hello@deepstudy.ai"
60
+ __email__ = "patrick.roebuck@smartaimemory.com"
61
61
 
62
62
  # =============================================================================
63
63
  # LAZY IMPORTS - Deferred loading for faster startup