From pm-live
Look up word definitions, pronunciation, etymology and synonyms with zero API keys — the Free Dictionary API via curl, with honest handling of words it doesn't know. Use when asked define a word, how do you pronounce this, what's the origin of a word, or synonyms for something. Produces the definition set organized by part of speech, IPA pronunciation with audio link, and the rerunnable command — with the model's own knowledge clearly separated from the fetched source.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pm-live:dictionary-lookupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A dictionary lookup sounds like something a language model shouldn't need — until the question is "is this *actually* a word," "what's the IPA," or "give me a citable source," where fetched beats recalled. The Free Dictionary API answers over keyless HTTPS with definitions, phonetics, audio, and origins. This skill fetches, formats by part of speech, and keeps a clean line between what the sour...
A dictionary lookup sounds like something a language model shouldn't need — until the question is "is this actually a word," "what's the IPA," or "give me a citable source," where fetched beats recalled. The Free Dictionary API answers over keyless HTTPS with definitions, phonetics, audio, and origins. This skill fetches, formats by part of speech, and keeps a clean line between what the source says and what the model adds — because a dictionary answer's whole value is knowing which is which.
Ask for these if not provided:
curl -s "https://api.dictionaryapi.dev/api/v2/entries/en/serendipity" → JSON array: phonetic/phonetics[] (IPA + .audio mp3 links), meanings[] grouped by partOfSpeech, each with definitions[] (with example sometimes), synonyms, antonyms, plus origin on some entries.[part of speech] — [the leading sense, with example] [Other senses, compressed · other parts of speech]
Origin: [when present in source or asked — labeled if model-supplied] Synonyms: [source list] [· additional (model-suggested): …]
Source: Free Dictionary API · rerun: [exact curl]
[On a 404: "not in this dictionary — tried '[lemma]'; the definition below is model knowledge, not a fetched source"]
npx claudepluginhub mohitagw15856/pm-claude-skills --plugin pm-liveGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.