Metadata-Version: 2.4
Name: nightshift-client
Version: 0.1.0
Summary: Client library for nightshift autonomous coding agent
Author-email: Andriy Khavryuchenko <akhavr@42cc.co>
License: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# nightshift-client

`nightshift-client` is the client-side Python package for the Nightshift tracker.

## Installation

```bash
cd nightshift-client
pip install -e .
```

## Python usage

```python
from nightshift_client import NightshiftClient

client = NightshiftClient(repo_path=".", identity="user@example.com")
issue_id = client.create_issue("Example issue", "Describe the problem")
client.push()
```

## CLI usage

```bash
nightshift-client daemon status --repo .
nightshift-client daemon start --repo .
nightshift-client daemon stop --repo .
```
