Experimental Python-runner coding agent with a Textual TUI
Project description
uv-agent
uv-agent is an experimental coding agent with a Textual TUI. Its only external
action surface is run_python: the model submits Python scripts to a managed
uv run runner, and those scripts do the actual work.
The project is early and intentionally small. Public APIs, config fields, and runtime behavior may still change.
Install And Run
Run the latest published package:
uvx uv-agent@latest
Run from a local checkout:
uv run uv-agent
Ask a single prompt without opening the TUI:
uvx uv-agent@latest ask "Reply with exactly: ok"
Resume an existing thread:
uvx uv-agent@latest ask --thread thr_xxx "Continue from here"
Configuration
User config lives at ~/.uv-agent/config.json. A project can override it with
.uv-agent/config.json; that project-local directory is ignored by git. Keep
API keys in environment variables or ignored local config.
Minimal shape:
{
"providers": {
"main": {
"base_url": "https://api.example.com/v1",
"api_key_env": "UV_AGENT_API_KEY",
"responses": { "path": "/responses" }
}
},
"models": {
"main": {
"provider": "main",
"model": "your-model-name",
"api": "responses",
"context_window_tokens": 128000
}
},
"levels": {
"medium": { "model": "main" }
},
"runtime": {
"default_level": "medium"
},
"ui": {
"language": "auto"
}
}
Use /config in the TUI to switch the default level, language, and automatic
compression. Set ui.language to zh-CN for a Chinese UI.
See configuration for all supported options and config.example.json for a detailed example.
Documentation
Core Ideas
- The agent has exactly one external action surface:
run_python. - Managed scripts declare third-party dependencies with PEP 723 inline metadata.
- The distributed package includes both
uv_agentanduv_agent_runtime; managed scripts import helpers fromuv_agent_runtime. - Workspace rules, skills, and MCP declarations are progressively disclosed as context. MCP calls happen from Python runtime helpers, not direct model tools.
- Thread state, run logs, saved scripts, and attachments live under
~/.uv-agent/projects/<project-id>/.
Development
uv run pytest
Local debug state, screenshots, config, scripts, runs, and thread data belong in
.uv-agent/ and should stay out of git.
License
MIT. See LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file uv_agent-0.1.5.tar.gz.
File metadata
- Download URL: uv_agent-0.1.5.tar.gz
- Upload date:
- Size: 216.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6ed85f359f45d6c7df680a8b1d3b15ca5a15115c1dca3d28f24446dc5574a22
|
|
| MD5 |
1f88457ee722a28eef2001afc60fd1f2
|
|
| BLAKE2b-256 |
1ce669aadc3eb28b18ca238c4ceabd0a72bfaf08191e2a4bfa875622e8afd987
|
File details
Details for the file uv_agent-0.1.5-py3-none-any.whl.
File metadata
- Download URL: uv_agent-0.1.5-py3-none-any.whl
- Upload date:
- Size: 93.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a0c6002f508039ef18af0742e8904e16868560f54adfd8c579c562abe2f1f2f
|
|
| MD5 |
a1d665fa931de83f3bfbb61c50686e57
|
|
| BLAKE2b-256 |
a15ba2c44369d1ff5f6383e4e1ba7553bd0458e05aa00450ebf80afedede759d
|