encrypt
Encode or decode a short ASCII message with the ROT13 example scripts, using either bash or PowerShell.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Encode or decode a short ASCII message with the ROT13 example scripts, using either bash or PowerShell.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Write a short three-line haiku when the user asks for a haiku or a tiny poem.
Turn an existing plan or review into a short verification checklist when the user explicitly asks for one.
Capture verified learnings after completing one or more repository samples or a learning session. Use when the user asks to update AGENTS.md, document sample progress, preserve session decisions, maintain the docs course, record user preferences, or improve future sessions from what was just learned.
Write a short three-line haiku when the user asks for a haiku or a tiny poem.
| name | encrypt |
| description | Encode or decode a short ASCII message with the ROT13 example scripts, using either bash or PowerShell. |
ROT13 is a reversible letter substitution, not real encryption. Applying it a second time decodes the message.
When the user asks to encode or decode with ROT13, use one script and replace the example message with the user's text:
# Bash
bash ./skills/encrypt/scripts/rot13.sh 'Hello'
# PowerShell
pwsh -File ./skills/encrypt/scripts/rot13.ps1 -Message 'Hello'
Return the script output and remind the user that running the same script again restores the original message. Do not implement ROT13 inline: use the scripts.