Files
kaizen-agentic/README.md
tegwick 38965c1d4a Implement hybrid agent distribution system
Complete implementation of the agent distribution framework including:

CORE INFRASTRUCTURE:
- AgentRegistry: Agent discovery, categorization, and dependency management
- AgentInstaller: Agent installation, updates, and removal with safety measures
- ProjectInitializer: Template-based project initialization with agent integration
- CLI Tool: Comprehensive kaizen-agentic command-line interface

DISTRIBUTION FEATURES:
- Python package distribution with console script entry point
- Agent categorization (project-management, development-process, code-quality, etc.)
- Project templates (python-basic, python-web, python-cli, python-data, comprehensive)
- Dependency resolution and validation
- Idempotent operations with backup and rollback support

CLI COMMANDS:
- kaizen-agentic init: Initialize new projects with agents
- kaizen-agentic install/update/remove: Manage agents in existing projects
- kaizen-agentic list/status/validate: Discovery and maintenance
- kaizen-agentic templates: Project template management

INTEGRATION & DOCUMENTATION:
- Makefile targets for agent management (list-agents, update-agents, etc.)
- Automatic Claude Code configuration updates (CLAUDE.md)
- Comprehensive documentation (GETTING_STARTED, AGENT_DISTRIBUTION, CLI_CHEAT_SHEET)
- Multi-language build system integration examples
- Complete test coverage for all components

PACKAGE STRUCTURE:
- Console script: kaizen-agentic command available globally
- Package data: All agents included for distribution
- Dependencies: click, pyyaml for CLI and parsing
- Testing: Comprehensive test suite for registry and installer

This enables sharing specialized AI agents across projects with easy installation,
updates, and management through both CLI and integrated Makefile targets.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-19 02:31:15 +02:00

2.8 KiB

Kaizen Agentic

AI agent development framework embracing continuous improvement through specialized agents and comprehensive development workflows.

This project embraces the Japanese concept of "kaizen" (continuous improvement) applied to AI agent development. Every coding subagent becomes part of an optimization loop where performance is measured, patterns are analyzed, and specifications are refined over time.

Quick Start

Install the Package

pip install kaizen-agentic

Initialize a New Project

# Create a new project with AI agents
kaizen-agentic init my-project --template python-web
cd my-project

# Set up development environment
make setup-complete

# Start coding with agent assistance!
make help  # See all available commands

Add Agents to Existing Project

# Navigate to your project
cd your-existing-project

# Install relevant agents
kaizen-agentic install todo-keeper changelog-keeper tdd-workflow

# Check what was installed
kaizen-agentic status

Features

  • 16+ Specialized Agents: Project management, testing, code quality, documentation
  • CLI Tool: Easy agent installation and management (kaizen-agentic)
  • Project Templates: Pre-configured setups for different project types
  • Claude Code Integration: Seamless integration with Claude Code workflows
  • Comprehensive Testing: Full test coverage with multiple testing strategies
  • Standards Compliance: Follows PythonVibes and industry best practices

Available Agents

Project Management

  • todo-keeper: Manages TODO.md files following Keep a Todofile format
  • changelog-keeper: Maintains CHANGELOG.md files following Keep a Changelog format
  • contributing-keeper: Creates and updates CONTRIBUTING.md files
  • project-assistant: General project management and coordination

Development Process

  • tdd-workflow: Test-driven development workflow guidance
  • requirements-engineering: Requirements analysis and documentation
  • test-maintenance: Test suite maintenance and optimization

Code Quality

  • code-refactoring: Code improvement and refactoring guidance
  • agent-optimization: Agent definition optimization and improvement
  • datamodel-optimization: Data model design and optimization

Infrastructure

  • setup-repository: Repository initialization and standards compliance
  • claude-documentation: Claude Code configuration and documentation
  • testing-efficiency: Testing infrastructure optimization

View complete agent list

Project Templates

# Available templates
kaizen-agentic templates

# python-basic: Basic Python project setup
# python-web: Web application development
# python-cli: Command-line tool development
# python-data: Data science and analysis
# comprehensive: All available agents