Metadata-Version: 2.4
Name: gateagent-gateway
Version: 0.1.6
Summary: Local gateway for collecting and managing agent events with Google Sheets integration
Author-email: Anshul Basia <anshulbasia@alumni.iitd.ac.in>, Siddharth Goyal <goyal.siddharth22@gmail.com>
Maintainer-email: Anshul Basia <anshulbasia@alumni.iitd.ac.in>, Siddharth Goyal <goyal.siddharth22@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/gateagent/gateway/ext
Project-URL: Repository, https://github.com/gateagent/gateway/ext
Project-URL: Issues, https://github.com/gateagent/gateway/issues
Keywords: agent,gateway,tracking,events,google-sheets,fastapi
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Framework :: FastAPI
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: fastapi>=0.110.0
Requires-Dist: uvicorn>=0.29.0
Requires-Dist: requests>=2.25.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
Requires-Dist: httpx>=0.24.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"
Requires-Dist: mypy>=1.0.0; extra == "dev"

# Gateagent

The Gateway for your Agents. It acts as a central hub to monitor, track, and visualize the actions performed by your AI agents.

- **PyPI Package**: [gateagent](https://pypi.org/project/gateagent/)
- **Companion Library**: [agent-revert](https://pypi.org/project/agent-revert/)

## Features

-   **Event Tracking**: Receive and store events from agents using `agent-revert`.
-   **Agent Registry**: Keep track of all registered agents.
-   **Visual Dashboard**: A web-based UI to view agent activities, timelines, and affected applications.
-   **Integrations**: View status of external integrations (e.g., Gsuite, Salesforce).

## Installation

```bash
pip install gateagent
```

## Usage

Start the gateway server:

```bash
gateagent start
```

Visit `http://localhost:5173` (or the configured port) to view the dashboard.

## Connecting Agents

Use the `agent-revert` package in your agent code to send events to this gateway.

```python
from agent_revert import register_agent, track_action

register_agent("MyAgent")

@track_action(agent_name="MyAgent")
def do_work():
    pass
```
