What problem does it solve? Secret files like .env or custom *-env.sh credentials files risk either leaking into git as plaintext or never being encrypted at all. This Skill ensures every new credentials file in a repository using the .gpgrc/GPG workflow is properly registered in both .gpgrc (with a .gpg suffix) and .gitignore (plaintext path), so encryption scripts like bash-git/encrypt.sh can find and protect it. ## Core Features & Use Cases - Automatic .gpgrc registration: Appends the repo-relative path with a .gpg suffix to .gpgrc, creating the file if it does not exist yet. - .gitignore protection: Adds the plaintext path to .gitignore so unencrypted secrets never get committed. - Duplicate-safe edits: Uses grep -qxF checks before appending, never rewriting existing entries in either file. - Use Case: You create a new bash-scripts/set-smtp-to-wp-config-env.sh credentials file. The Skill adds bash-scripts/set-smtp-to-wp-config-env.sh.gpg to .gpgrc and the plaintext path to .gitignore, so the next git-push encrypts it automatically. ## Quick Start Register the newly created .env file in this repo's .gpgrc and .gitignore so it gets encrypted on the next push.