skills/rhyme-analyzer/SKILL.md
Extract rhyme endings, check if texts rhyme, and detect rhyme schemes. Use when analyzing or preserving rhyme in lyrics translation or poetry.
npx skillsauth add guan404ming/blt-skills rhyme-analyzerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Analyze rhyme endings, check rhyme pairs, and detect rhyme schemes.
python skills/rhyme-analyzer/scripts/rhyme_analysis.py "<text>" "<language>"
python skills/rhyme-analyzer/scripts/rhyme_analysis.py "<text1>" "<language>" "<text2>"
from rhyme_analysis import detect_rhyme_scheme
scheme = detect_rhyme_scheme(["line1", "line2", "line3", "line4"], "en-us")
# e.g., "ABAB"
testing
Analyze word-level syllable distribution in text lines. Get syllable patterns, compare against targets, and score pattern quality. Use when matching word rhythm in lyrics translation.
testing
Count syllables in text for any supported language. Use when checking syllable counts for lyrics translation, poetry, or rhythm analysis.
testing
Convert text to IPA (International Phonetic Alphabet) and calculate phonetic similarity between texts. Use when analyzing pronunciation, comparing sounds across languages, or checking phonetic distance.
testing
Verify translated lyrics against musical constraints including syllable counts, rhyme scheme, and syllable patterns. Use after translating lyrics to check quality.