Metadata-Version: 2.4
Name: aicippy
Version: 1.6.15
Summary: Enterprise-grade multi-agent CLI system powered by AWS Bedrock
Project-URL: Homepage, https://aicippy.com
Project-URL: Documentation, https://docs.aicippy.com
Project-URL: Repository, https://github.com/aivibe/aicippy
Project-URL: Issues, https://github.com/aivibe/aicippy/issues
Author-email: Aravind Jayamohan <aravind@aivibe.in>
Maintainer-email: AiVibe Software Services Pvt Ltd <support@aivibe.in>
License: Proprietary
License-File: LICENSE
Keywords: ai,aws,bedrock,cli,enterprise,multi-agent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Shells
Classifier: Typing :: Typed
Requires-Python: >=3.11
Requires-Dist: aiofiles==25.1.0
Requires-Dist: anyio==4.12.1
Requires-Dist: asyncpg==0.31.0
Requires-Dist: beautifulsoup4==4.14.3
Requires-Dist: boto3==1.42.54
Requires-Dist: botocore==1.42.54
Requires-Dist: feedparser==6.0.12
Requires-Dist: httpx==0.28.1
Requires-Dist: keyring==25.7.0
Requires-Dist: lxml==6.0.2
Requires-Dist: markdown==3.10.2
Requires-Dist: orjson==3.11.7
Requires-Dist: prompt-toolkit==3.0.52
Requires-Dist: pydantic-settings==2.13.1
Requires-Dist: pydantic==2.12.5
Requires-Dist: python-jose[cryptography]==3.5.0
Requires-Dist: rich==14.3.3
Requires-Dist: structlog==25.5.0
Requires-Dist: tenacity==9.1.4
Requires-Dist: typer==0.24.0
Requires-Dist: websockets==16.0
Provides-Extra: cdk
Requires-Dist: aws-cdk-lib==2.239.0; extra == 'cdk'
Requires-Dist: constructs==10.5.1; extra == 'cdk'
Provides-Extra: dev
Requires-Dist: black==26.1.0; extra == 'dev'
Requires-Dist: boto3-stubs[essential]==1.42.54; extra == 'dev'
Requires-Dist: moto[all]==5.1.21; extra == 'dev'
Requires-Dist: mypy==1.19.1; extra == 'dev'
Requires-Dist: pre-commit==4.5.1; extra == 'dev'
Requires-Dist: pytest-asyncio==1.3.0; extra == 'dev'
Requires-Dist: pytest-cov==7.0.0; extra == 'dev'
Requires-Dist: pytest-mock==3.15.1; extra == 'dev'
Requires-Dist: pytest==9.0.2; extra == 'dev'
Requires-Dist: ruff==0.15.2; extra == 'dev'
Description-Content-Type: text/markdown

# AiCippy

Enterprise-grade multi-agent CLI system powered by AWS Bedrock.

**Copyright (c) 2024-2026 AiVibe Software Services Pvt Ltd. All rights reserved.**

ISO 27001:2022 Certified | NVIDIA Inception Partner | AWS Activate | Microsoft for Startups

## Overview

AiCippy is a production-grade, multi-agent command-line system that orchestrates up to 10 parallel AI agents to complete complex tasks. Built on AWS Bedrock Agents, it provides:

- Multi-agent orchestration with parallel execution
- Real-time WebSocket communication
- MCP-style tool connectors for AWS, GitHub, Firebase, and more
- Knowledge Base integration with automated feed ingestion
- Rich terminal UI with live progress and agent status

## Installation

```bash
pip install aicippy
```

## Quick Start

```bash
# Authenticate
aicippy login

# Initialize in a project
aicippy init

# Interactive mode
aicippy

# Single query
aicippy chat "Explain this codebase"

# Multi-agent task
aicippy run "Deploy infrastructure to AWS" --agents 5
```

## Commands

| Command | Description |
|---------|-------------|
| `aicippy` | Start interactive session |
| `aicippy login` | Authenticate with Cognito |
| `aicippy logout` | Clear credentials |
| `aicippy init` | Initialize project context |
| `aicippy chat <msg>` | Single query mode |
| `aicippy run <task>` | Execute with agents |
| `aicippy config` | Show/edit configuration |
| `aicippy status` | Agent status |
| `aicippy usage` | Token usage |
| `aicippy upgrade` | Self-update |

## Interactive Commands

| Command | Description |
|---------|-------------|
| `/help` | Show all commands |
| `/model <name>` | Switch model (opus/sonnet/llama) |
| `/mode <name>` | Change mode (agent/edit/research/code) |
| `/agents spawn <n>` | Spawn parallel agents (1-10) |
| `/agents list` | List active agents |
| `/agents stop` | Stop agents |
| `/kb sync` | Sync to Knowledge Base |
| `/tools list` | List available tools |
| `/usage` | Token usage |
| `/quit` | Exit |

## Architecture

```
                     +----------------+
                     |   AiCippy CLI  |
                     +--------+-------+
                              |
                     +--------v--------+
                     | Agent Orchestrator |
                     +--------+---------+
                              |
         +--------------------+--------------------+
         |         |          |          |         |
    +----v----+ +--v---+ +----v---+ +----v----+ +--v----+
    |Agent-1  | |Agent-2| |Agent-3 | |Agent-4  | |Agent-N|
    |INFRA    | |BEDROCK| |API-GW  | |CLI-CORE | |...    |
    +---------+ +-------+ +--------+ +---------+ +-------+
         |         |          |          |         |
    +----v---------v----------v----------v---------v----+
    |              AWS Bedrock Runtime                  |
    +--------------------------------------------------+
```

## Supported Models

- **Claude Opus 4.5** (default) - Most capable model
- **Claude Sonnet 4.5** - Balanced performance
- **Llama 4 Maverick** - Open source alternative

## MCP Tool Connectors

- AWS CLI (`aws`)
- Google Cloud CLI (`gcloud`)
- GitHub CLI (`gh`)
- Firebase CLI (`firebase`)
- Figma API
- Google Drive API
- Gmail API
- Razorpay API
- PayPal API
- Stripe CLI
- Shell commands (sandboxed)

## Configuration

Environment variables (or `.env` file):

```bash
AICIPPY_AWS_REGION=us-east-1
AICIPPY_DEFAULT_MODEL=opus
AICIPPY_MAX_PARALLEL_AGENTS=10
AICIPPY_LOG_LEVEL=INFO
```

Configuration file: `~/.aicippy/config.toml`

## Security

- OAuth 2.0 authentication via AWS Cognito
- Tokens stored in OS keychain (macOS Keychain, Windows Credential Manager)
- All communications over TLS 1.3
- Secrets never logged or printed
- IAM least privilege roles

## Development

```bash
# Clone repository
git clone https://github.com/aivibe/aicippy.git
cd aicippy

# Install dev dependencies
pip install -e ".[dev]"

# Run tests
pytest

# Run linter
ruff check src/

# Type checking
mypy src/aicippy/
```

## Infrastructure Deployment

```bash
# Install CDK dependencies
cd infrastructure
pip install -r requirements.txt

# Deploy all stacks
cdk deploy --all
```

## License

Proprietary - AiVibe Software Services Pvt Ltd

## Support

- Documentation: https://docs.aicippy.com
- Issues: https://github.com/aivibe/aicippy/issues
- Email: support@aivibe.in

---

Built with precision by AiVibe Software Services Pvt Ltd, Chennai, India.
