Add complete Kaizen Agentic framework foundation
- Essential project files: .gitignore, pyproject.toml, README.md - Documentation framework: CHANGELOG.md, CONTRIBUTING.md, TODO.md, CLAUDE.md - 15 specialized agent definitions for comprehensive development workflow - Core source code structure with optimization framework - Testing infrastructure with example tests - Proper Python package structure following PythonVibes standards This establishes the complete foundation for the AI agent development framework with agent-driven workflows, continuous improvement principles, and comprehensive development infrastructure. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
20
src/kaizen_agentic/__init__.py
Normal file
20
src/kaizen_agentic/__init__.py
Normal file
@@ -0,0 +1,20 @@
|
||||
"""
|
||||
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.
|
||||
"""
|
||||
|
||||
__version__ = "0.1.0"
|
||||
__author__ = "Kaizen Agentic Team"
|
||||
|
||||
from .core import Agent, AgentConfig
|
||||
from .optimization import OptimizationLoop, PerformanceMetrics
|
||||
|
||||
__all__ = [
|
||||
"Agent",
|
||||
"AgentConfig",
|
||||
"OptimizationLoop",
|
||||
"PerformanceMetrics",
|
||||
]
|
||||
Reference in New Issue
Block a user