Add skill copy script
Spellcheck / spellcheck (push) Successful in 9s

This commit is contained in:
Space-Banane
2026-06-03 14:22:19 +02:00
parent 938a5a91a4
commit 9b78288731
6 changed files with 209 additions and 5 deletions
+44
View File
@@ -0,0 +1,44 @@
# Copy Script
This folder contains the Python installer for the `death-is-soon-wrap-up` skill packages.
## What It Does
The script copies each ecosystem package into the matching skills directory in your home folder:
- `codex/death-is-soon-wrap-up` -> `~/.codex/skills/death-is-soon-wrap-up`
- `claude/death-is-soon-wrap-up` -> `~/.claude/skills/death-is-soon-wrap-up`
- `openclaw/death-is-soon-wrap-up` -> `~/.openclaw/skills/death-is-soon-wrap-up`
## Interactive Mode
Run the script with no flags in a terminal to pick ecosystems interactively.
It will:
- show the available ecosystems,
- let you choose one or more,
- and ask before overwriting existing installs.
## CLI Mode
Use flags when you want a non-interactive run.
Examples:
```bash
python copy-script/install-skills.py --all
python copy-script/install-skills.py --ecosystems codex openclaw
python copy-script/install-skills.py --all --dry-run
python copy-script/install-skills.py --all --force
```
## Options
- `--all`: install into every supported ecosystem
- `--ecosystems`: install into selected ecosystems only
- `--repo-root`: point the script at a different repository root
- `--home`: point the script at a different home directory
- `--dry-run`: print actions without copying files
- `--force`: skip overwrite confirmation