Content Filter Skill
Assess content for relevance to AI research intelligence gathering. Filter noise and classify what remains.
Assessment Criteria
1. Relevance Score (0.0-1.0)
How relevant is this to understanding AI research progress, capabilities, limitations, or field direction?
| Score Range |
Meaning |
Examples |
| 0.0-0.3 |
Not relevant |
Personal updates, off-topic, promotional |
| 0.3-0.6 |
Tangentially relevant |
General tech news, adjacent topics |
| 0.6-0.8 |
Relevant |
Discusses AI research, capabilities, field |
| 0.8-1.0 |
Highly relevant |
Substantive claims, predictions, research insights |
2. Topic Classification
Assign ONE primary topic:
scaling: Scaling laws, compute, training efficiency
reasoning: LLM reasoning, chain-of-thought, planning capabilities
agents: AI agents, tool use, autonomy
safety: AI safety, alignment, control
interpretability: Mechanistic interpretability, understanding models
multimodal: Vision, audio, video models
rlhf: RLHF, preference learning, Constitutional AI
robotics: Embodied AI, robotics
benchmarks: Evals, benchmarks, capability measurement
infrastructure: Training infra, chips, hardware
policy: AI policy, regulation, governance
general: General AI commentary
other: Doesn't fit above categories
3. Content Type
What kind of content is this?
prediction: Makes claims about future AI capabilities/timelines
research-hint: Hints at ongoing/unpublished research
opinion: Expresses opinion on AI progress/direction
factual: Reports factual information about released work
critique: Critiques AI capabilities or claims
meta: Meta-commentary on the field
noise: Not substantive
4. Substantiveness
Does this contain actual claims, arguments, or insights?
Substantive examples:
- "We found that CoT prompting shows diminishing returns beyond 8 steps"
- "The next generation will likely solve ARC-AGI"
- "Interpretability research is underrated"
Non-substantive examples:
- "Cool paper!" (reaction only)
- "Link: [url]" (link share without commentary)
- "Having coffee ☕" (personal update)
5. Author Category
Classify the author:
lab-researcher: Works at major AI lab (Anthropic, OpenAI, DeepMind, Meta AI, xAI, Mistral, Cohere)
critic: Known AI skeptic/critic with credentials (Marcus, Chollet, Mitchell, Bender, Brooks)
academic: University researcher
independent: Independent researcher/commentator
journalist: AI journalist
unknown: Cannot determine
Output Format
Return JSON:
{
"assessments": [
{
"itemIndex": 0,
"relevance": 0.85,
"topic": "reasoning",
"contentType": "research-hint",
"isSubstantive": true,
"authorCategory": "lab-researcher",
"brief": "One sentence summary"
}
]
}
Filtering Heuristics
High Signal Indicators
- Lab researchers discussing their own work area
- Specific technical claims with numbers/benchmarks
- Predictions with timeframes
- Explicit disagreements between notable figures
- Hints using hedged language ("we've been seeing...", "I can't say much but...")
Low Signal Indicators
- Pure link shares without commentary
- Conference attendance announcements
- Hiring posts
- Generic congratulations
- Retweets without quote
- Personal life updates
- Product launches (unless with technical claims)
Gray Areas
- Paper summaries (relevant if includes opinion/analysis)
- Q&A responses (depends on question depth)
- Thread continuations (may need full thread context)
1---2name: content-filter3description: Filter and classify AI research content for relevance. Use when processing raw content from Twitter, Substacks, blogs, or podcasts to determine if it's worth extracting claims from. Assigns relevance scores, topics, and author categories.4---5
6# Content Filter Skill
7
8Assess content for relevance to AI research intelligence gathering. Filter noise and classify what remains.
9
10## Assessment Criteria
11
12### 1. Relevance Score (0.0-1.0)
13
14How relevant is this to understanding AI research progress, capabilities, limitations, or field direction?
15
16| Score Range | Meaning | Examples |
17|-------------|---------|----------|
18| 0.0-0.3 | Not relevant | Personal updates, off-topic, promotional |
19| 0.3-0.6 | Tangentially relevant | General tech news, adjacent topics |
20| 0.6-0.8 | Relevant | Discusses AI research, capabilities, field |
21| 0.8-1.0 | Highly relevant | Substantive claims, predictions, research insights |
22
23### 2. Topic Classification
24
25Assign ONE primary topic:
26
27- `scaling`: Scaling laws, compute, training efficiency
28- `reasoning`: LLM reasoning, chain-of-thought, planning capabilities
29- `agents`: AI agents, tool use, autonomy
30- `safety`: AI safety, alignment, control
31- `interpretability`: Mechanistic interpretability, understanding models
32- `multimodal`: Vision, audio, video models
33- `rlhf`: RLHF, preference learning, Constitutional AI
34- `robotics`: Embodied AI, robotics
35- `benchmarks`: Evals, benchmarks, capability measurement
36- `infrastructure`: Training infra, chips, hardware
37- `policy`: AI policy, regulation, governance
38- `general`: General AI commentary
39- `other`: Doesn't fit above categories
40
41### 3. Content Type
42
43What kind of content is this?
44
45- `prediction`: Makes claims about future AI capabilities/timelines
46- `research-hint`: Hints at ongoing/unpublished research
47- `opinion`: Expresses opinion on AI progress/direction
48- `factual`: Reports factual information about released work
49- `critique`: Critiques AI capabilities or claims
50- `meta`: Meta-commentary on the field
51- `noise`: Not substantive
52
53### 4. Substantiveness
54
55Does this contain actual claims, arguments, or insights?
56
57**Substantive examples:**
58- "We found that CoT prompting shows diminishing returns beyond 8 steps"
59- "The next generation will likely solve ARC-AGI"
60- "Interpretability research is underrated"
61
62**Non-substantive examples:**
63- "Cool paper!" (reaction only)
64- "Link: [url]" (link share without commentary)
65- "Having coffee ☕" (personal update)
66
67### 5. Author Category
68
69Classify the author:
70
71- `lab-researcher`: Works at major AI lab (Anthropic, OpenAI, DeepMind, Meta AI, xAI, Mistral, Cohere)
72- `critic`: Known AI skeptic/critic with credentials (Marcus, Chollet, Mitchell, Bender, Brooks)
73- `academic`: University researcher
74- `independent`: Independent researcher/commentator
75- `journalist`: AI journalist
76- `unknown`: Cannot determine
77
78## Output Format
79
80Return JSON:
81```json
82{
83 "assessments": [
84 {
85 "itemIndex": 0,
86 "relevance": 0.85,
87 "topic": "reasoning",
88 "contentType": "research-hint",
89 "isSubstantive": true,
90 "authorCategory": "lab-researcher",
91 "brief": "One sentence summary"
92 }
93 ]
94}
95```
96
97## Filtering Heuristics
98
99### High Signal Indicators
100- Lab researchers discussing their own work area
101- Specific technical claims with numbers/benchmarks
102- Predictions with timeframes
103- Explicit disagreements between notable figures
104- Hints using hedged language ("we've been seeing...", "I can't say much but...")
105
106### Low Signal Indicators
107- Pure link shares without commentary
108- Conference attendance announcements
109- Hiring posts
110- Generic congratulations
111- Retweets without quote
112- Personal life updates
113- Product launches (unless with technical claims)
114
115### Gray Areas
116- Paper summaries (relevant if includes opinion/analysis)
117- Q&A responses (depends on question depth)
118- Thread continuations (may need full thread context)