🔧 Extended Click library workaround to cover update command 📚 Updated CLAUDE.md with all 17 agents organized by category 🧪 Added comprehensive test coverage for update command ✅ All 11 CLI error handling tests pass Major improvements: - Both install and update commands now provide clean professional output - Complete agent ecosystem documentation (17 agents vs previous 6) - Unified error handling approach across affected CLI commands - Enhanced test suite covering all CLI error scenarios User experience: Clean output for kaizen-agentic install/update commands Technical: Extended safe_cli_wrapper to handle ["install", "update"] commands 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
31 lines
956 B
Python
31 lines
956 B
Python
"""
|
|
Kaizen Agentic - AI agent development framework embracing continuous improvement.
|
|
|
|
This package provides tools and infrastructure for developing AI agents that
|
|
follow the kaizen philosophy of continuous improvement through measurement,
|
|
analysis, and refinement.
|
|
|
|
It also includes a comprehensive agent distribution system for sharing
|
|
specialized agents across projects via CLI tools and package management.
|
|
"""
|
|
|
|
__version__ = "1.0.2"
|
|
__author__ = "Kaizen Agentic Team"
|
|
|
|
from .core import Agent, AgentConfig
|
|
from .optimization import OptimizationLoop, PerformanceMetrics
|
|
from .registry import AgentRegistry, AgentDefinition, AgentCategory
|
|
from .installer import AgentInstaller, ProjectInitializer, InstallationConfig
|
|
|
|
__all__ = [
|
|
"Agent",
|
|
"AgentConfig",
|
|
"OptimizationLoop",
|
|
"PerformanceMetrics",
|
|
"AgentRegistry",
|
|
"AgentDefinition",
|
|
"AgentCategory",
|
|
"AgentInstaller",
|
|
"ProjectInitializer",
|
|
"InstallationConfig",
|
|
]
|