Metadata-Version: 2.4
Name: skget
Version: 0.7.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.

![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",
    ]
  },
  "agents": {
    "codex": {"base_path": "~/.codex", "local_base_path": ".codex"},
    "opencode": {"base_path": "~/.config/opencode", "local_base_path": ".opencode"}
  }
}
```

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

## Update remote skills repos

If your `paths.skills` includes git URLs, run:

```bash
skget update
```

This pulls the configured remote repos into your local skget cache.
