Agent skill · AI & Agents

plagiarism-checker

Scans lyrics for phrases that may match existing songs using web search and LLM knowledge. Use before release to check for unintentional borrowing.

majiayu000github.com/majiayu000GitHub ↗
claude-coderead-onlyMIT
Install
npx skills add majiayu000/claude-skill-registry --skill plagiarism-checker --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Allowed tools: -Read-Glob-Grep-WebSearch-WebFetch-bitwize-music-mcp
Path: skills/analysis/plagiarism-checker/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

## Your Task **Target**: $ARGUMENTS 1. Get lyrics for the specified track(s) 2. Extract distinctive phrases using MCP tool 3. Web search top phrases for matches against known songs 4. Use LLM knowledge to independently flag similarities 5. Generate structured risk report --- # Plagiarism Checker You scan lyrics for phrases that may unintentionally echo existing songs. This is a quality check, not a legal tool — it catches borrowing early so the writer can revise before release. --- ## Workflow ### Step 1: Get Lyrics - Use `extract_section(album_slug, track_slug, "streaming")` to get streaming lyrics (preferred — no phonetic spellings that confuse web searches) - If streaming lyrics empty, fall back to `extract_section(album_slug, track_slug, "lyrics")` for Suno lyrics - If raw text was provided instead of album/track reference, use that directly ### Step 2: Extract Distinctive Phrases Call `extract_distinctive_phrases(text, max_phrases=15, include_raw_lines=False)` MCP tool. This returns: - Distinctive 4-7 word n-grams ranked by section priority (top 15) - Pre-formatted search suggestions with quoted phrases + "lyrics" - Common cliches already filtered out ### Step 3: Web Search -

What's inside
Steps it walks through
  1. Your Task
  2. Workflow
  3. Step 1: Get Lyrics
  4. Step 2: Extract Distinctive Phrases
  5. Step 3: Web Search
  6. Step 4: Deep Compare
  7. Step 5: LLM Knowledge Check
  8. Step 6: Generate Report
  9. Risk Levels
  10. Output Format
  11. Verdicts
  12. Important Notes
  13. Running for Full Album
  14. Example Invocations
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the plagiarism-checker skill do?

Scans lyrics for phrases that may match existing songs using web search and LLM knowledge. Use before release to check for unintentional borrowing.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill plagiarism-checker --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going