install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/file-archiver" ~/.claude/skills/majiayu000-claude-skill-registry-file-archiver && rm -rf "$T"
manifest:
skills/data/file-archiver/SKILL.mdsource content
File Archiver Tool
Description
Create and extract compressed archives (ZIP, TAR, GZIP) with optional password protection.
Trigger
command/archive- User requests file compression
- User needs to extract archives
Usage
# Create ZIP archive python scripts/file_archiver.py create --input folder/ --output archive.zip # Extract archive python scripts/file_archiver.py extract --input archive.zip --output extracted/ # Create with password python scripts/file_archiver.py create --input folder/ --output secure.zip --password secret123 # List archive contents python scripts/file_archiver.py list --input archive.zip
Tags
zip, archive, compress, extract, tar
Compatibility
- Codex: ✅
- Claude Code: ✅