Metadata-Version: 2.4
Name: ready-to-work
Version: 0.0.0a1
Summary: Architect loop framework for AI-driven development
Project-URL: Homepage, https://github.com/joey-lou/ready-to-work
Project-URL: Documentation, https://github.com/joey-lou/ready-to-work#readme
Project-URL: Repository, https://github.com/joey-lou/ready-to-work
Project-URL: Issues, https://github.com/joey-lou/ready-to-work/issues
Author-email: Joey Lou <joey99lou@gmail.com>
License: MIT License
        
        Copyright (c) 2026 Joey Lou
        
        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
Keywords: agent,ai,automation,cursor,development,llm
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Code Generators
Requires-Python: >=3.11
Provides-Extra: api
Requires-Dist: fastapi>=0.110.0; extra == 'api'
Requires-Dist: pydantic>=2.0.0; extra == 'api'
Requires-Dist: uvicorn[standard]>=0.29.0; extra == 'api'
Description-Content-Type: text/markdown

# ready-to-work (rtw)

Plan → Build → Review loop for AI-driven development. Uses [Cursor Agent CLI](https://cursor.com/docs/cli) as the default backend.

## Installation

```bash
uv tool install git+https://github.com/joey-lou/ready-to-work.git
```

**Prerequisites:** [uv](https://docs.astral.sh/uv/), [Cursor Agent CLI](https://cursor.com/docs/cli) (authenticated), Python 3.11+.

## Usage

```bash
rtw run task.md              # Run architect loop (default model: sonnet-4.6)
rtw run task.md --max-iter 5
rtw run task.md --model gpt-4o  # Override model (must be a known-valid model)
rtw list                     # List runs
rtw resume                   # Resume latest run (use -w /path/to/project if needed)
```

## Development

```bash
uv tool install --editable .   # Pick up code changes without reinstalling
uv sync
uv run python -m pytest
uv run ruff check . && uv run ruff format .
```

Pre-commit runs ruff and pytest on commit:

```bash
uv run pre-commit install
```

## Releasing

Version is derived from git tags via `hatch-vcs`. To release:

```bash
git tag v0.3.0 && git push --tags
```

Pushing a tag triggers the [Release workflow](.github/workflows/release.yml), which builds the package and publishes to PyPI and GitHub Releases.

## License

MIT
