A collection of agent skills packaged as conda packages and published to the skill-forge channel on prefix.dev.
Agent skills are markdown files that give AI coding agents specialized knowledge about libraries, tools, and domains. They are managed by pixi-skills and can be installed into any pixi project.
For more background on why distributing agent skills through package managers makes sense, check out the blog post Managing Agent Skills with Your Package Manager.
| Skill | Package | Description |
|---|---|---|
| conda-forge | agent-skill-conda-forge |
conda-forge packaging operations |
| Matplotlib Data Visualization | agent-skill-matplotlib-data-visualization |
Chart design and data storytelling guidelines |
| Presentation Design | agent-skill-presentation-design |
Slide design and storytelling guidelines |
| Polars | agent-skill-polars |
DataFrame library for fast data manipulation |
| rattler-build | agent-skill-rattler-build |
Build conda packages with rattler-build |
| SQLAlchemy | agent-skill-sqlalchemy |
Python SQL toolkit and ORM |
| Google Workspace CLI | 92 packages | Google Workspace services (Gmail, Calendar, Drive, etc.) |
| Typst | agent-skill-typst |
Modern markup-based typesetting system |
The recommended way to use agent skills is through pixi-skills. Install it with:
pixi exec pixi-skills manageThis will interactively guide you through adding skills to your project.
Add the skill-forge channel and the desired skill packages to your pixi.toml:
[workspace]
channels = ["conda-forge", "https://prefix.dev/skill-forge"]
platforms = ["linux-64", "osx-arm64", "win-64"]
[dependencies]
polars = ">=1,<2"
[feature.dev.dependencies]
agent-skill-polars = "*"