Metadata-Version: 2.5
Name: panmetis
Version: 0.1.5
Summary: A curated collection of agent skills for AI coding assistants
Project-URL: Homepage, https://github.com/stabilefrisur/panmetis
Project-URL: Repository, https://github.com/stabilefrisur/panmetis
Project-URL: Issues, https://github.com/stabilefrisur/panmetis/issues
Project-URL: Changelog, https://github.com/stabilefrisur/panmetis/blob/main/CHANGELOG.md
Author-email: Stabile Frisur <26568863+stabilefrisur@users.noreply.github.com>
License-Expression: MIT
License-File: LICENSE
Keywords: agents,ai,automation,coding-assistant,skills
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Classifier: Typing :: Typed
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# panmetis

A curated collection of agent skills for AI coding assistants.

## Installation

```bash
uv add panmetis
```

Or with pip:

```bash
pip install panmetis
```

## Usage

```python
import panmetis
```

## Development

Clone the repository and sync dependencies:

```bash
git clone https://github.com/stabilefrisur/panmetis.git
cd panmetis
uv sync
```

Build:

```bash
uv build
```

## Updating Skills

Skills are managed via the [`skills`](https://www.npmjs.com/package/skills) CLI. The `.agents/skills/` directory is symlinked to `src/panmetis/skills/`, so updates write directly into the package source. The temporary home prevents the CLI from also creating links for installed agent runtimes such as Claude Code.

```bash
tmp_home=$(mktemp -d)
trap 'rm -rf "$tmp_home"' EXIT
mkdir -p "$tmp_home/.copilot"
HOME="$tmp_home" XDG_CONFIG_HOME="$tmp_home/.config" npx --yes skills update --project --yes
```

## License

[MIT](LICENSE)