Metadata-Version: 2.4
Name: swarmauri_skill_local
Version: 0.11.0.dev2
Summary: Local skill-root resolver for Swarmauri.
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: swarmauri,sdk,standards,skills,agents
Author: Jacob Stewart
Author-email: jacob@swarmauri.com
Requires-Python: >=3.10,<3.15
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: swarmauri_base
Requires-Dist: swarmauri_core
Description-Content-Type: text/markdown

# Swarmauri Local Skill

![Swarmauri Logo](https://github.com/swarmauri/swarmauri-sdk/blob/3d4d1cfa949399d7019ae9d8f296afba773dfb7f/assets/swarmauri.brand.theme.svg)

LocalSkill resolves Swarmauri skills from configured local skill roots.

[![PyPI Downloads](https://static.pepy.tech/badge/swarmauri_skill_local)](https://pepy.tech/projects/swarmauri_skill_local)
[![Hits](https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/standards/swarmauri_skill_local.svg)](https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/standards/swarmauri_skill_local/)
[![Python Versions](https://img.shields.io/pypi/pyversions/swarmauri_skill_local)](https://pypi.org/project/swarmauri_skill_local/)
[![License](https://img.shields.io/pypi/l/swarmauri_skill_local)](https://pypi.org/project/swarmauri_skill_local/)
[![PyPI Version](https://img.shields.io/pypi/v/swarmauri_skill_local)](https://pypi.org/project/swarmauri_skill_local/)

## Features

- Provides a first-class Swarmauri standard component.
- Uses existing Swarmauri core and base contracts.
- Keeps skill and agent composition language-agnostic at the package boundary.

## Installation

```bash
uv add swarmauri_skill_local
```

```bash
pip install swarmauri_skill_local
```

## Usage

```python
from swarmauri_skill_local import LocalSkill

skill = LocalSkill.from_name("my-skill", roots=["./skills"])
print(skill.name)
```

## Contributing

This package is part of the Swarmauri SDK monorepo.

