Metadata-Version: 2.4
Name: bos-ai
Version: 1.7.0
Summary: Lightweight single-file agent framework
Project-URL: Homepage, https://github.com/bos-agent/bos-ai
License: MIT License
        
        Copyright (c) 2024-2026, bos-ai contributors
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Requires-Python: >=3.13
Requires-Dist: aiohttp==3.13.5
Requires-Dist: beautifulsoup4==4.14.3
Requires-Dist: click==8.3.2
Requires-Dist: ddgs==9.14.4
Requires-Dist: filelock==3.25.2
Requires-Dist: jsonschema>=4.21
Requires-Dist: litellm==1.84.0
Requires-Dist: prompt-toolkit==3.0.52
Requires-Dist: pydantic==2.12.5
Requires-Dist: python-dotenv==1.2.2
Requires-Dist: pyyaml==6.0.3
Requires-Dist: rich==14.3.3
Requires-Dist: textual-autocomplete==4.0.6
Requires-Dist: textual==8.2.3
Requires-Dist: tomli==2.0.1; python_version < '3.11'
Requires-Dist: tomlkit==0.15.0
Provides-Extra: all
Requires-Dist: lark-oapi==1.6.8; extra == 'all'
Requires-Dist: tavily-python==0.7.23; extra == 'all'
Provides-Extra: lark
Requires-Dist: lark-oapi==1.6.8; extra == 'lark'
Provides-Extra: search
Requires-Dist: tavily-python==0.7.23; extra == 'search'
Description-Content-Type: text/markdown

```
 ███████████     ███████     █████████ 
░░███░░░░░███  ███░░░░░███  ███░░░░░███
 ░███    ░███ ███     ░░███░███    ░░░ 
 ░██████████ ░███      ░███░░█████████ 
 ░███░░░░░███░███      ░███ ░░░░░░░░███
 ░███    ░███░░███     ███  ███    ░███
 ███████████  ░░░███████░  ░░█████████ 
░░░░░░░░░░░     ░░░░░░░     ░░░░░░░░░  
```

> From zero to agent in a single command.

<div align="center">
  <p>
    <a href="https://pypi.org/project/bos-ai/"><img src="https://img.shields.io/pypi/v/bos-ai" alt="PyPI"></a>
    <a href="https://pepy.tech/project/bos-ai"><img src="https://static.pepy.tech/badge/bos-ai" alt="Downloads"></a>
    <img src="https://img.shields.io/badge/python-≥3.13-blue" alt="Python">
    <img src="https://img.shields.io/badge/license-MIT-green" alt="License">
    <a href="https://github.com/bos-agent/bos-ai"><img src="https://img.shields.io/github/stars/bos-agent/bos-ai?style=social" alt="GitHub Stars"></a>
  </p>
</div>


## Quick Start

```bash
pip install bos-ai
boscli ask "how are you"
```

Or if you have uv installed:

```bash
uvx boscli ask "how are you"
```

## Project Setup

```bash
mkdir my-agent && cd my-agent
boscli init          # guided setup: purpose, topology, model — writes a runnable baseline
boscli gateway start # start the agent runtime
boscli tui           # connect the terminal UI
```

Grow the project as you go:

```bash
boscli gen agent <name>      # add a specialist agent
boscli gen tool <Name>       # add a custom tool stub
boscli gen channel telegram  # wire a Telegram bot
boscli doctor                # check config, paths, env, credentials
```

## Docs

See [`docs/`](docs/) for architecture, extension points, and configuration reference.

## License

See [LICENSE](LICENSE).
