Generate creative code names and encode/decode secret messages using classic and sophisticated ciphers. Blends nostalgic decoder ring fun with modern cryptographic techniques. Includes Caesar, Vigenère, Polybius, Rail Fence, and hybrid methods. Provides keys for secure message sharing between trusted parties.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install secretcodex或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install secretcodex⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/secretcodex/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: secretcodex description: Generate creative code names and encode/decode secret messages using classic and sophisticated ciphers. Blends nostalgic decoder ring fun with modern cryptographic techniques. Includes Caesar, Vigenère, Polybius, Rail Fence, and hybrid methods. Provides keys for secure message sharing between trusted parties. metadata: openclaw: emoji: "🔐" version: "1.0.0" author: "AM" tags: ["cryptography", "cipher", "encryption", "decoding", "secret-messages", "code-names", "security"] requires: bins: [] env: [] config: [] ---
SecretCodex brings back the magic of decoder rings from your childhood cereal boxes, but with the sophistication of modern cryptography. Generate creative code names for operations and team members, encode secret messages using multiple cipher methods, and decode messages from trusted contacts—all with keys that you control and share manually with intended recipients.
Perfect for:
Security through obscurity is weak. Security through strong ciphers + key management is powerful.
SecretCodex teaches you both:
Before you encode messages, you need great code names! SecretCodex generates creative, memorable names for operations, projects, or individuals.
Format: [Adjective] + [Noun]
Examples:
Generation Strategy:
Format: Single word or [Title] + [Element]
Examples:
Generation Strategy:
Format: Geographic-sounding but fictional
Examples:
User provides:
SecretCodex generates:
Example:
User: "Generate a code name for our Q1 product launch project. Tone: Exciting but professional."
SecretCodex:
CODE NAME OPTIONS:
1. Operation Silver Dawn
- Silver: Premium, valuable, reflective
- Dawn: New beginning, fresh start
- Phonetic: SILVER DON
- Use case: "Silver Dawn is go for launch"
2. Project Velocity Edge
- Velocity: Speed, momentum, progress
- Edge: Cutting-edge, advantage, boundary
- Phonetic: vuh-LOSS-ih-tee EDJ
3. Initiative Catalyst Prime
- Catalyst: Trigger change, accelerate
- Prime: First-class, optimal, ready
4. Operation Horizon Shift
- Horizon: Future, vision, expansion
- Shift: Change, transformation
5. Project Apex Launch
- Apex: Peak, highest point, summit
- Launch: Beginning, deployment
Recommendation: "Operation Silver Dawn" -
Professional, aspirational, easy to remember and say.
How it works: Shift each letter forward or backward in the alphabet by a fixed number.
Key: Shift amount (1-25)
Example:
Plaintext: MEET ME AT NOON
Key: Shift 3
Ciphertext: PHHW PH DW QRRQ
M → P (shift 3)
E → H (shift 3)
E → H (shift 3)
T → W (shift 3)
Decoding: Shift backward by the same amount.
Strength: ⭐☆☆☆☆ (Very weak - only 25 possible keys) Best for: Kids, quick messages, nostalgia
---
How it works: Special case of Caesar cipher with shift of 13. Encoding = Decoding (symmetric).
Key: None needed (always shift 13)
Example:
Plaintext: SECRET MESSAGE
Ciphertext: FRPERG ZRFFNTR
S → F (shift 13)
E → R (shift 13)
...
Strength: ⭐☆☆☆☆ (Very weak - single fixed key) Best for: Quick obfuscation, forum spoilers, simple hiding
---
How it works: Replace A with Z, B with Y, C with X, etc. (reverse alphabet)
Key: None (fixed pattern)
Example:
Plaintext: HIDDEN
Ciphertext: SRWWVM
H → S (A=Z, B=Y, ... H=S)
I → R
D → W
D → W
E → V
N → M
Strength: ⭐☆☆☆☆ (Very weak - no key variation) Best for: Quick reversal, simple codes
---
How it works: Replace letters with geometric symbols based on grids.
Key: Grid arrangement (standard or custom)
Grid Pattern:
# Grid 1: # Grid 2:
A|B|C J|K|L
-+-+- -+-+-
D|E|F M|N|O
-+-+- -+-+-
G|H|I P|Q|R
# X-Grid 1: # X-Grid 2:
S T W X
X X
U V Y Z
Example:
Plaintext: HELLO
Symbols: [H][E][L][L][O]
H = bottom-left of first grid
E = middle of first grid
L = top-right of second grid
L = top-right of second grid
O = middle of second grid
Strength: ⭐⭐☆☆☆ (Weak - pattern recognition) Best for: Visual encoding, kids, scavenger hunts
---
How it works: Letters arranged in 5×5 grid (I/J combined). Each letter = row + column.
Key: Grid arrangement (can be scrambled)
Standard Grid:
1 2 3 4 5
1 A B C D E
2 F G H I/J K
3 L M N O P
4 Q R S T U
5 V W X Y Z
Example:
Plaintext: ATTACK
Ciphertext: 11 44 44 11 13 25
A = row 1, col 1 = 11
T = row 4, col 4 = 44
T = row 4, col 4 = 44
A = row 1, col 1 = 11
C = row 1, col 3 = 13
K = row 2, col 5 = 25
Strength: ⭐⭐☆☆☆ (Weak alone, strong when combined) Best for: Numeric encoding, combining with other methods
---
How it works: Like Caesar but the shift changes for each letter based on a keyword.
Key: Keyword or phrase (longer = stronger)
Example:
Plaintext: ATTACK AT DAWN
Key: SECRETSECRETSE
Ciphertext: SXVRGD SX HSAS
A + S = S (0+18 mod 26)
T + E = X (19+4 mod 26)
T + C = V (19+2 mod 26)
A + R = R (0+17 mod 26)
C + E = G (2+4 mod 26)
K + T = D (10+19 mod 26)
...
Vigenère Square (for reference):
A B C D E F ...
A | A B C D E F ...
B | B C D E F G ...
C | C D E F G H ...
... (26×26 grid)
Decoding: Use keyword to shift backward.
Strength: ⭐⭐⭐☆☆ (Moderate - strong if long keyword) Best for: Keyword-based secrecy, shared phrase keys
---
How it works: Write message in zigzag pattern across multiple rails, read off by rows.
Key: Number of rails (2-10)
Example with 3 rails:
Plaintext: THISISASECRET
...安装 SecretCodex 后,可以对 AI 说这些话来触发它
Help me get started with SecretCodex
Explains what SecretCodex does, walks through the setup, and runs a quick demo based on your current project
Use SecretCodex to generate creative code names and encode/decode secret messages usin...
Invokes SecretCodex with the right parameters and returns the result directly in the conversation
What can I do with SecretCodex in my finance & investment workflow?
Lists the top use cases for SecretCodex, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/secretcodex/ 目录(个人级,所有项目可用),或 .claude/skills/secretcodex/(项目级)。重启 AI 客户端后,用 /secretcodex 主动调用,或让 AI 根据上下文自动发现并使用。
SecretCodex 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
SecretCodex 可免费安装使用。请查阅仓库了解许可证信息。
Generate creative code names and encode/decode secret messages using classic and sophisticated ciphers. Blends nostalgic decoder ring fun with modern cryptographic techniques. Includes Caesar, Vigenère, Polybius, Rail Fence, and hybrid methods. Provides keys for secure message sharing between trusted parties.
SecretCodex 属于「Finance & Investment」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my finance & investment tasks using SecretCodex
Identifies repetitive steps in your workflow and sets up SecretCodex to handle them automatically