SkillAgentSearch skills...

Lockit

Encrypt files and folders from the command line without breaking a sweat ๐Ÿ”’๐Ÿ“๐Ÿ“„

Install / Use

/learn @Zwork101/Lockit
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

lockit

Encrypt files and folders from the command line without breaking a sweat ๐Ÿ”’๐Ÿ“๐Ÿ“„

Lockit is a very simple program for a very simple purpose. Encrypt files / folders with any password. Let me show you.

$ touch hello.txt
$ echo "Hello World" > hello.txt
$ lock hello.txt
Password: MyPassword
Confirm Password: MyPassword
$ ls
hello.txt.lck
$ cat hello.txt.lck
ๅค’โ–’Vโ–’โ–’6โ–’โ–’โ–’.โ–’โ–’
$ lock hello.txt.lck
Password: MyPassword
$ ls
hello.txt
$ cat hello.txt
Hello World

Keep in mind, I used a file. You can do the same with a folder with all the same commands.

$ mkdir hello
$ cd hello
$ touch test.txt
$ echo "Works with directories!" > test.txt
$ cd ..
$ lock hello
Password: Secure Folder
Confirm Password: Secure Folder
$ ls
hello.lck
$ lock hello.lck
Password: Secure Folder
$ cd hello
$ cat test.txt
Works with directories!

Installing

How do you think?

$ pip install lockit  # Do this on windows if you only have 1 python installed
$ pip3 install lockit  # Do this on linux
$ py -version_here -m pip install lockit  # Python version specific installation for windows

TODO:

  • Hide passwords (Multi-platform)

  • Better cli

  • Decaprecate cache system

  • Check if password worked

All suggestions and pulls are welcome!

Related Skills

View on GitHub
GitHub Stars10
CategoryDevelopment
Updated1mo ago
Forks1

Languages

Python

Security Score

95/100

Audited on Feb 22, 2026

No findings