Agent skill
filter-ai-relevant
DEPRECATED: This skill has been replaced by the analyze-article skill which provides more accurate AI-relevance filtering through LLM analysis rather than simple keyword matching.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/filter-ai-relevant
Metadata
Additional technical details for this skill
- domain
- news
- status
- deprecated
- category
- collection
- confidence
- 0
- mcp servers
-
[]
- requires approval
- NO
SKILL.md
Filter AI-Relevant Articles (DEPRECATED)
⚠️ DEPRECATED: This skill has been deprecated as of v2.0.0.
AI relevance filtering is now handled by the
analyze-articleskill, which uses LLM analysis to accurately categorize and filter articles rather than simple keyword matching.
Migration Guide
Before (v1.0)
Filtering used keyword matching:
fetch-rss-feeds- Collect articlesfilter-ai-relevant- Keyword-based filteringanalyze-article- LLM analysis
After (v2.0)
LLM analysis handles relevance determination:
fetch-rss-feeds- Collect articles (with dedup)analyze-article- LLM categorizes AND filters for relevance
How to Migrate
If you were using filter-ai-relevant, update your workflow to rely on analyze-article for relevance filtering.
The new approach:
analyze-articlecategorizes articles as: research, business, product, security, policy, general- Articles can be filtered by category after analysis
- LLM provides more nuanced relevance determination than keywords
Replacement Skill
| Old Approach | New Approach |
|---|---|
| Keyword matching | LLM-based analysis |
| Binary AI/not-AI | Category classification |
| Hardcoded keyword list | Context-aware analysis |
| False positives on "meta" | Semantic understanding |
Why Deprecated
- Better accuracy: LLM understands context, not just keywords
- Richer output: Categories instead of binary relevance
- No maintenance: No keyword list to maintain
- Semantic matching: Understands synonyms and related concepts
Example Comparison
Keyword approach (old):
- "Meta releases new AI model" → filtered (contains "AI")
- "Facebook updates metadata API" → filtered (contains "meta")
- "Novel transformer architecture for proteins" → missed (no exact keyword)
LLM approach (new):
- "Meta releases new AI model" → category: product, AI-relevant
- "Facebook updates metadata API" → category: general, not AI-focused
- "Novel transformer architecture for proteins" → category: research, AI-relevant
See Also
- analyze-article - v2.0 with LLM categorization
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?