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.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin novelty-text-editorThis skill uses the workspace's default tool permissions.
Apply chaotic capitalisation to text. Two modes:
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
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.