Metadata-Version: 2.4
Name: kora-code
Version: 0.1.0
Summary: Kora's official coding agent
Author: xvshiting
License-Expression: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.12
Requires-Dist: kora-agent>=0.1.0
Description-Content-Type: text/markdown

# Kora Code Agent

The official coding agent for the [Kora](https://github.com/xvshiting/kora) framework.

## Installation

```bash
pip install kora-agent kora-code
```

Or with the `code` extra:

```bash
pip install kora-agent[code]
```

## Usage

```bash
# Interactive REPL mode
kora code

# One-shot task
kora code "refactor this module to use async"
```

## What it does

Kora Code is an engineering agent that:
- Reads and writes code
- Runs shell commands and Python in a sandbox
- Searches and patches files
- Reasons about systems and architecture

It is built on the same public `kora` APIs available to every developer.
