Metadata-Version: 2.4
Name: claudedashbord
Version: 0.1.3
Summary: A lightweight toolkit for building and monitoring AI/ML dashboards
Author: claudedashbord maintainers
License: MIT
Keywords: ai,ml,dashboard,metrics,monitoring,cli
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file
Dynamic: requires-python

# claudedashbord

A lightweight, dependency-free toolkit for building and monitoring AI/ML dashboards —
metric rendering, run identifiers, terminal gauges, and signed channel tokens for the
dashboard runtime.

## Install

```bash
pip install claudedashbord
```

## CLI

```bash
claudedashbord run-id                     # sortable run id
claudedashbord metrics '{"loss":0.0321,"acc":0.98}'
claudedashbord gauge 0.98 1.0
claudedashbord token "hello"              # sign a channel token
claudedashbord verify "<token>"
```

## Library

```python
from claudedashbord import format_metrics, run_id, gauge, summarize

print(run_id())
print(format_metrics({"loss": 0.0321, "acc": 0.98}))
print(gauge(0.98, 1.0))
```

## License

MIT
