Scheduled agent execution (WP-0006). release-check passes: version consistency, lint, tests, docs, packaged-agent parity all green. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
33 lines
1,010 B
Python
33 lines
1,010 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.3.0"
|
|
__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
|
|
from .metrics import MetricsStore
|
|
|
|
__all__ = [
|
|
"Agent",
|
|
"AgentConfig",
|
|
"OptimizationLoop",
|
|
"PerformanceMetrics",
|
|
"AgentRegistry",
|
|
"AgentDefinition",
|
|
"AgentCategory",
|
|
"AgentInstaller",
|
|
"ProjectInitializer",
|
|
"InstallationConfig",
|
|
"MetricsStore",
|
|
]
|