Metadata-Version: 2.5
Name: panmetis
Version: 0.1.6
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

Panmetis is a curated, upstream-tracked collection of agent skills intended for Python distribution.

## Install

```bash
uv add panmetis
```

Or install it into an existing Python environment:

```bash
python -m pip install panmetis
```

## Access the skills

Each directory under [`src/panmetis/skills/`](src/panmetis/skills/) contains a `SKILL.md` and may contain references, scripts, templates, or agent metadata. In a source checkout, `.agents/skills` points to that directory for runtimes that discover Universal skills there.

The published sdist and wheel include the complete skills tree.

The selected skills and their upstream sources are recorded in [`skills-lock.json`](skills-lock.json).

## Develop

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

The build must produce an sdist and wheel containing the bundled skills.

## Maintain

- Sync upstream skills with the [update-skills prompt](.github/prompts/update-skills.prompt.md). It owns the isolated updater, review, and verification sequence.
- Publish a version with the [release prompt](.github/prompts/publish.prompt.md). It owns version alignment, changelog, build, tag, push, and PyPI completion criteria.

## License

[MIT](LICENSE)
