Metadata-Version: 2.4
Name: skore-cli
Version: 0.0.1
Summary: Command-line interface for skore. Discover, install and manage agent skills from the command line.
Project-URL: Homepage, https://probabl.ai
Project-URL: Repository, https://github.com/probabl-ai/skore
Project-URL: Issues, https://github.com/probabl-ai/skore/issues
Maintainer-email: skore developers <skore@signal.probabl.ai>
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Requires-Python: >=3.11
Requires-Dist: click
Requires-Dist: rich-click>=1.9
Requires-Dist: rich>=14.2
Requires-Dist: textual
Provides-Extra: test
Requires-Dist: pre-commit; extra == 'test'
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-asyncio; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'
Requires-Dist: pytest-order; extra == 'test'
Requires-Dist: pytest-randomly; extra == 'test'
Requires-Dist: pytest-xdist; extra == 'test'
Requires-Dist: xdoctest; extra == 'test'
Description-Content-Type: text/markdown

# skore-cli

Command-line interface for [skore](https://github.com/probabl-ai/skore).

`skore-cli` lets you discover, install and manage [Agent
Skills](https://agentskills.io) for AI coding agents (Claude Code, Cursor,
Codex, Gemini, and the cross-client `.agents/` convention) directly from your
terminal.

## Installation

```bash
pip install skore-cli
```

## Usage

The package installs a `skore` command exposing a `skills` group:

```bash
skore skills find          # search the catalog interactively
skore skills list          # list installed skills
skore skills install       # install skills (interactive or by id)
skore skills update        # update installed skills
skore skills remove        # remove installed skills
```

Skills are installed into the current project by default; pass `--global`/`-g`
to target the user directory, and `--agent`/`-a` to select specific agents.
