Metadata-Version: 2.4
Name: skillpm
Version: 0.1.0
Summary: Agent skill manager for the Agent Skills standard (agentskills.io)
Project-URL: Homepage, https://github.com/nc9/agentskill
Project-URL: Repository, https://github.com/nc9/agentskill
Project-URL: Issues, https://github.com/nc9/agentskill/issues
Author-email: Nik Cubrilovic <git@nikcub.me>
License: MIT
License-File: LICENSE
Keywords: agent,ai,claude,cli,codex,cursor,skills
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.11
Requires-Dist: httpx>=0.27.0
Requires-Dist: pydantic>=2.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: rich>=13.0.0
Requires-Dist: typer>=0.12.0
Description-Content-Type: text/markdown

# agentskill

Agent skill manager for the [Agent Skills standard](https://agentskills.io).

Install, update, remove, and list agent skills across Claude Code, Cursor, Codex, and other AI coding agents.

## Install

```bash
pip install agentskill
```

## Usage

```bash
agentskill install owner/repo           # install from GitHub
agentskill install ./local/skill        # install from local path
agentskill list                         # list installed skills
agentskill update skill-name            # update a skill
agentskill remove skill-name            # remove a skill
agentskill info skill-name              # show skill details
```

## Library

```python
from agentskill import installSkill, listSkills, removeSkill

installSkill("owner/repo/skill-name")
skills = listSkills()
removeSkill("skill-name")
```

## License

MIT
