# Install — load SKILLS-GROK in Grok

## Prerequisites

- Grok CLI / TUI installed and authenticated
- Git
- A clone of this repository

## 1. Clone

```bash
git clone https://github.com/leonardeco/SKILLS-GROK.git
```

Example Windows path used in this environment:

```text
C:\Users\MI PC\Documents\PROYECTOS\SKILLS-GROK
```

## 2. Point Grok at `skills/`

Edit `~/.grok/config.toml` (Windows: `C:\Users\<you>\.grok\config.toml`):

```toml
[skills]
paths = ["C:/Users/MI PC/Documents/PROYECTOS/SKILLS-GROK/skills"]
```

Notes:

- Point to the **`skills`** directory, not the repo root.
- Use forward slashes even on Windows inside TOML.
- Multiple paths are allowed; higher-priority locations can override by skill name (see Grok docs).

## 3. Verify

In Grok:

```text
/skills
```

You should see `full-dev-team` (and any others). Invoke:

```text
/full-dev-team
```

Skills auto-reload when files change on disk; if missing, restart Grok.

## 4. Keep updated

```bash
cd /path/to/SKILLS-GROK
git pull
```

## Alternative installs

### Project-local copy

Copy a skill into an app repo (only if you intentionally want it there):

```text
<app>/.grok/skills/<skill-name>/
```

Prefer the central library path for shared skills so product repos stay clean.

### User-global copy

```text
~/.grok/skills/<skill-name>/
```

Useful for a single machine without config `paths`, but harder to version across devices than this git repo.

## Uninstall

Remove the path entry from `config.toml`, or delete the local clone.  
No system services are installed by this repository.
