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.