Add Windows installation instructions for skills-ref (#25)

Fixes #24

- Add platform-specific headers (macOS/Linux vs Windows)
- Add PowerShell activation: .venv\Scripts\Activate.ps1
- Add Command Prompt activation: .venv\Scripts\activate.bat
- Cover both pip and uv installation methods
This commit is contained in:
Skill Creator
2026-01-09 20:15:44 +03:00
committed by GitHub
Unverified
parent af48a3a945
commit 7f094a2f79
+28 -1
View File
@@ -6,6 +6,8 @@ Reference library for Agent Skills.
## Installation
### macOS / Linux
Using pip:
```bash
@@ -21,7 +23,32 @@ uv sync
source .venv/bin/activate
```
After installation, the `skills-ref` executable will be available on your `$PATH` (within the activated virtual environment).
### Windows
Using pip (PowerShell):
```powershell
python -m venv .venv
.venv\Scripts\Activate.ps1
pip install -e .
```
Using pip (Command Prompt):
```cmd
python -m venv .venv
.venv\Scripts\activate.bat
pip install -e .
```
Or using [uv](https://docs.astral.sh/uv/):
```powershell
uv sync
.venv\Scripts\Activate.ps1
```
After installation, the `skills-ref` executable will be available on your `PATH` (within the activated virtual environment).
## Usage