Metadata-Version: 2.3
Name: casatoo
Version: 0.1.0
Summary: Casatoo public CLI
Author: Casatoo
Author-email: Casatoo <denispmaciel@gmail.com>
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: httpx>=0.28.1
Requires-Python: >=3.11
Project-URL: Homepage, https://casatoo.pt
Project-URL: Repository, https://github.com/belem-ai/casatoo-tree
Description-Content-Type: text/markdown

# casatoo-cli

Public Casatoo CLI.

Install:

```sh
uvx casatoo --help
pipx install casatoo
```

Initial commands:

```sh
casatoo auth login
casatoo auth status
casatoo auth logout
casatoo me
casatoo me --json
```

## Token storage

The CLI stores OAuth tokens in `$XDG_STATE_HOME/casatoo/token.json`, or
`~/.local/state/casatoo/token.json` when `XDG_STATE_HOME` is unset. The token
file is written with mode `0600` on Unix-like systems.

`casatoo auth logout` revokes the stored refresh token before deleting local
state. Treat the token file as sensitive while logged in.
