60 lines
1.1 KiB
Markdown
60 lines
1.1 KiB
Markdown
# Install fix-title
|
|
|
|
`fix-title` uses the repository-level `skills-vault` Conda environment.
|
|
|
|
## Prepare Environment
|
|
|
|
From the repository root:
|
|
|
|
```powershell
|
|
conda env create -f environment.yml
|
|
conda activate skills-vault
|
|
```
|
|
|
|
If the environment already exists:
|
|
|
|
```powershell
|
|
conda activate skills-vault
|
|
```
|
|
|
|
## Test
|
|
|
|
```powershell
|
|
conda run -n skills-vault python -B -m unittest discover -s skills\fix-title\tests -v
|
|
```
|
|
|
|
## Install To Public Skill Surface
|
|
|
|
PowerShell:
|
|
|
|
```powershell
|
|
powershell -ExecutionPolicy Bypass -File .\scripts\install-skill.ps1 -Skill fix-title
|
|
```
|
|
|
|
Replace an existing installed copy after backing it up:
|
|
|
|
```powershell
|
|
powershell -ExecutionPolicy Bypass -File .\scripts\install-skill.ps1 -Skill fix-title -Force
|
|
```
|
|
|
|
Git Bash / Linux / macOS:
|
|
|
|
```bash
|
|
bash scripts/install-skill.sh fix-title
|
|
bash scripts/install-skill.sh fix-title --force
|
|
```
|
|
|
|
## Optional Claude Link
|
|
|
|
PowerShell:
|
|
|
|
```powershell
|
|
powershell -ExecutionPolicy Bypass -File .\scripts\install-skill.ps1 -Skill fix-title -InstallClaudeLink
|
|
```
|
|
|
|
Git Bash / Linux / macOS:
|
|
|
|
```bash
|
|
bash scripts/install-skill.sh fix-title --install-claude-link
|
|
```
|