Metadata-Version: 2.4
Name: skget
Version: 0.5.0
Summary: A CLI to add skills to your coding agents
Project-URL: Repository, https://github.com/czheo/skget
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.1.7
Requires-Dist: python-frontmatter>=1.1.0
Requires-Dist: tabulate>=0.9.0
Requires-Dist: textual>=7.3.0
Dynamic: license-file

# Skget

A CLI to add skills to your coding agents. Supported:

- Claude Code
- OpenAI Codex CLI
- More TBD

![skget](skget-screenshot.png)

## Quickstart

```bash
pip install skget
```

Just type `skget` in your terminal.

## Settings

Skget reads settings from `~/.config/skget/settings.json`.
You can add your own sources of skills. e.g. a local directory or a GitHub repo.

Example:

```json
{
  "paths": {
    "skills": [
      "/path/to/local/skills",
      "https://github.com/anthropics/skills/tree/main/skills",
    ]
  }
}
```

NOTE: the git hub repo URL should be the root path containing the skill folders.
