Metadata-Version: 2.2
Name: opencat
Version: 0.2.0
Summary: OpenCat — a cute floating desktop cat companion for OpenClaw AI
License: MIT
Project-URL: Homepage, https://github.com/Jacobzwj/opencat
Project-URL: Repository, https://github.com/Jacobzwj/opencat
Project-URL: Issues, https://github.com/Jacobzwj/opencat/issues
Keywords: opencat,openclaw,desktop-pet,ai-chat
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Desktop Environment
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: customtkinter>=5.2
Requires-Dist: Pillow>=10.0
Requires-Dist: websocket-client>=1.6
Requires-Dist: pyobjc-framework-Cocoa>=9.0; sys_platform == "darwin"

<p align="right">
  <a href="README.zh-CN.md">中文</a> | English
</p>

<p align="center">
  <img src="https://raw.githubusercontent.com/Jacobzwj/opencat/master/docs/idle.gif" width="120" />
</p>

<h1 align="center">OpenCat — Desktop Client for OpenClaw</h1>

<p align="center">
  <b>A cute desktop skin for <a href="https://github.com/openclaw/openclaw">OpenClaw</a> — same commands, same AI, just cuter.</b><br>
  <code>pip install</code>, run <code>opencat</code>, done. Everything you do in OpenClaw works here.
</p>

<p align="center">
  <a href="https://pypi.org/project/opencat/"><img src="https://img.shields.io/pypi/v/opencat?color=orange&logo=pypi&logoColor=white" /></a>
  <img src="https://img.shields.io/badge/python-3.10+-blue?logo=python&logoColor=white" />
  <img src="https://img.shields.io/badge/platform-Windows%20%7C%20macOS%20%7C%20Linux-lightgrey" />
  <img src="https://img.shields.io/badge/license-MIT-green" />
</p>

<table align="center">
  <tr>
    <td align="center" colspan="4"><b>Idle</b> (random rotation)</td>
    <td align="center"><b>Thinking</b></td>
    <td align="center"><b>Done</b></td>
    <td align="center"><b>Sleeping</b></td>
  </tr>
  <tr>
    <td align="center"><img src="https://raw.githubusercontent.com/Jacobzwj/opencat/master/docs/idle.gif" width="90" /><br><sub>yarn ball</sub></td>
    <td align="center"><img src="https://raw.githubusercontent.com/Jacobzwj/opencat/master/docs/error.gif" width="90" /><br><sub>scratching</sub></td>
    <td align="center"><img src="https://raw.githubusercontent.com/Jacobzwj/opencat/master/docs/connecting.gif" width="90" /><br><sub>rolling</sub></td>
    <td align="center"><img src="https://raw.githubusercontent.com/Jacobzwj/opencat/master/docs/talking.gif" width="90" /><br><sub>running</sub></td>
    <td align="center"><img src="https://raw.githubusercontent.com/Jacobzwj/opencat/master/docs/thinking.gif" width="90" /><br><sub>eating</sub></td>
    <td align="center"><img src="https://raw.githubusercontent.com/Jacobzwj/opencat/master/docs/done.gif" width="90" /><br><sub>pooping</sub></td>
    <td align="center"><img src="https://raw.githubusercontent.com/Jacobzwj/opencat/master/docs/sleeping.gif" width="90" /><br><sub>sleeping</sub></td>
  </tr>
</table>

---

## Why OpenCat?

If you're running [OpenClaw](https://github.com/openclaw/openclaw) as your AI gateway, you might find:

- **The official web panel is too cluttered** — you just want a quick, clean chat window
- **Telegram / WhatsApp bots need a VPN** if you're in mainland China
- **You want something that feels alive** — not another chat tab buried in your browser

OpenCat puts a pixel-art cat on your desktop. Click it, and a warm-toned chat window pops up. That's it. No browser, no VPN, no noise.

## Screenshots

