Metadata-Version: 2.4
Name: talocode-skilllane
Version: 0.1.0
Summary: Open-source skill runtime and registry for AI agents — Python SDK and CLI
Project-URL: Homepage, https://github.com/talocode/skilllane
Project-URL: Repository, https://github.com/talocode/skilllane
Project-URL: Issues, https://github.com/talocode/skilllane/issues
Author: Talocode
License-Expression: MIT
Keywords: ai-agents,cli,mcp,skills,talocode
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# talocode-skilllane

Python SDK and CLI for [SkillLane](https://github.com/talocode/skilllane) — an open-source skill runtime and registry for AI agents.

## Installation

```bash
pip install talocode-skilllane
```

## Quick Start

### As a library

```python
from talocode_skilllane import SkillLaneClient

client = SkillLaneClient()
skills = client.list_skills()
print(skills)
```

### As a CLI

```bash
skilllane-py health
skilllane-py list --tag python
skilllane-py search "data processing"
skilllane-py validate ./my-skill
skilllane-py run my-skill --task "process data"
```

## Development

```bash
cd python
pip install -e .
pip install pytest
pytest
```

## License

MIT
