Metadata-Version: 2.5
Name: coloph-install-skills
Version: 0.1.3
Summary: Install agent skills bundled with local development dependencies
Project-URL: Repository, https://github.com/golergka/coloph-install-skills
Project-URL: Issues, https://github.com/golergka/coloph-install-skills/issues
License-Expression: GPL-3.0-only
License-File: LICENSE
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# coloph-install-skills

When writing agent-first packages, you want to bundle it with skills to be installed alongside it. Use this utilty to do this automatically.

Python 3.12 or later is required. The license is GPL-3.0-only.

## Install and integrate

Install the package. Then run the installer:

```sh
uv add coloph-install-skills
uv run coloph-install-skills
```

Then use the `/install-bundled-skills` to integrate it.

## Development

```sh
uv sync --group dev
uv run ruff check .
uv run ruff format --check .
uv run mypy
uv run pytest
```
