Metadata-Version: 2.4
Name: skillet-sdk
Version: 0.1.0
Summary: Python SDK for the Skillet API — agentic skills and context engineering
Project-URL: Homepage, https://skillet.dev
Project-URL: Documentation, https://docs.skillet.dev
Project-URL: Repository, https://github.com/YOUR_ORG/skillet-python
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.11
Requires-Dist: httpx<1,>=0.27
Requires-Dist: pydantic<3,>=2.7
Description-Content-Type: text/markdown

# Skillet Python SDK

Python client for the Skillet API.

## Install

pip install skillet

## Quickstart

from skillet import Client

client = Client(api_key="sk-...")
package = client.build("Your corpus text here...")

# Export to disk
package.bundle().extract_to("./my-skill")

# Evaluate
report = client.evaluate(package)

# Refine
result = client.refine(package, dev_tasks=[...], holdout_tasks=[...], edit_budget=3)
