Metadata-Version: 2.5
Name: strands-harness
Version: 0.0.0
Summary: Initial starter release for strands harness
Project-URL: Homepage, https://strandsagents.com
Project-URL: Repository, https://github.com/strands-agents/harness-sdk
Project-URL: Bug Tracker, https://github.com/strands-agents/harness-sdk/issues
Author-email: AWS <opensource@amazon.com>
License-Expression: Apache-2.0
License-File: LICENSE
License-File: NOTICE
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# strands harness

This is the initial starter release of `strands-harness`. It provides version
information and a greeting function. It does not contain the agent harness
implementation.

```python
from strands_harness import __version__, hello

print(__version__)
print(hello())
```

You can also run the greeting from a terminal:

```bash
python -m strands_harness
```

The full agent harness is planned for a subsequent release. Follow development
in the [Strands repository](https://github.com/strands-agents/harness-sdk).

Licensed under Apache License 2.0.
