Metadata-Version: 2.4
Name: jharness-toolkit
Version: 0.1.0
Summary: JHarness tool registry, validation helpers, and execution decorators
Project-URL: Documentation, https://github.com/Ezio2000/jharness-python/tree/main/docs
Project-URL: Homepage, https://github.com/Ezio2000/jharness-python
Project-URL: Issues, https://github.com/Ezio2000/jharness-python/issues
Project-URL: Repository, https://github.com/Ezio2000/jharness-python.git
Author: JHarness contributors
License-Expression: MIT
License-File: LICENSE
Keywords: agent,ai,json-schema,tools
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Typing :: Typed
Requires-Python: >=3.11
Requires-Dist: jharness-kernel<0.2.0,>=0.1.0
Requires-Dist: jsonschema>=4.23.0
Requires-Dist: referencing>=0.35.0
Description-Content-Type: text/markdown

# jharness-toolkit

`jharness-toolkit` is the concrete Python tool-support distribution for
`jharness.kernel`. It provides an immutable tool registry, JSON Schema
validation, async function adapters, and retry and circuit-breaking decorators.

```bash
uv add jharness-toolkit
```

```python
from jharness.toolkit import ToolRegistry, function_tool
```

Runtime semantics and portable tool values remain in `jharness.kernel`;
`jharness.toolkit` only implements concrete adaptation and execution policies. See the
[tool protocol](https://github.com/Ezio2000/jharness/blob/v0.1.0/docs/tool-protocol.md) and
[Python package boundaries](https://github.com/Ezio2000/jharness-python/blob/main/docs/python-package-boundaries.md).
