Metadata-Version: 2.4
Name: imbi-automations
Version: 1.0.0a3
Summary: CLI tool for executing automated workflows across Imbi projects with AI-powered transformations and GitHub PR integration.
Project-URL: Homepage, https://AWeber-Imbi.github.io/imbi-automations/
Project-URL: Repository, https://github.com/AWeber-Imbi/imbi-automations
Project-URL: Bug Tracker, https://github.com/AWeber-Imbi/imbi-automations/issues
Author-email: "Gavin M. Roy" <gavinr@aweber.com>
License: BSD-3-Clause
License-File: LICENSE
Keywords: claude,cli,github,imbi,llm
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Database
Classifier: Topic :: System :: Systems Administration
Classifier: Typing :: Typed
Requires-Python: >=3.12
Requires-Dist: anthropic[bedrock]
Requires-Dist: async-lru
Requires-Dist: claude-agent-sdk
Requires-Dist: colorlog
Requires-Dist: httpx
Requires-Dist: jinja2
Requires-Dist: msgpack>=1.0.0
Requires-Dist: pydantic
Requires-Dist: rich
Requires-Dist: semver
Requires-Dist: truststore
Requires-Dist: yarl
Provides-Extra: dev
Requires-Dist: build; extra == 'dev'
Requires-Dist: coverage[toml]; extra == 'dev'
Requires-Dist: pre-commit; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: pytest-cov; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Provides-Extra: docs
Requires-Dist: black; extra == 'docs'
Requires-Dist: griffe-pydantic; extra == 'docs'
Requires-Dist: mkdocs-autorefs; extra == 'docs'
Requires-Dist: mkdocs-material<10,>9.5; extra == 'docs'
Requires-Dist: mkdocs<2,>=1.5; extra == 'docs'
Requires-Dist: mkdocstrings-python-xref<2,>=1.6; extra == 'docs'
Requires-Dist: mkdocstrings[python]<0.31,>=0.26; extra == 'docs'
Description-Content-Type: text/markdown

# Imbi Automations CLI

CLI tool for executing automated workflows across Imbi projects with AI-powered transformations and GitHub PR integration.

## Overview

Imbi Automations is a comprehensive CLI framework that enables bulk automation across software project repositories with deep integration to the Imbi project management system. The tool supports multiple workflow types with advanced filtering, conditional execution, and AI-powered transformations.

## Installation

### From PyPI

```bash
pip install imbi-automations
```

### Development Setup

```bash
git clone https://github.com/AWeber-Imbi/imbi-automations.git
cd imbi-automations
pip install -e .[dev]
pre-commit install
```

## Quick Start

```bash
# Run workflows
imbi-automations config.toml workflows/workflow-name --all-projects

# Resume from a specific project
imbi-automations config.toml workflows/workflow-name --all-projects --start-from-project my-project-slug
```

## Key Features

- **GitHub Integration**: GitHub API integration with comprehensive repository operations
- **Workflow Engine**: Action-based processing with conditional execution
- **AI Integration**: Claude Code SDK for intelligent transformations
- **Batch Processing**: Concurrent processing with resumption capabilities
- **Template System**: Jinja2-based file generation with full project context
- **Advanced Filtering**: Target specific project subsets with multiple criteria

## Action Types

- **Callable Actions**: Direct method calls on client instances
- **Claude Code**: Comprehensive AI-powered code transformations
- **Docker Operations**: Container-based file extraction and manipulation
- **Git Operations**: Version control operations and branch management
- **File Actions**: Copy, move, delete, and regex replacement operations
- **Shell Commands**: Execute arbitrary commands with template variables
- **Utility Actions**: Helper operations for common workflow tasks
- **Template System**: Generate files from Jinja2 templates

## Documentation

See [AGENTS.md](AGENTS.md) for comprehensive architecture documentation, development commands, and implementation details.
