alif-digest 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/publish.yml +33 -0
- package/.husky/pre-commit +1 -0
- package/.prettierrc +7 -0
- package/LICENSE +21 -0
- package/README.md +131 -0
- package/dist/cli/commands/init.d.ts +1 -0
- package/dist/cli/commands/init.js +88 -0
- package/dist/cli/commands/init.js.map +1 -0
- package/dist/cli/commands/run.d.ts +4 -0
- package/dist/cli/commands/run.js +46 -0
- package/dist/cli/commands/run.js.map +1 -0
- package/dist/cli/commands/schedule.d.ts +1 -0
- package/dist/cli/commands/schedule.js +94 -0
- package/dist/cli/commands/schedule.js.map +1 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.js +29 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/core/config-manager.d.ts +14 -0
- package/dist/core/config-manager.js +65 -0
- package/dist/core/config-manager.js.map +1 -0
- package/dist/core/config-schema.d.ts +40 -0
- package/dist/core/config-schema.js +24 -0
- package/dist/core/config-schema.js.map +1 -0
- package/dist/core/default-keywords.d.ts +1 -0
- package/dist/core/default-keywords.js +10 -0
- package/dist/core/default-keywords.js.map +1 -0
- package/dist/core/filters/deduplicator.d.ts +10 -0
- package/dist/core/filters/deduplicator.js +34 -0
- package/dist/core/filters/deduplicator.js.map +1 -0
- package/dist/core/filters/keywords.d.ts +6 -0
- package/dist/core/filters/keywords.js +17 -0
- package/dist/core/filters/keywords.js.map +1 -0
- package/dist/core/orchestrator.d.ts +6 -0
- package/dist/core/orchestrator.js +44 -0
- package/dist/core/orchestrator.js.map +1 -0
- package/dist/core/pipeline.d.ts +15 -0
- package/dist/core/pipeline.js +140 -0
- package/dist/core/pipeline.js.map +1 -0
- package/dist/core/scheduler.d.ts +9 -0
- package/dist/core/scheduler.js +64 -0
- package/dist/core/scheduler.js.map +1 -0
- package/dist/core/scraper-types.d.ts +27 -0
- package/dist/core/scraper-types.js +3 -0
- package/dist/core/scraper-types.js.map +1 -0
- package/dist/core/scrapers/api-scraper.d.ts +4 -0
- package/dist/core/scrapers/api-scraper.js +46 -0
- package/dist/core/scrapers/api-scraper.js.map +1 -0
- package/dist/core/scrapers/arxiv-scraper.d.ts +4 -0
- package/dist/core/scrapers/arxiv-scraper.js +34 -0
- package/dist/core/scrapers/arxiv-scraper.js.map +1 -0
- package/dist/core/scrapers/json-scraper.d.ts +4 -0
- package/dist/core/scrapers/json-scraper.js +56 -0
- package/dist/core/scrapers/json-scraper.js.map +1 -0
- package/dist/core/scrapers/rss-scraper.d.ts +6 -0
- package/dist/core/scrapers/rss-scraper.js +32 -0
- package/dist/core/scrapers/rss-scraper.js.map +1 -0
- package/dist/core/scrapers/scrape-scraper.d.ts +4 -0
- package/dist/core/scrapers/scrape-scraper.js +49 -0
- package/dist/core/scrapers/scrape-scraper.js.map +1 -0
- package/dist/db/article-store.d.ts +22 -0
- package/dist/db/article-store.js +43 -0
- package/dist/db/article-store.js.map +1 -0
- package/dist/db/connection.d.ts +2 -0
- package/dist/db/connection.js +15 -0
- package/dist/db/connection.js.map +1 -0
- package/dist/db/migrate.d.ts +2 -0
- package/dist/db/migrate.js +60 -0
- package/dist/db/migrate.js.map +1 -0
- package/dist/db/schedule-store.d.ts +17 -0
- package/dist/db/schedule-store.js +23 -0
- package/dist/db/schedule-store.js.map +1 -0
- package/dist/db/source-health-store.d.ts +16 -0
- package/dist/db/source-health-store.js +31 -0
- package/dist/db/source-health-store.js.map +1 -0
- package/dist/providers/delivery/index.d.ts +18 -0
- package/dist/providers/delivery/index.js +2 -0
- package/dist/providers/delivery/index.js.map +1 -0
- package/dist/providers/delivery/slack.d.ts +6 -0
- package/dist/providers/delivery/slack.js +52 -0
- package/dist/providers/delivery/slack.js.map +1 -0
- package/dist/providers/delivery/webhook.d.ts +6 -0
- package/dist/providers/delivery/webhook.js +16 -0
- package/dist/providers/delivery/webhook.js.map +1 -0
- package/dist/providers/factory.d.ts +7 -0
- package/dist/providers/factory.js +33 -0
- package/dist/providers/factory.js.map +1 -0
- package/dist/providers/llm/anthropic.d.ts +12 -0
- package/dist/providers/llm/anthropic.js +43 -0
- package/dist/providers/llm/anthropic.js.map +1 -0
- package/dist/providers/llm/index.d.ts +10 -0
- package/dist/providers/llm/index.js +2 -0
- package/dist/providers/llm/index.js.map +1 -0
- package/dist/providers/llm/ollama.d.ts +12 -0
- package/dist/providers/llm/ollama.js +42 -0
- package/dist/providers/llm/ollama.js.map +1 -0
- package/dist/providers/llm/openrouter.d.ts +13 -0
- package/dist/providers/llm/openrouter.js +53 -0
- package/dist/providers/llm/openrouter.js.map +1 -0
- package/dist/providers/llm/utils.d.ts +6 -0
- package/dist/providers/llm/utils.js +45 -0
- package/dist/providers/llm/utils.js.map +1 -0
- package/dist/resources/default-feeds.json +650 -0
- package/dist/resources/index.d.ts +2 -0
- package/dist/resources/index.js +3 -0
- package/dist/resources/index.js.map +1 -0
- package/eslint.config.mjs +29 -0
- package/package.json +66 -0
- package/src/cli/commands/init.ts +94 -0
- package/src/cli/commands/run.ts +52 -0
- package/src/cli/commands/schedule.ts +99 -0
- package/src/cli/index.ts +34 -0
- package/src/core/config-manager.ts +72 -0
- package/src/core/config-schema.ts +31 -0
- package/src/core/default-keywords.ts +9 -0
- package/src/core/filters/deduplicator.ts +39 -0
- package/src/core/filters/keywords.ts +18 -0
- package/src/core/orchestrator.ts +47 -0
- package/src/core/pipeline.ts +171 -0
- package/src/core/scheduler.ts +74 -0
- package/src/core/scraper-types.ts +30 -0
- package/src/core/scrapers/api-scraper.ts +45 -0
- package/src/core/scrapers/arxiv-scraper.ts +35 -0
- package/src/core/scrapers/json-scraper.ts +54 -0
- package/src/core/scrapers/rss-scraper.ts +34 -0
- package/src/core/scrapers/scrape-scraper.ts +50 -0
- package/src/db/article-store.ts +75 -0
- package/src/db/connection.ts +17 -0
- package/src/db/migrate.ts +68 -0
- package/src/db/schedule-store.ts +41 -0
- package/src/db/source-health-store.ts +42 -0
- package/src/providers/delivery/index.ts +19 -0
- package/src/providers/delivery/slack.ts +55 -0
- package/src/providers/delivery/webhook.ts +16 -0
- package/src/providers/factory.ts +37 -0
- package/src/providers/llm/anthropic.ts +48 -0
- package/src/providers/llm/index.ts +8 -0
- package/src/providers/llm/ollama.ts +44 -0
- package/src/providers/llm/openrouter.ts +56 -0
- package/src/providers/llm/utils.ts +54 -0
- package/src/resources/default-feeds.json +650 -0
- package/src/resources/index.ts +3 -0
- package/tests/config-manager.test.ts +70 -0
- package/tests/db-integration.test.ts +72 -0
- package/tests/filters.test.ts +53 -0
- package/tests/llm-provider.test.ts +115 -0
- package/tsconfig.json +18 -0
- package/vitest.config.ts +13 -0
|
@@ -0,0 +1,650 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "hn",
|
|
4
|
+
"name": "Hacker News",
|
|
5
|
+
"type": "api",
|
|
6
|
+
"url": "https://hn.algolia.com/api/v1/search?tags=front_page",
|
|
7
|
+
"tier": 1,
|
|
8
|
+
"tags": ["social", "tech"]
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"id": "github_trending",
|
|
12
|
+
"name": "GitHub Trending",
|
|
13
|
+
"type": "scrape",
|
|
14
|
+
"url": "https://github.com/trending",
|
|
15
|
+
"tier": 1,
|
|
16
|
+
"tags": ["code", "trending"]
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"id": "arxiv_ai",
|
|
20
|
+
"name": "arXiv AI",
|
|
21
|
+
"type": "api",
|
|
22
|
+
"url": "http://export.arxiv.org/api/query?search_query=cat:cs.AI&sortBy=submittedDate&sortOrder=descending",
|
|
23
|
+
"tier": 1,
|
|
24
|
+
"tags": ["research", "papers"]
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"id": "arxiv_lg",
|
|
28
|
+
"name": "arXiv Machine Learning (cs.LG)",
|
|
29
|
+
"type": "rss",
|
|
30
|
+
"url": "https://arxiv.org/rss/cs.LG",
|
|
31
|
+
"tier": 1,
|
|
32
|
+
"tags": ["research", "ml"]
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"id": "arxiv_stat_ml",
|
|
36
|
+
"name": "arXiv Statistics ML (stat.ML)",
|
|
37
|
+
"type": "rss",
|
|
38
|
+
"url": "https://arxiv.org/rss/stat.ML",
|
|
39
|
+
"tier": 1,
|
|
40
|
+
"tags": ["research", "stats"]
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"id": "reddit_ml",
|
|
44
|
+
"name": "Reddit MachineLearning",
|
|
45
|
+
"type": "json",
|
|
46
|
+
"url": "https://old.reddit.com/r/MachineLearning/.json",
|
|
47
|
+
"tier": 1,
|
|
48
|
+
"tags": ["social", "ml"]
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"id": "reddit_datascience",
|
|
52
|
+
"name": "Reddit Data Science",
|
|
53
|
+
"type": "json",
|
|
54
|
+
"url": "https://www.reddit.com/r/datascience.json?limit=50",
|
|
55
|
+
"tier": 1,
|
|
56
|
+
"tags": ["social", "data-science"]
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": "product_hunt",
|
|
60
|
+
"name": "Product Hunt",
|
|
61
|
+
"type": "rss",
|
|
62
|
+
"url": "https://www.producthunt.com/feed",
|
|
63
|
+
"tier": 1,
|
|
64
|
+
"tags": ["launch", "tools"]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"id": "openai",
|
|
68
|
+
"name": "OpenAI Blog",
|
|
69
|
+
"type": "rss",
|
|
70
|
+
"url": "https://openai.com/blog/rss.xml",
|
|
71
|
+
"tier": 2,
|
|
72
|
+
"tags": ["lab", "official"]
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"id": "google_ai",
|
|
76
|
+
"name": "Google AI Blog",
|
|
77
|
+
"type": "rss",
|
|
78
|
+
"url": "https://blog.google/technology/ai/rss/",
|
|
79
|
+
"tier": 2,
|
|
80
|
+
"tags": ["lab", "research"]
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"id": "google_gemini",
|
|
84
|
+
"name": "Google Gemini Blog",
|
|
85
|
+
"type": "rss",
|
|
86
|
+
"url": "https://blog.google/products/gemini/rss/",
|
|
87
|
+
"tier": 2,
|
|
88
|
+
"tags": ["lab", "product"]
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"id": "meta_ai",
|
|
92
|
+
"name": "Meta AI Blog",
|
|
93
|
+
"type": "rss",
|
|
94
|
+
"url": "https://ai.meta.com/blog/rss.xml",
|
|
95
|
+
"tier": 2,
|
|
96
|
+
"tags": ["lab", "open-source"]
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"id": "nvidia",
|
|
100
|
+
"name": "NVIDIA AI Blog",
|
|
101
|
+
"type": "rss",
|
|
102
|
+
"url": "https://blogs.nvidia.com/feed/",
|
|
103
|
+
"tier": 2,
|
|
104
|
+
"tags": ["hardware", "official"]
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"id": "nvidia_dev",
|
|
108
|
+
"name": "NVIDIA Technical Blog",
|
|
109
|
+
"type": "rss",
|
|
110
|
+
"url": "https://developer.nvidia.com/blog/feed",
|
|
111
|
+
"tier": 2,
|
|
112
|
+
"tags": ["hardware", "technical"]
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"id": "huggingface",
|
|
116
|
+
"name": "Hugging Face Blog",
|
|
117
|
+
"type": "rss",
|
|
118
|
+
"url": "https://huggingface.co/blog/feed.xml",
|
|
119
|
+
"tier": 2,
|
|
120
|
+
"tags": ["lab", "community"]
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"id": "deepmind",
|
|
124
|
+
"name": "DeepMind Blog",
|
|
125
|
+
"type": "rss",
|
|
126
|
+
"url": "https://deepmind.com/blog/feed/basic/",
|
|
127
|
+
"tier": 2,
|
|
128
|
+
"tags": ["lab", "research"]
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"id": "microsoft_research",
|
|
132
|
+
"name": "Microsoft Research",
|
|
133
|
+
"type": "rss",
|
|
134
|
+
"url": "https://www.microsoft.com/en-us/research/feed/",
|
|
135
|
+
"tier": 2,
|
|
136
|
+
"tags": ["lab", "research"]
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"id": "amazon_science",
|
|
140
|
+
"name": "Amazon Science",
|
|
141
|
+
"type": "rss",
|
|
142
|
+
"url": "https://www.amazon.science/index.rss",
|
|
143
|
+
"tier": 2,
|
|
144
|
+
"tags": ["lab", "research"]
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"id": "aws_ml",
|
|
148
|
+
"name": "AWS Machine Learning Blog",
|
|
149
|
+
"type": "rss",
|
|
150
|
+
"url": "https://aws.amazon.com/blogs/machine-learning/feed",
|
|
151
|
+
"tier": 2,
|
|
152
|
+
"tags": ["cloud", "ml"]
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"id": "bair_blog",
|
|
156
|
+
"name": "BAIR Blog",
|
|
157
|
+
"type": "rss",
|
|
158
|
+
"url": "https://bair.berkeley.edu/blog/feed.xml",
|
|
159
|
+
"tier": 2,
|
|
160
|
+
"tags": ["academic", "research"]
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"id": "cmu_ml",
|
|
164
|
+
"name": "CMU ML Blog",
|
|
165
|
+
"type": "rss",
|
|
166
|
+
"url": "https://blog.ml.cmu.edu/feed",
|
|
167
|
+
"tier": 2,
|
|
168
|
+
"tags": ["academic", "ml"]
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"id": "stanford_ai",
|
|
172
|
+
"name": "Stanford AI Lab Blog",
|
|
173
|
+
"type": "rss",
|
|
174
|
+
"url": "http://ai.stanford.edu/blog/feed.xml",
|
|
175
|
+
"tier": 2,
|
|
176
|
+
"tags": ["academic", "ai"]
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"id": "mit_ml",
|
|
180
|
+
"name": "MIT News (Machine Learning)",
|
|
181
|
+
"type": "rss",
|
|
182
|
+
"url": "https://news.mit.edu/topic/mitmachine-learning-rss.xml",
|
|
183
|
+
"tier": 2,
|
|
184
|
+
"tags": ["academic", "research"]
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"id": "assembly_ai",
|
|
188
|
+
"name": "AssemblyAI Blog",
|
|
189
|
+
"type": "rss",
|
|
190
|
+
"url": "https://www.assemblyai.com/blog/rss/",
|
|
191
|
+
"tier": 2,
|
|
192
|
+
"tags": ["tools", "audio"]
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"id": "dagshub",
|
|
196
|
+
"name": "DagsHub Blog",
|
|
197
|
+
"type": "rss",
|
|
198
|
+
"url": "https://dagshub.com/blog/rss/",
|
|
199
|
+
"tier": 2,
|
|
200
|
+
"tags": ["tools", "data-ops"]
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"id": "paperspace",
|
|
204
|
+
"name": "Paperspace Blog",
|
|
205
|
+
"type": "rss",
|
|
206
|
+
"url": "https://blog.paperspace.com/rss/",
|
|
207
|
+
"tier": 2,
|
|
208
|
+
"tags": ["tools", "gpu"]
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"id": "replicate",
|
|
212
|
+
"name": "Replicate Blog",
|
|
213
|
+
"type": "rss",
|
|
214
|
+
"url": "https://replicate.com/blog/rss",
|
|
215
|
+
"tier": 3,
|
|
216
|
+
"tags": ["infra", "inference"]
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"id": "kilocode",
|
|
220
|
+
"name": "Kilo Code Blog",
|
|
221
|
+
"type": "rss",
|
|
222
|
+
"url": "https://kilocode.substack.com/feed",
|
|
223
|
+
"tier": 2,
|
|
224
|
+
"tags": ["tools", "assistant"]
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"id": "aider",
|
|
228
|
+
"name": "Aider Blog",
|
|
229
|
+
"type": "rss",
|
|
230
|
+
"url": "https://aider.chat/feed.xml",
|
|
231
|
+
"tier": 2,
|
|
232
|
+
"tags": ["agent", "cli"]
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"id": "langchain",
|
|
236
|
+
"name": "LangChain Blog",
|
|
237
|
+
"type": "rss",
|
|
238
|
+
"url": "https://blog.langchain.dev/rss/",
|
|
239
|
+
"tier": 2,
|
|
240
|
+
"tags": ["infra", "orchestration"]
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"id": "vercel",
|
|
244
|
+
"name": "Vercel Blog",
|
|
245
|
+
"type": "rss",
|
|
246
|
+
"url": "https://vercel.com/atom",
|
|
247
|
+
"tier": 2,
|
|
248
|
+
"tags": ["infra", "v0"]
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"id": "ai_accelerator",
|
|
252
|
+
"name": "AI Accelerator Institute",
|
|
253
|
+
"type": "rss",
|
|
254
|
+
"url": "https://aiacceleratorinstitute.com/rss/",
|
|
255
|
+
"tier": 2,
|
|
256
|
+
"tags": ["institute", "business"]
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"id": "ai_techpark",
|
|
260
|
+
"name": "AI-TechPark",
|
|
261
|
+
"type": "rss",
|
|
262
|
+
"url": "https://ai-techpark.com/feed",
|
|
263
|
+
"tier": 2,
|
|
264
|
+
"tags": ["news", "tech"]
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"id": "ai_weirdness",
|
|
268
|
+
"name": "AI Weirdness",
|
|
269
|
+
"type": "rss",
|
|
270
|
+
"url": "https://www.aiweirdness.com/rss/",
|
|
271
|
+
"tier": 3,
|
|
272
|
+
"tags": ["leader", "creative"]
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"id": "analytics_india",
|
|
276
|
+
"name": "Analytics India Magazine",
|
|
277
|
+
"type": "rss",
|
|
278
|
+
"url": "https://analyticsindiamag.com/feed/",
|
|
279
|
+
"tier": 2,
|
|
280
|
+
"tags": ["news", "india"]
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"id": "dev_community",
|
|
284
|
+
"name": "DEV Community",
|
|
285
|
+
"type": "rss",
|
|
286
|
+
"url": "https://dev.to/feed",
|
|
287
|
+
"tier": 1,
|
|
288
|
+
"tags": ["community", "coding"]
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"id": "distill",
|
|
292
|
+
"name": "Distill",
|
|
293
|
+
"type": "rss",
|
|
294
|
+
"url": "https://distill.pub/rss.xml",
|
|
295
|
+
"tier": 2,
|
|
296
|
+
"tags": ["research", "visual"]
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"id": "fast_ai",
|
|
300
|
+
"name": "fast.ai",
|
|
301
|
+
"type": "rss",
|
|
302
|
+
"url": "https://www.fast.ai/index.xml",
|
|
303
|
+
"tier": 2,
|
|
304
|
+
"tags": ["academic", "practical"]
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"id": "hacker_noon_ai",
|
|
308
|
+
"name": "Hacker Noon (AI-Tag)",
|
|
309
|
+
"type": "rss",
|
|
310
|
+
"url": "https://hackernoon.com/tagged/ai/feed",
|
|
311
|
+
"tier": 1,
|
|
312
|
+
"tags": ["community", "tech"]
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"id": "ieee_spectrum",
|
|
316
|
+
"name": "IEEE Spectrum (AI)",
|
|
317
|
+
"type": "rss",
|
|
318
|
+
"url": "https://spectrum.ieee.org/feeds/topic/artificial-intelligence.rss",
|
|
319
|
+
"tier": 2,
|
|
320
|
+
"tags": ["news", "engineering"]
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"id": "jmlr",
|
|
324
|
+
"name": "JMLR",
|
|
325
|
+
"type": "rss",
|
|
326
|
+
"url": "https://www.jmlr.org/jmlr.xml",
|
|
327
|
+
"tier": 2,
|
|
328
|
+
"tags": ["research", "academic"]
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"id": "kdnuggets",
|
|
332
|
+
"name": "KDnuggets",
|
|
333
|
+
"type": "rss",
|
|
334
|
+
"url": "https://www.kdnuggets.com/feed",
|
|
335
|
+
"tier": 2,
|
|
336
|
+
"tags": ["news", "data-science"]
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"id": "ml_mastery",
|
|
340
|
+
"name": "Machine Learning Mastery",
|
|
341
|
+
"type": "rss",
|
|
342
|
+
"url": "https://machinelearningmastery.com/blog/feed",
|
|
343
|
+
"tier": 3,
|
|
344
|
+
"tags": ["education", "ml"]
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"id": "marktechpost",
|
|
348
|
+
"name": "MarkTechPost",
|
|
349
|
+
"type": "rss",
|
|
350
|
+
"url": "https://www.marktechpost.com/feed",
|
|
351
|
+
"tier": 2,
|
|
352
|
+
"tags": ["news", "ml"]
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"id": "pyimagesearch",
|
|
356
|
+
"name": "PyImageSearch",
|
|
357
|
+
"type": "rss",
|
|
358
|
+
"url": "https://pyimagesearch.com/blog/feed",
|
|
359
|
+
"tier": 3,
|
|
360
|
+
"tags": ["cv", "technical"]
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"id": "sciencedaily",
|
|
364
|
+
"name": "ScienceDaily (AI)",
|
|
365
|
+
"type": "rss",
|
|
366
|
+
"url": "https://www.sciencedaily.com/rss/computers_math/artificial_intelligence.xml",
|
|
367
|
+
"tier": 2,
|
|
368
|
+
"tags": ["research", "news"]
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"id": "the_gradient",
|
|
372
|
+
"name": "The Gradient",
|
|
373
|
+
"type": "rss",
|
|
374
|
+
"url": "https://thegradient.pub/rss/",
|
|
375
|
+
"tier": 2,
|
|
376
|
+
"tags": ["research", "thought-leadership"]
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"id": "towards_ai",
|
|
380
|
+
"name": "Towards AI",
|
|
381
|
+
"type": "rss",
|
|
382
|
+
"url": "https://pub.towardsai.net/feed",
|
|
383
|
+
"tier": 2,
|
|
384
|
+
"tags": ["community", "ml"]
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"id": "towards_datascience",
|
|
388
|
+
"name": "Towards Data Science",
|
|
389
|
+
"type": "rss",
|
|
390
|
+
"url": "https://towardsdatascience.com/feed",
|
|
391
|
+
"tier": 2,
|
|
392
|
+
"tags": ["community", "data-science"]
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"id": "uber_ai",
|
|
396
|
+
"name": "Uber Engineering Blog (AI)",
|
|
397
|
+
"type": "rss",
|
|
398
|
+
"url": "https://eng.uber.com/category/articles/ai/feed",
|
|
399
|
+
"tier": 2,
|
|
400
|
+
"tags": ["eng", "ml"]
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"id": "steipete",
|
|
404
|
+
"name": "Peter Steinberger",
|
|
405
|
+
"type": "rss",
|
|
406
|
+
"url": "https://steipete.me/rss.xml",
|
|
407
|
+
"tier": 3,
|
|
408
|
+
"tags": ["leader", "agentic"]
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"id": "simonw",
|
|
412
|
+
"name": "Simon Willison",
|
|
413
|
+
"type": "rss",
|
|
414
|
+
"url": "https://simonwillison.net/atom/everything/",
|
|
415
|
+
"tier": 3,
|
|
416
|
+
"tags": ["leader", "practical"]
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"id": "lilianweng",
|
|
420
|
+
"name": "Lilian Weng (Lil Log)",
|
|
421
|
+
"type": "rss",
|
|
422
|
+
"url": "https://lilianweng.github.io/index.xml",
|
|
423
|
+
"tier": 3,
|
|
424
|
+
"tags": ["leader", "research"]
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"id": "chip_huyen",
|
|
428
|
+
"name": "Chip Huyen",
|
|
429
|
+
"type": "rss",
|
|
430
|
+
"url": "https://huyenchip.com/feed.xml",
|
|
431
|
+
"tier": 3,
|
|
432
|
+
"tags": ["leader", "mlops"]
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"id": "thorsten_ball",
|
|
436
|
+
"name": "Thorsten Ball",
|
|
437
|
+
"type": "rss",
|
|
438
|
+
"url": "https://registerspill.thorstenball.com/feed",
|
|
439
|
+
"tier": 3,
|
|
440
|
+
"tags": ["leader", "coding"]
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"id": "swyx",
|
|
444
|
+
"name": "Swyx (Latent Space)",
|
|
445
|
+
"type": "rss",
|
|
446
|
+
"url": "https://www.latent.space/feed",
|
|
447
|
+
"tier": 3,
|
|
448
|
+
"tags": ["leader", "culture"]
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"id": "techcrunch_ai",
|
|
452
|
+
"name": "TechCrunch AI",
|
|
453
|
+
"type": "rss",
|
|
454
|
+
"url": "https://techcrunch.com/category/artificial-intelligence/feed/",
|
|
455
|
+
"tier": 2,
|
|
456
|
+
"tags": ["news"]
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"id": "verge_ai",
|
|
460
|
+
"name": "The Verge AI",
|
|
461
|
+
"type": "rss",
|
|
462
|
+
"url": "https://www.theverge.com/rss/ai-artificial-intelligence/index.xml",
|
|
463
|
+
"tier": 2,
|
|
464
|
+
"tags": ["news"]
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"id": "venturebeat_ai",
|
|
468
|
+
"name": "VentureBeat AI",
|
|
469
|
+
"type": "rss",
|
|
470
|
+
"url": "https://venturebeat.com/category/ai/feed/",
|
|
471
|
+
"tier": 2,
|
|
472
|
+
"tags": ["news"]
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"id": "mit_tech",
|
|
476
|
+
"name": "MIT Technology Review",
|
|
477
|
+
"type": "rss",
|
|
478
|
+
"url": "https://www.technologyreview.com/feed/",
|
|
479
|
+
"tier": 2,
|
|
480
|
+
"tags": ["news", "policy"]
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"id": "import_ai",
|
|
484
|
+
"name": "Import AI (Jack Clark)",
|
|
485
|
+
"type": "rss",
|
|
486
|
+
"url": "https://importai.substack.com/feed",
|
|
487
|
+
"tier": 3,
|
|
488
|
+
"tags": ["newsletter", "policy"]
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"id": "elite_ai",
|
|
492
|
+
"name": "Elite AI Assisted Coding",
|
|
493
|
+
"type": "rss",
|
|
494
|
+
"url": "https://elite-ai-assisted-coding.substack.com/feed",
|
|
495
|
+
"tier": 3,
|
|
496
|
+
"tags": ["newsletter", "coding"]
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"id": "wandb",
|
|
500
|
+
"name": "Weights & Biases",
|
|
501
|
+
"type": "rss",
|
|
502
|
+
"url": "https://wandb.ai/fully-connected/rss.xml",
|
|
503
|
+
"tier": 3,
|
|
504
|
+
"tags": ["mlops", "infra"]
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"id": "podcast_future_work",
|
|
508
|
+
"name": "AI and the Future of Work",
|
|
509
|
+
"type": "rss",
|
|
510
|
+
"url": "https://feeds.buzzsprout.com/520474.rss",
|
|
511
|
+
"tier": 4,
|
|
512
|
+
"tags": ["podcast", "business"]
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"id": "podcast_data_eng",
|
|
516
|
+
"name": "Data Engineering Podcast",
|
|
517
|
+
"type": "rss",
|
|
518
|
+
"url": "https://www.dataengineeringpodcast.com/feed/mp3/",
|
|
519
|
+
"tier": 4,
|
|
520
|
+
"tags": ["podcast", "eng"]
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"id": "podcast_data_skeptic",
|
|
524
|
+
"name": "Data Skeptic",
|
|
525
|
+
"type": "rss",
|
|
526
|
+
"url": "https://dataskeptic.libsyn.com/rss",
|
|
527
|
+
"tier": 4,
|
|
528
|
+
"tags": ["podcast", "critical"]
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"id": "podcast_datatalks",
|
|
532
|
+
"name": "DataTalks.Club",
|
|
533
|
+
"type": "rss",
|
|
534
|
+
"url": "https://anchor.fm/s/41286f68/podcast/rss",
|
|
535
|
+
"tier": 4,
|
|
536
|
+
"tags": ["podcast", "community"]
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"id": "podcast_gradient_dissent",
|
|
540
|
+
"name": "Gradient Dissent",
|
|
541
|
+
"type": "rss",
|
|
542
|
+
"url": "https://feeds.captivate.fm/gradient-dissent/",
|
|
543
|
+
"tier": 4,
|
|
544
|
+
"tags": ["podcast", "wandb"]
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"id": "podcast_intel_ai",
|
|
548
|
+
"name": "Intel on AI",
|
|
549
|
+
"type": "rss",
|
|
550
|
+
"url": "http://feeds.libsyn.com/363776/rss",
|
|
551
|
+
"tier": 4,
|
|
552
|
+
"tags": ["podcast", "hardware"]
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"id": "podcast_nlp_highlights",
|
|
556
|
+
"name": "NLP Highlights",
|
|
557
|
+
"type": "rss",
|
|
558
|
+
"url": "http://feeds.soundcloud.com/users/soundcloud:users:306749289/sounds.rss",
|
|
559
|
+
"tier": 4,
|
|
560
|
+
"tags": ["podcast", "research"]
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"id": "podcast_oreilly_data",
|
|
564
|
+
"name": "O'Reilly Data Show Podcast",
|
|
565
|
+
"type": "rss",
|
|
566
|
+
"url": "http://feeds.podtrac.com/IOJSwQcdEBcg",
|
|
567
|
+
"tier": 4,
|
|
568
|
+
"tags": ["podcast", "data"]
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"id": "podcast_practical_ai",
|
|
572
|
+
"name": "Practical AI",
|
|
573
|
+
"type": "rss",
|
|
574
|
+
"url": "https://changelog.com/practicalai/feed",
|
|
575
|
+
"tier": 4,
|
|
576
|
+
"tags": ["podcast", "practical"]
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"id": "podcast_ai_business",
|
|
580
|
+
"name": "The AI in Business Podcast",
|
|
581
|
+
"type": "rss",
|
|
582
|
+
"url": "http://podcast.emerj.com/rss",
|
|
583
|
+
"tier": 4,
|
|
584
|
+
"tags": ["podcast", "business"]
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"id": "podcast_twiml",
|
|
588
|
+
"name": "The TWIML AI Podcast",
|
|
589
|
+
"type": "rss",
|
|
590
|
+
"url": "https://twimlai.com/feed",
|
|
591
|
+
"tier": 4,
|
|
592
|
+
"tags": ["podcast", "technical"]
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"id": "yt_assembly_ai",
|
|
596
|
+
"name": "YouTube - AssemblyAI",
|
|
597
|
+
"type": "rss",
|
|
598
|
+
"url": "https://www.youtube.com/feeds/videos.xml?channel_id=UCtatfZMf-8EkIwASXM4ts0A",
|
|
599
|
+
"tier": 4,
|
|
600
|
+
"tags": ["video", "tools"]
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"id": "yt_deepmind",
|
|
604
|
+
"name": "YouTube - DeepMind",
|
|
605
|
+
"type": "rss",
|
|
606
|
+
"url": "https://www.youtube.com/feeds/videos.xml?channel_id=UCP7jMXSY2xbc3KCAE0MHQ-A",
|
|
607
|
+
"tier": 4,
|
|
608
|
+
"tags": ["video", "research"]
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"id": "yt_nvidia",
|
|
612
|
+
"name": "YouTube - NVIDIA",
|
|
613
|
+
"type": "rss",
|
|
614
|
+
"url": "https://www.youtube.com/feeds/videos.xml?channel_id=UCHuiy8bXnmK5nisYHUd1J5g",
|
|
615
|
+
"tier": 4,
|
|
616
|
+
"tags": ["video", "hardware"]
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"id": "yt_tensorflow",
|
|
620
|
+
"name": "YouTube - TensorFlow",
|
|
621
|
+
"type": "rss",
|
|
622
|
+
"url": "https://www.youtube.com/feeds/videos.xml?channel_id=UC0rqucBdTuFTjJiefW5t-IQ",
|
|
623
|
+
"tier": 4,
|
|
624
|
+
"tags": ["video", "framework"]
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"id": "yt_towards_datascience",
|
|
628
|
+
"name": "YouTube - Towards Data Science",
|
|
629
|
+
"type": "rss",
|
|
630
|
+
"url": "https://www.youtube.com/feeds/videos.xml?channel_id=UCuHZ1UYfHRqk3-5N5oc97Kw",
|
|
631
|
+
"tier": 4,
|
|
632
|
+
"tags": ["video", "community"]
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"id": "yt_two_minute_papers",
|
|
636
|
+
"name": "YouTube - Two Minute Papers",
|
|
637
|
+
"type": "rss",
|
|
638
|
+
"url": "https://www.youtube.com/feeds/videos.xml?channel_id=UCbfYPyITQ-7l4upoX8nvctg",
|
|
639
|
+
"tier": 4,
|
|
640
|
+
"tags": ["video", "research"]
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"id": "yt_yannic_kilcher",
|
|
644
|
+
"name": "YouTube - Yannic Kilcher",
|
|
645
|
+
"type": "rss",
|
|
646
|
+
"url": "https://www.youtube.com/feeds/videos.xml?channel_id=UCZHmQk67mSJgfCCTn7xBfew",
|
|
647
|
+
"tier": 4,
|
|
648
|
+
"tags": ["video", "research"]
|
|
649
|
+
}
|
|
650
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/resources/index.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,sBAAsB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAC;AAEtE,OAAO,EAAE,YAAY,EAAE,CAAC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import eslint from '@eslint/js';
|
|
2
|
+
import tseslint from 'typescript-eslint';
|
|
3
|
+
import globals from 'globals';
|
|
4
|
+
|
|
5
|
+
export default tseslint.config(
|
|
6
|
+
eslint.configs.recommended,
|
|
7
|
+
...tseslint.configs.recommended,
|
|
8
|
+
{
|
|
9
|
+
languageOptions: {
|
|
10
|
+
globals: {
|
|
11
|
+
...globals.node,
|
|
12
|
+
},
|
|
13
|
+
},
|
|
14
|
+
rules: {
|
|
15
|
+
'@typescript-eslint/no-explicit-any': 'off',
|
|
16
|
+
'no-unused-vars': 'off',
|
|
17
|
+
'@typescript-eslint/no-unused-vars': [
|
|
18
|
+
'error',
|
|
19
|
+
{
|
|
20
|
+
'argsIgnorePattern': '^_',
|
|
21
|
+
},
|
|
22
|
+
],
|
|
23
|
+
'prefer-const': 'error'
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
ignores: ['dist/', 'node_modules/', '_reference/'],
|
|
28
|
+
}
|
|
29
|
+
);
|