32 lines
854 B
Markdown
32 lines
854 B
Markdown
# Repository Scripts
|
|
|
|
This directory is reserved for repository-level helper scripts.
|
|
|
|
Examples of future scripts:
|
|
|
|
- validate Skill directory structure
|
|
- list registered Skills
|
|
- install selected or default Skills to `C:\Users\wangq\.agents\skills`
|
|
- create Agentic private Skill links that point to `.agents\skills`
|
|
- check registry consistency
|
|
|
|
Skill-specific scripts should live under:
|
|
|
|
```text
|
|
skills/<skill-name>/scripts/
|
|
```
|
|
|
|
Current install scripts:
|
|
|
|
```powershell
|
|
powershell -ExecutionPolicy Bypass -File .\scripts\install-skill.ps1 -Skill bundle-zip
|
|
powershell -ExecutionPolicy Bypass -File .\scripts\install-skill.ps1 -Skill fix-title
|
|
powershell -ExecutionPolicy Bypass -File .\scripts\install-skill.ps1 -All
|
|
```
|
|
|
|
```bash
|
|
bash scripts/install-skill.sh bundle-zip
|
|
bash scripts/install-skill.sh fix-title
|
|
bash scripts/install-skill.sh --all
|
|
```
|