From shakespeare
Inflate a memory file (CLAUDE.md, AGENTS.md, notes, todo lists) from plain English into ornate Early Modern English prose, while keeping every code block, URL, path, command, identifier, heading, date, and table untouched. A human-readable backup is written to `<file>.original.md`. Trigger: /shakespeare-expand <filepath> or "expand memory file".
How this skill is triggered — by the user, by Claude, or both
Slash command
/shakespeare:expandThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Inflate a single memory file in-place. Preserve every technical element
Inflate a single memory file in-place. Preserve every technical element exactly. Flourish only the prose.
.original.md (they are already backups).<file>.original.md already exists, warn the user and ask whether to
overwrite the backup. Do not proceed without explicit approval.<file>.original.md.mv <file>.original.md <file>"....), indented code blocks, inline code (backticks).--- fences.#, ##, ...). Only the heading line is protected.{{ }}, ${ }, <...> angle brackets.Prose paragraphs between headings, list items that are sentences (not
command lists), and plain-English body text. Apply the rules from
skills/shakespeare/SKILL.md (level: full by default; honour a trailing
--level=<lite|full|bard|prose> argument if passed).
Input NOTES.md:
# Database pool
We reuse connections instead of opening a new one per request. This
avoids the TCP handshake and lets the server stay responsive under load.
See `src/db/pool.ts:17`.
After /shakespeare-expand NOTES.md:
# Database pool
Hark, gentle reader! We keep a ready stable of open connections, that
each request may borrow one at need rather than forge a new passage
through the TCP handshake's tedious ceremony. Thus doth our server
remain nimble, e'en when the load groweth heavy upon its shoulders.
See `src/db/pool.ts:17`.
(Note: the heading, the path, and the code span are untouched.)
npx claudepluginhub jorgenosberg/shakespeare --plugin shakespeareCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.