Metadata-Version: 2.4
Name: agent-skill-manager-cli
Version: 0.1.0
Summary: A package manager for AI agent skills - install, update, and manage agent skill packages
Author: PCHANUL
License: MIT
Project-URL: Homepage, https://github.com/PCHANUL/Skills
Project-URL: Repository, https://github.com/PCHANUL/Skills
Project-URL: Issues, https://github.com/PCHANUL/Skills/issues
Keywords: ai,agent,skills,package-manager,llm,automation
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.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: pyyaml>=6.0

# Agent Skill Manager

A package manager for AI agent skills - install, update, and manage agent skill packages.

## Installation

```bash
pip install agent-skill-manager
```

## Usage

### Install a Skill Package

```bash
# Install globally (to ~/.skills)
skill-manager install https://github.com/PCHANUL/Skills.git

# Install locally (to ./.skills in current project)
skill-manager install https://github.com/PCHANUL/Skills.git --local
```

### Update Skills

```bash
# Update all installed skills
skill-manager update

# Update a specific skill
skill-manager update Skills
```

### List Installed Skills

```bash
skill-manager list
```

### Remove a Skill

```bash
skill-manager remove Skills
```

## Storage Locations

- **Global**: `~/.skills/` (shared across all projects)
- **Local**: `./.skills/` (project-specific)

## What are Agent Skills?

Agent skills are reusable instruction sets and helper scripts for AI assistants. Each skill contains:

- `SKILL.md`: Instructions on how to perform a specific task
- `scripts/`: Helper scripts that automate parts of the workflow

## License

MIT