<table>
  <tr>
    <td align="center"><b>Chat + Cat</b></td>
    <td align="center"><b>History Sidebar</b></td>
  </tr>
  <tr>
    <td><img src="https://raw.githubusercontent.com/Jacobzwj/opencat/master/docs/chat.png" width="400" /></td>
    <td><img src="https://raw.githubusercontent.com/Jacobzwj/opencat/master/docs/chat-history.png" width="480" /></td>
  </tr>
  <tr>
    <td><sub>Click the cat to open the chat window. Warm pastel UI with streaming AI replies.</sub></td>
    <td><sub>Conversation history with color-coded bookmarks. Switch or delete sessions anytime.</sub></td>
  </tr>
</table>

**Toolbar:** `A-`/`A+` adjust font size &nbsp;|&nbsp; cube toggles 3D cat &nbsp;|&nbsp; `+` new chat &nbsp;|&nbsp; book icon opens history

## Features

- **Floating cat widget** — always on top, draggable, with animated states (idle, thinking, talking, sleeping...)
- **Warm pastel chat UI** — clean, minimal, purpose-built for quick conversations
- **Streaming responses** — see the AI reply in real-time, token by token
- **Conversation history** — sessions are saved locally and browsable from the sidebar
- **Image attachments** — paste or drag images into the chat (clipboard + file picker)
- **Cross-platform** — Windows, macOS, Linux (native transparency on Windows, graceful fallback elsewhere)
- **Remote connection** — connect to an OpenClaw gateway on another machine via Tailscale or any network
- **Lightweight** — pure Python, ~100 KB installed, no web runtime

## Chat Commands

OpenCat supports [OpenClaw](https://github.com/openclaw/openclaw) native commands — type them directly in the chat input:

| Command | Description |
|---------|-------------|
| `/status` | View current session status and token usage |
| `/new` | Start a new conversation (resets server session) |
| `/compact` | Compress context to save tokens |
| `/think <level>` | Set thinking depth |
| `/stop` | Abort the current response |
| `/clear` | Clear local chat display (does not reset server session) |
| `/help` | Show all available commands |

## Quick Start

### Prerequisites

You need a running [OpenClaw](https://github.com/openclaw/openclaw) gateway. OpenCat connects to it via WebSocket.

### Install

```bash
pip install opencat
```

### Run

```bash
opencat
```

If `opencat` is not recognized, use:

```bash
python -m opencat
```

OpenCat reads your gateway config from `~/.openclaw/openclaw.json` automatically.

### CLI Options

```bash
opencat --host 100.64.0.3    # Connect to a remote OpenClaw (e.g. via Tailscale)
opencat --port 18789          # Override gateway port
opencat --token your-token    # Override gateway token
opencat --debug               # Enable debug logging
```

## Development

```bash
git clone https://github.com/Jacobzwj/opencat.git
cd opencat
pip install -e .
opencat
```

## How It Works

```
┌──────────┐   WebSocket    ┌──────────────┐
│  OpenCat  │ ◄───────────► │  OpenClaw    │ ───► LLM API
│ (desktop) │   streaming   │  (gateway)   │
└──────────┘                └──────────────┘
```

OpenCat is a pure client — it connects to your self-hosted OpenClaw gateway over WebSocket, sends messages, and streams back responses. All AI logic, model selection, and API keys stay on the gateway side.

## Customizing the Cat

Cat animations live in `opencat/ui/assets/` and are mapped via `manifest.json`. Replace them with your own pixel art:

| State | What happens | Default GIF |
|-------|-------------|-------------|
| **Idle** | Connected, waiting for user. Randomly rotates through a pool. | `idle.gif`, `error.gif`, `connecting.gif`, `talking.gif` |
| **Thinking** | User sent a message, waiting for AI + streaming reply | `thinking.gif` (eating) |
| **Done** | Response complete, stays until next message | `done.gif` (pooping) |
| **Sleeping** | Not connected to OpenClaw | `sleeping.gif` (sleeping in box) |

## License

MIT
