Metadata-Version: 2.4
Name: harshbhx
Version: 0.1.1
Summary: Canonical Python library and CLI toolkit for the harshbhx developer ecosystem
Author-email: Harshu <harshu@harshbhx.dev>
License: MIT
Project-URL: Homepage, https://harshbhx.dev
Project-URL: Repository, https://github.com/harshbhx/ecosystem
Project-URL: Documentation, https://github.com/harshbhx/ecosystem/tree/main/docs
Keywords: harshbhx,ecosystem,cli,toolkit,identity,devops
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# harshbhx (PyPI)

> Canonical Python library & CLI toolkit for the `harshbhx` developer ecosystem.

[![PyPI version](https://img.shields.io/pypi/v/harshbhx.svg)](https://pypi.org/project/harshbhx/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## Overview

`harshbhx` is the official Python package for the `harshbhx` ecosystem. It provides both a programmatic API for identity verification and system health inspection, as well as a `pipx`-installable CLI toolkit.

## Installation

```bash
# Install CLI tool using pipx
pipx install harshbhx

# Or install locally in a virtual environment
pip install harshbhx
```

## CLI Usage

```bash
# Display ecosystem identity and repository details
harshbhx about

# List canonical ecosystem URLs
harshbhx links

# Print current package version
harshbhx version

# Execute system & environment diagnostic checks
harshbhx doctor
```

## Programmatic API Usage

```python
from harshbhx import CANONICAL_IDENTITY, run_doctor_checks

print(f"Namespace: {CANONICAL_IDENTITY['namespace']}")
print(f"Owner: {CANONICAL_IDENTITY['identity']}")

diagnostics = run_doctor_checks()
print(diagnostics)
```

## License

[MIT](file:///c:/Users/Harshu/OneDrive/Desktop/OSS%20Contributes/ecosysten/SECURITY.md) © Harshu
