Encrypt/decrypt local files, redact sensitive information in documents, and validate password strength when handling private data or preparing files for sharing.
60
70%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./scientific-skills/Other/file-security-toolkit/SKILL.mdscripts/file_security.py is the most direct path to complete the request.file-security-toolkit package behavior rather than a generic answer.scripts/file_security.py.Python: 3.10+. Repository baseline for current packaged skills.Third-party packages: not explicitly version-pinned in this skill package. Add pinned versions if this skill needs stricter environment control.cd "20260316/scientific-skills/Others/file-security-toolkit"
python -m py_compile scripts/file_security.py
python scripts/file_security.py --helpExample run plan:
CONFIG block or documented parameters if the script uses fixed settings.python scripts/file_security.py with the validated inputs.scripts/file_security.py.Use this skill when you need to:
zip-encrypt, zip-decrypt).file-encrypt, file-decrypt).redact):
txt, md, csv, docx, pptxcheck-password) based on simple composition rules.Install dependencies with:
python -m pip install pyzipper cryptography python-docx python-pptx pillowPython version is not specified in the source document. Ensure your environment supports the listed packages.
Entry point script:
python scripts/file_security.py --helppython scripts/file_security.py check-password --password "Abcdefg1"python scripts/file_security.py file-encrypt \
--input sample.txt \
--output sample.txt.enc \
--password "Abcdefg1"
python scripts/file_security.py file-decrypt \
--input sample.txt.enc \
--output sample_out.txt \
--password "Abcdefg1"python scripts/file_security.py zip-encrypt \
--input ./my_folder \
--output ./my_folder.zip \
--password "Abcdefg1"
python scripts/file_security.py zip-decrypt \
--input ./my_folder.zip \
--output ./my_folder_out \
--password "Abcdefg1"python scripts/file_security.py redact \
--input ./docs/input.docx \
--output ./docs/input.redacted.docxzip-encrypt / zip-decrypt
file-encrypt / file-decrypt
redact
txt, md, csv, docx, pptx.check-password
63c61d3
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.