19 lines
764 B
Markdown
19 lines
764 B
Markdown
# Bundle Zip
|
|
|
|
Source Skill for creating zip archives from explicit file lists while preserving source-relative paths.
|
|
|
|
The canonical entry point is `SKILL.md`; the deterministic packager is in `scripts/bundle_zip.py`.
|
|
|
|
Run Python code through the shared repository environment:
|
|
|
|
```powershell
|
|
conda run -n skills-vault python .\scripts\bundle_zip.py --file-list "C:\path\files.txt" --relative-root-marker repo-name --output "C:\path\bundle.zip" --verify --json
|
|
```
|
|
|
|
Validate from the repository root with the same environment:
|
|
|
|
```powershell
|
|
conda run -n skills-vault python -B -m unittest discover -s skills\bundle-zip\tests -v
|
|
conda run -n skills-vault python -B C:\Users\wangq\.codex\skills\.system\skill-creator\scripts\quick_validate.py skills\bundle-zip
|
|
```
|