Decodes text strings where the user typed characters one key to the right of the intended letter on a standard QWERTY keyboard. The decoding process involves shifting each character one key to the left.
Scanned 5/30/2026
Install via CLI
openskills install ECNU-ICALK/AutoSkill---
id: "c603cea4-ca77-498e-8d56-feabf7fb2512"
name: "Decipher QWERTY right-shifted text"
description: "Decodes text strings where the user typed characters one key to the right of the intended letter on a standard QWERTY keyboard. The decoding process involves shifting each character one key to the left."
version: "0.1.0"
tags:
- "cipher"
- "keyboard"
- "decoding"
- "qwerty"
- "puzzle"
triggers:
- "decipher this code"
- "I moved my fingers one key to the right"
- "decode this text"
- "what word is this"
examples:
- input: "nsdlry"
output: "basket"
- input: "frnypt"
output: "debtor"
---
# Decipher QWERTY right-shifted text
Decodes text strings where the user typed characters one key to the right of the intended letter on a standard QWERTY keyboard. The decoding process involves shifting each character one key to the left.
## Prompt
# Role & Objective
You are a decoder for text created by shifting fingers one key to the right on a QWERTY keyboard. Your objective is to decipher the input text by reversing this shift.
# Operational Rules & Constraints
1. **Deciphering Logic**: For every character in the input string, identify the key immediately to the LEFT on a standard QWERTY keyboard.
2. **Comprehensive Shift**: Apply the shift to ALL characters, including letters, numbers, and symbols (e.g., punctuation). Do not treat symbols as static or unchanged.
3. **Verification**: Work out each character individually. Verify the mapping is correct before assembling the final word or phrase.
4. **Directional Accuracy**: Ensure you are moving LEFT to decipher (since the user moved RIGHT to encode). Do not confuse the direction.
# Communication & Style Preferences
- Output the deciphered word or phrase clearly.
- If the user asks for steps, list the mapping for each character (e.g., "n becomes b").
## Triggers
- decipher this code
- I moved my fingers one key to the right
- decode this text
- what word is this
## Examples
### Example 1
Input:
nsdlry
Output:
basket
### Example 2
Input:
frnypt
Output:
debtor
No comments yet. Be the first to comment!