Agent skill · AI & Agents

detect-trends

Detect trending topics across multiple articles by analyzing entity co-occurrence and cross-source mentions. Uses memory search to find recent articles and LLM analysis to identify emerging trends. '

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill detect-trends --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Version: 2.0.0
Path: skills/analysis/detect-trends/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

# Detect Trends Detect trending topics across multiple analyzed articles. ## When to Use Use this skill when you need to: - Identify topics mentioned across multiple sources - Detect emerging trends in AI news - Track topic momentum over time - Prioritize topics for digest composition ## Instructions ### Step 1: Search for Recent Analyses Use `memory/search` to find recent article analyses: - namespace: "news/analyses" - query: "recent AI news analysis" - limit: 100 (or appropriate window) This returns articles with their extracted entities and categories. ### Step 2: Extract Entity Mentions From the search results, collect all entities and track: - Which articles mention each entity - How many times each entity appears - Which sources mention each entity **Entity normalization:** - Lowercase and strip whitespace - Handle variations (e.g., "GPT-4" = "GPT4" = "gpt-4") ### Step 3: Calculate Trend Scores For each entity, calculate a trend score: **Score formula:** ``` score = mention_count * source_diversity_bonus source_diversity_bonus = 1.0 + (unique_sources - 1) * 0.2 ``` **Thresholds for trend qualification:** - Minimum 2 mentions - Minimum 2 different articles ### Step 4: Analyze

What's inside
Steps it walks through
  1. When to Use
  2. Instructions
  3. Step 1: Search for Recent Analyses
  4. Step 2: Extract Entity Mentions
  5. Step 3: Calculate Trend Scores
  6. Step 4: Analyze with LLM
  7. Step 5: Store Trends in Memory
  8. Step 6: Link Trends to Articles
  9. Step 7: Return Results
  10. Tool Usage Guidance
  11. memory/search
  12. usellm
  13. memory/add
  14. memory/link
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the detect-trends skill do?

Detect trending topics across multiple articles by analyzing entity co-occurrence and cross-source mentions. Uses memory search to find recent articles and LLM analysis to identify emerging trends. '

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill detect-trends --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