Metadata-Version: 2.4
Name: skill-hub-sdk
Version: 0.1.0
Summary: Skill Hub SDK
Project-URL: Repository, https://gitlab.com/fiftyk/skill-hub-sdk
Author: FiftyK
License: MIT
Keywords: sdk,skill-hub
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# skill-hub-sdk

Skill Hub Python SDK.

## Installation

```bash
pip install skill-hub-sdk
```

## Development

```bash
# Install dependencies
uv sync

# Run tests
uv run pytest

# Lint
uv run ruff check src/
uv run ruff format src/
```

## Release

1. Update `version` in `pyproject.toml`
2. Commit and push
3. Create and push a tag: `git tag v0.x.x && git push origin v0.x.x`
4. GitLab CI will automatically build and publish to the Package Registry
