Metadata-Version: 2.4
Name: myai-local-agent
Version: 0.1.1
Summary: MyAI Local Agent — connects your machine to the MyAI cloud AI coding assistant
Project-URL: Homepage, http://13.207.14.118:9090
Author-email: MyAI <support@myai.dev>
License: MIT
Keywords: agent,ai,cli,coding-assistant,myai
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development
Requires-Python: >=3.10
Requires-Dist: requests>=2.31
Requires-Dist: websockets>=12.0
Description-Content-Type: text/markdown

# MyAI Local Agent

Connect your machine to the [MyAI](http://13.207.14.118:9090) cloud AI coding assistant. Chat with AI directly in your terminal, or let the web UI execute commands on your local machine.

## Install

```bash
pip install myai-local-agent
```

## Quick Start

```bash
# 1. Log in to your MyAI account
myai login

# 2. Start an interactive chat session (like Claude Code)
myai chat
```

## Commands

| Command | Description |
|---------|-------------|
| `myai login [server_url]` | Authenticate with your MyAI account |
| `myai chat` | Interactive terminal chat with your AI agent |
| `myai chat --model gpt-4o` | Chat using a specific model |
| `myai chat --provider openai` | Chat using a specific provider |
| `myai start` | Start background agent (for web UI local tool execution) |
| `myai start --daemon` | Start agent in background |
| `myai stop` | Stop background agent |
| `myai status` | Check connection status |

## How It Works

- **Terminal chat** (`myai chat`): Talk to the AI directly in your terminal. It can read/write files, run commands, and manage code on your machine.
- **Background agent** (`myai start`): Connects to the web UI so the AI can execute local tools (file ops, shell commands, git) on your device while you interact through the browser.

## Requirements

- Python 3.10+
- A MyAI account (sign up at http://13.207.14.118:9090)
