Metadata-Version: 2.1
Name: exemplar-core
Version: 0.1.2
Summary: Shared Exemplar REST clients for skills, prompts, and memory
License: LicenseRef-Proprietary
Author: Exemplar Dev LLC
Requires-Python: >=3.10,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: httpx (>=0.27.0)
Description-Content-Type: text/markdown

# exemplar-core

Shared HTTP clients for Exemplar **skills** (`/api/agent-skills`), **prompts** (`/api/prompts`), and **memory** (`/api/harness-memory`).

Used by `exemplar-harness-sdk` and `exemplar-cli`. Install directly only if you need the REST layer without the full SDK.

```bash
pip install exemplar-core
export EXEMPLAR_API_KEY=eis_...
```

```python
from exemplar_core import skills_from_env, prompts_from_env, memory_from_env

skills = skills_from_env()
prompts = prompts_from_env()
memory = memory_from_env(user_id="user-123")
```

