Metadata-Version: 2.4
Name: agentclaw-anyanpee
Version: 1.0.0
Summary: An elite autonomous coding and DevOps agent powered by Gemini 2.5 Flash
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: google-genai>=2.0.0
Requires-Dist: requests>=2.28.0
Requires-Dist: fastapi>=0.100.0
Requires-Dist: uvicorn>=0.23.0

# Agent CLAW

An elite autonomous coding and DevOps agent powered by Gemini 2.5 Flash.

## Install

```bash
pip install agent-claw
```

## Setup

Get a free Gemini API key at https://aistudio.google.com then set it:

```bash
# Mac/Linux
export GEMINI_API_KEY="your-key-here"

# Windows PowerShell
$env:GEMINI_API_KEY="your-key-here"
```

## Run

```bash
agent
```

## Tools

| Tool | Description |
|---|---|
| `write_file` | Write files to disk |
| `read_file` | Read file contents |
| `delete_file` | Delete files or folders |
| `create_directory` | Scaffold directories |
| `move_file` | Move or rename files |
| `list_directory` | List folder contents |
| `find_files` | Find files by pattern |
| `search_in_files` | Search text across files |
| `execute_python_file` | Run Python scripts |
| `execute_shell_command` | Run any shell command |
| `install_package` | pip install packages |
| `run_tests` | Run pytest suites |
| `http_request` | Make HTTP requests |
| `download_file` | Download files from URLs |
| `read_env_file` | Read .env files |
| `write_env_file` | Write .env files |
| `git_command` | Run git commands |
| `run_docker_command` | Run Docker commands |
| `run_terraform_command` | Run Terraform commands |

## License

MIT
