From novelty-text-editor
rEwRiTe TeXt In ChAoS CaSe — alternating or randomised capitalisation. Pure mechanical transform, no LLM call needed. Use when the user wants the SpongeBob / mocking-text effect on a string, paragraph, or file.
How this skill is triggered — by the user, by Claude, or both
Slash command
/novelty-text-editor:to-chaos-caseThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Apply chaotic capitalisation to text. Two modes:
Apply chaotic capitalisation to text. Two modes:
alternating (default) — flip case on every alphabetic character: hello world → hElLo WoRlD.random — each letter independently 50/50 upper or lower.Non-alphabetic characters pass through unchanged.
alternating (default) or random.random mode only) — integer for reproducible output.Do this in code, not via the model — it's a deterministic string operation.
import sys, random
def alternating(s):
out, flip = [], False
for c in s:
if c.isalpha():
out.append(c.upper() if flip else c.lower())
flip = not flip
else:
out.append(c)
return "".join(out)
def randomised(s, seed=None):
rng = random.Random(seed)
return "".join(c.upper() if c.isalpha() and rng.random() < 0.5 else c.lower() if c.isalpha() else c for c in s)
Print the transformed text to stdout. With --in-place, overwrite the source file.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin novelty-text-editorCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.