-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub_stars_mirror.html
More file actions
484 lines (482 loc) · 357 KB
/
github_stars_mirror.html
File metadata and controls
484 lines (482 loc) · 357 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>GitHub stars mirror (675 repos)</title>
<script src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="./readme_render.js"></script>
<script src="./stars_live_graph.js"></script>
<style>
* { box-sizing: border-box; margin: 0; }
body { background: #0f0f1a; color: #e0e0e0; font-family: system-ui, sans-serif; height: 100vh; display: flex; flex-direction: column; }
header { padding: 10px 14px; border-bottom: 1px solid #2a2a4e; font-size: 13px; color: #aaa; }
header a { color: #60a5fa; }
body.embed header { display: none; }
#graph { flex: 1; min-height: 0; touch-action: none; }
#panel { width: min(400px, 42vw); border-left: 1px solid #2a2a4e; padding: 12px 14px; font-size: 12px; overflow: auto; min-width: 0; }
body.embed #panel { display: none; }
body.embed .wrap { flex: 1; }
body.embed .stars-dash {
position: fixed; top: 8px; left: 8px; z-index: 30; display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
font-size: 11px; background: rgba(15, 15, 26, 0.94); border: 1px solid #2a2a4e; padding: 6px 10px; border-radius: 8px;
max-width: min(380px, 94vw); color: #ccc;
}
body:not(.embed) .stars-dash { display: none; }
.stars-dash label { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.stars-dash button {
margin: 0; padding: 4px 8px; border-radius: 6px; border: 1px solid #2a2a4e; background: #1a1a2e; color: #e0e0e0;
cursor: pointer; font-size: 10px;
}
.stars-dash #stars-link-st { font-size: 10px; color: #888; min-width: 4em; }
body.embed #stars-dash { display: none !important; }
div.vis-network-tooltip, div.vis-network-tooltip * {
font-size: 11px !important; line-height: 1.3 !important;
max-width: min(260px, 60vw) !important; padding: 4px 7px !important;
white-space: pre-wrap !important; word-break: break-word;
font-family: system-ui, sans-serif !important;
}
#panel h2 { font-size: 11px; text-transform: uppercase; color: #888; margin-bottom: 8px; }
#panel a { color: #60a5fa; word-break: break-all; }
.wrap { display: flex; flex: 1; min-height: 0; }
#readme-local { margin-top: 10px; font-size: 12px; line-height: 1.5; color: #ccc; max-height: 55vh; overflow: auto; width: 100%; min-width: 0; }
#readme-local.readme-prose img { max-width: 100% !important; height: auto !important; }
#readme-local.readme-prose h1 { font-size: 15px; color: #f0f0f0; margin: 0.5em 0 0.25em; }
#readme-local.readme-prose h2, #readme-local.readme-prose h3 { font-size: 13px; color: #e8e8e8; }
#readme-local.readme-prose pre, #readme-local.readme-prose code { font-size: 10px; }
</style>
</head>
<body>
<header>
<strong>GitHub stars</strong> · 675 repos + hub · Open <a href="./graph_unified.html" style="color:#93c5fd">graph_unified.html</a> (Spellbook + stars, same folder).
</header>
<div class="wrap">
<div id="graph"></div>
<div id="stars-dash" class="stars-dash" aria-label="Draw custom links">
<label><input type="checkbox" id="stars-link-mode"/> Link mode</label>
<span id="stars-link-st">Off</span>
<button type="button" id="stars-link-can">Cancel</button>
<button type="button" id="stars-link-clr">Clear my links</button>
</div>
<div id="panel">
<h2>Selected</h2>
<div id="info">Click a repo node…</div>
<div id="readme-local"></div>
</div>
</div>
<script>
const EMBED = new URLSearchParams(location.search).get('embed') === '1';
if (EMBED) document.body.classList.add('embed');
const STARS_GITHUB_USER = 'nickarchuleta';
const STARS_GROUP_DEFS = [{"id": "mcp_ext", "label": "MCP & Extension Ecosystem", "color": "#EDC948"}, {"id": "ai_agent_fw", "label": "AI Agent Frameworks", "color": "#F28E2B"}, {"id": "local_ai_inf", "label": "Local AI Inference", "color": "#E15759"}, {"id": "browser_auto", "label": "Browser & Web Automation", "color": "#76B7B2"}, {"id": "kg_rag", "label": "Knowledge Graphs & RAG", "color": "#59A14F"}, {"id": "multi_agent", "label": "Multi-Agent Orchestration", "color": "#B07AA1"}, {"id": "code_intel", "label": "Code Intelligence Tools", "color": "#FF9DA7"}, {"id": "data_ds", "label": "Data & Datasets", "color": "#D37295"}, {"id": "llm_api", "label": "LLM Providers & APIs", "color": "#4E79A7"}, {"id": "cv", "label": "Computer Vision", "color": "#86BCB6"}, {"id": "security", "label": "Security & OSINT", "color": "#9C755F"}, {"id": "quant", "label": "Quantitative Finance", "color": "#FABFD2"}, {"id": "dev_cli", "label": "Developer CLI Tools", "color": "#FFD700"}, {"id": "spellbook", "label": "Spellbook Platform", "color": "#B6992D"}, {"id": "doc_proc", "label": "Document Processing", "color": "#79706E"}, {"id": "rl", "label": "Reinforcement Learning", "color": "#D95F02"}, {"id": "voice", "label": "Voice & Audio", "color": "#7293CB"}, {"id": "hw_iot", "label": "Hardware & IoT", "color": "#E7298A"}, {"id": "ui_design", "label": "UI & Design Tools", "color": "#66A61E"}, {"id": "auto_agents", "label": "Autonomous Agents", "color": "#E6AB02"}, {"id": "search_ret", "label": "Search & Retrieval", "color": "#A6761D"}, {"id": "memory", "label": "Memory & Persistence", "color": "#666666"}, {"id": "workflow", "label": "Workflow Automation", "color": "#CC79A7"}, {"id": "training", "label": "Model Training", "color": "#56B4E9"}, {"id": "edge_mobile", "label": "Edge & Mobile AI", "color": "#F0E442"}, {"id": "gaming", "label": "Gaming & Simulation", "color": "#0072B2"}, {"id": "observability", "label": "Observability & Monitoring", "color": "#D55E00"}, {"id": "mac", "label": "This Mac & Apple", "color": "#4E79A7"}, {"id": "ai_code", "label": "AI coding stack", "color": "#F28E2B"}, {"id": "misc", "label": "Everything else", "color": "#BAB0AC"}];
const FALLBACK_NODES = [{"id": "_github_stars_hub", "label": "\u2605 GitHub stars", "color": {"background": "#f59e0b", "border": "#d97706"}, "size": 28, "font": {"size": 14, "color": "#fff"}, "title": "Hub \u2014 675 repos from master_stars_all.json. Click a node for GitHub.", "_star_group": "hub"}, {"id": "star_Developer-Y_math-science-video-lectures", "label": "math-science-video-lectures", "full_name": "Developer-Y/math-science-video-lectures", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 22.501014856816898, "font": {"size": 0}, "title": "Developer-Y/math-science-video-lectures\n2109\u2605 \u00b7 \u2014\nList of Science courses with video lectures", "url": "https://github.com/Developer-Y/math-science-video-lectures", "_star_group": "misc"}, {"id": "star_Zen4-bit_Proxima", "label": "Proxima", "full_name": "Zen4-bit/Proxima", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 15.73616341443881, "font": {"size": 0}, "title": "Zen4-bit/Proxima\n199\u2605 \u00b7 JavaScript\nMulti-AI MCP Server - Connect ChatGPT, Claude, Gemini & Perplexity to your coding tools without any API", "url": "https://github.com/Zen4-bit/Proxima", "_star_group": "mcp_ext"}, {"id": "star_MobAI-App_ios-builder", "label": "ios-builder", "full_name": "MobAI-App/ios-builder", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 16.184722281490046, "font": {"size": 0}, "title": "MobAI-App/ios-builder\n250\u2605 \u00b7 Go\n", "url": "https://github.com/MobAI-App/ios-builder", "_star_group": "mac"}, {"id": "star_mvt-project_mvt", "label": "mvt", "full_name": "mvt-project/mvt", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 28, "font": {"size": 0}, "title": "mvt-project/mvt\n12280\u2605 \u00b7 Python\nMVT (Mobile Verification Toolkit) helps with conducting forensics of mobile devices in order to find signs of a potential compromise.", "url": "https://github.com/mvt-project/mvt", "_star_group": "multi_agent"}, {"id": "star_backnotprop_plannotator", "label": "plannotator", "full_name": "backnotprop/plannotator", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 25.631130971825005, "font": {"size": 0}, "title": "backnotprop/plannotator\n4151\u2605 \u00b7 TypeScript\nAnnotate and review coding agent plans and code diffs visually, share with your team, send feedback to agents with one click.", "url": "https://github.com/backnotprop/plannotator", "_star_group": "ai_code"}, {"id": "star_danielmiessler_Personal_AI_Infrastructure", "label": "Personal_AI_Infrastructure", "full_name": "danielmiessler/Personal_AI_Infrastructure", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "danielmiessler/Personal_AI_Infrastructure\n11365\u2605 \u00b7 TypeScript\nAgentic AI Infrastructure for magnifying HUMAN capabilities.", "url": "https://github.com/danielmiessler/Personal_AI_Infrastructure", "_star_group": "misc"}, {"id": "star_matevip_mateclaw", "label": "mateclaw", "full_name": "matevip/mateclaw", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 14.600849812976683, "font": {"size": 0}, "title": "matevip/mateclaw\n102\u2605 \u00b7 Java\n\ud83e\udd16 MateClaw \u2014 Java + Vue 3 AI Assistant with Multi-Agent Orchestration, MCP Protocol, Skills & Memory, and Multi-Channel Support. Built on Spring AI Alibaba.", "url": "https://github.com/matevip/mateclaw", "_star_group": "mcp_ext"}, {"id": "star_computer-vision-with-marco_yolo-training-template", "label": "yolo-training-template", "full_name": "computer-vision-with-marco/yolo-training-template", "color": {"background": "#86BCB6", "border": "#86BCB6"}, "size": 17.204450590526324, "font": {"size": 0}, "title": "computer-vision-with-marco/yolo-training-template\n397\u2605 \u00b7 Python\nIn this repo there are some tips and a template to train your YOLO model for any kind of computer vision application", "url": "https://github.com/computer-vision-with-marco/yolo-training-template", "_star_group": "cv"}, {"id": "star_Ibrahim-3d_orchestrator-supaconductor", "label": "orchestrator-supaconductor", "full_name": "Ibrahim-3d/orchestrator-supaconductor", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 16.72345399627517, "font": {"size": 0}, "title": "Ibrahim-3d/orchestrator-supaconductor\n322\u2605 \u00b7 Python\nMulti-agent orchestration system for Claude Code with parallel execution, automated quality gates, Board of Directors, and bundled Superpowers skills", "url": "https://github.com/Ibrahim-3d/orchestrator-supaconductor", "_star_group": "multi_agent"}, {"id": "star_Michaelliv_markit", "label": "markit", "full_name": "Michaelliv/markit", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 20.144763978687877, "font": {"size": 0}, "title": "Michaelliv/markit\n1120\u2605 \u00b7 TypeScript\n\ud83d\udd8d\ufe0f Convert anything to markdown. Mark it.", "url": "https://github.com/Michaelliv/markit", "_star_group": "misc"}, {"id": "star_kzaremski_apple-notes-exporter", "label": "apple-notes-exporter", "full_name": "kzaremski/apple-notes-exporter", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 17.038928746215237, "font": {"size": 0}, "title": "kzaremski/apple-notes-exporter\n370\u2605 \u00b7 Swift\nMacOS app written in Swift that bulk exports Apple Notes (including iCloud Notes) to a multitude of formats preserving note folder structure.", "url": "https://github.com/kzaremski/apple-notes-exporter", "_star_group": "mac"}, {"id": "star_davidliuk_graph-of-skills", "label": "graph-of-skills", "full_name": "davidliuk/graph-of-skills", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.562806968803505, "font": {"size": 0}, "title": "davidliuk/graph-of-skills\n47\u2605 \u00b7 Python\nDependency-Aware Structural Retrieval for Massive Agent Skills", "url": "https://github.com/davidliuk/graph-of-skills", "_star_group": "misc"}, {"id": "star_nickarchuleta_First-repo", "label": "First-repo", "full_name": "nickarchuleta/First-repo", "color": {"background": "#B6992D", "border": "#B6992D"}, "size": 11.0, "font": {"size": 0}, "title": "nickarchuleta/First-repo\n1\u2605 \u00b7 \u2014\ntesting", "url": "https://github.com/nickarchuleta/First-repo", "_star_group": "spellbook"}, {"id": "star_Crosstalk-Solutions_project-nomad", "label": "project-nomad", "full_name": "Crosstalk-Solutions/project-nomad", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "Crosstalk-Solutions/project-nomad\n23433\u2605 \u00b7 TypeScript\nProject N.O.M.A.D, is a self-contained, offline survival computer packed with critical tools, knowledge, and AI to keep you informed and empowered\u2014anytime, anywhere.", "url": "https://github.com/Crosstalk-Solutions/project-nomad", "_star_group": "misc"}, {"id": "star_TapXWorld_ChinaTextbook", "label": "ChinaTextbook", "full_name": "TapXWorld/ChinaTextbook", "color": {"background": "#79706E", "border": "#79706E"}, "size": 28, "font": {"size": 0}, "title": "TapXWorld/ChinaTextbook\n68845\u2605 \u00b7 Roff\n\u6240\u6709\u5c0f\u521d\u9ad8\u3001\u5927\u5b66PDF\u6559\u6750\u3002", "url": "https://github.com/TapXWorld/ChinaTextbook", "_star_group": "doc_proc"}, {"id": "star_ahujasid_blender-mcp", "label": "blender-mcp", "full_name": "ahujasid/blender-mcp", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 28, "font": {"size": 0}, "title": "ahujasid/blender-mcp\n19431\u2605 \u00b7 Python\n", "url": "https://github.com/ahujasid/blender-mcp", "_star_group": "mcp_ext"}, {"id": "star_anthropics_claude-cookbooks", "label": "claude-cookbooks", "full_name": "anthropics/claude-cookbooks", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "anthropics/claude-cookbooks\n39328\u2605 \u00b7 Jupyter Notebook\nA collection of notebooks/recipes showcasing some fun and effective ways of using Claude.", "url": "https://github.com/anthropics/claude-cookbooks", "_star_group": "llm_api"}, {"id": "star_snarktank_ralph", "label": "ralph", "full_name": "snarktank/ralph", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "snarktank/ralph\n16443\u2605 \u00b7 TypeScript\nRalph is an autonomous AI agent loop that runs repeatedly until all PRD items are complete. ", "url": "https://github.com/snarktank/ralph", "_star_group": "misc"}, {"id": "star_multica-ai_multica", "label": "multica", "full_name": "multica-ai/multica", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "multica-ai/multica\n10841\u2605 \u00b7 TypeScript\nThe open-source managed agents platform. Turn coding agents into real teammates \u2014 assign tasks, track progress, compound skills.", "url": "https://github.com/multica-ai/multica", "_star_group": "misc"}, {"id": "star_thedotmack_claude-mem", "label": "claude-mem", "full_name": "thedotmack/claude-mem", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "thedotmack/claude-mem\n52741\u2605 \u00b7 TypeScript\nA Claude Code plugin that automatically captures everything Claude does during your coding sessions, compresses it with AI (using Claude's agent-sdk), and injects relevant context ", "url": "https://github.com/thedotmack/claude-mem", "_star_group": "ai_agent_fw"}, {"id": "star_agiresearch_WarAgent", "label": "WarAgent", "full_name": "agiresearch/WarAgent", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 17.3511131712799, "font": {"size": 0}, "title": "agiresearch/WarAgent\n422\u2605 \u00b7 Python\nWarAgent: LLM-based Multi-Agent Simulation of World Wars", "url": "https://github.com/agiresearch/WarAgent", "_star_group": "multi_agent"}, {"id": "star_Kruszoneq_macUSB", "label": "macUSB", "full_name": "Kruszoneq/macUSB", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 20.607255948356766, "font": {"size": 0}, "title": "Kruszoneq/macUSB\n1282\u2605 \u00b7 Swift\nDownload. Flash. Boot. The all-in-one macOS USB creator", "url": "https://github.com/Kruszoneq/macUSB", "_star_group": "mac"}, {"id": "star_SprocketLab_slop-code-bench", "label": "slop-code-bench", "full_name": "SprocketLab/slop-code-bench", "color": {"background": "#D37295", "border": "#D37295"}, "size": 13.612141097668044, "font": {"size": 0}, "title": "SprocketLab/slop-code-bench\n49\u2605 \u00b7 Python\nSlopCodeBench: Measuring Code Erosion Under Iterative Specification Refinement", "url": "https://github.com/SprocketLab/slop-code-bench", "_star_group": "data_ds"}, {"id": "star_barseghyanartur_app-menu", "label": "app-menu", "full_name": "barseghyanartur/app-menu", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 14.044084299509898, "font": {"size": 0}, "title": "barseghyanartur/app-menu\n69\u2605 \u00b7 Swift\nThe missing Applications Menu for macOS", "url": "https://github.com/barseghyanartur/app-menu", "_star_group": "mac"}, {"id": "star_google-deepmind_gemma", "label": "gemma", "full_name": "google-deepmind/gemma", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 26.43582628370131, "font": {"size": 0}, "title": "google-deepmind/gemma\n4833\u2605 \u00b7 Python\nGemma open-weight LLM library, from Google DeepMind", "url": "https://github.com/google-deepmind/gemma", "_star_group": "misc"}, {"id": "star_open-compass_opencompass", "label": "opencompass", "full_name": "open-compass/opencompass", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "open-compass/opencompass\n6868\u2605 \u00b7 Python\nOpenCompass is an LLM evaluation platform, supporting a wide range of models (Llama3, Mistral, InternLM2,GPT-4,LLaMa2, Qwen,GLM, Claude, etc) over 100+ datasets.", "url": "https://github.com/open-compass/opencompass", "_star_group": "llm_api"}, {"id": "star_openai_evals", "label": "evals", "full_name": "openai/evals", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "openai/evals\n18193\u2605 \u00b7 Python\nEvals is a framework for evaluating LLMs and LLM systems, and an open-source registry of benchmarks.", "url": "https://github.com/openai/evals", "_star_group": "llm_api"}, {"id": "star_varmabudharaju_pgsemantic", "label": "pgsemantic", "full_name": "varmabudharaju/pgsemantic", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.537611071716059, "font": {"size": 0}, "title": "varmabudharaju/pgsemantic\n46\u2605 \u00b7 Python\nZero-config semantic search for any PostgreSQL database. pip install pgsemantic, three commands, done", "url": "https://github.com/varmabudharaju/pgsemantic", "_star_group": "misc"}, {"id": "star_tavily-ai_tavily-mcp", "label": "tavily-mcp", "full_name": "tavily-ai/tavily-mcp", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 21.75002177231123, "font": {"size": 0}, "title": "tavily-ai/tavily-mcp\n1748\u2605 \u00b7 JavaScript\nProduction ready MCP server with real-time search, extract, map & crawl.", "url": "https://github.com/tavily-ai/tavily-mcp", "_star_group": "mcp_ext"}, {"id": "star_travisvn_awesome-claude-skills", "label": "awesome-claude-skills", "full_name": "travisvn/awesome-claude-skills", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "travisvn/awesome-claude-skills\n11188\u2605 \u00b7 \u2014\nA curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows \u2014 particularly Claude Code", "url": "https://github.com/travisvn/awesome-claude-skills", "_star_group": "llm_api"}, {"id": "star_EnzeD_r3f-skills", "label": "r3f-skills", "full_name": "EnzeD/r3f-skills", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.156906124345767, "font": {"size": 0}, "title": "EnzeD/r3f-skills\n75\u2605 \u00b7 \u2014\n", "url": "https://github.com/EnzeD/r3f-skills", "_star_group": "misc"}, {"id": "star_andrivet_ADVobfuscator", "label": "ADVobfuscator", "full_name": "andrivet/ADVobfuscator", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 21.696536927688015, "font": {"size": 0}, "title": "andrivet/ADVobfuscator\n1724\u2605 \u00b7 C++\nObfuscation library based on C++20 and metaprogramming", "url": "https://github.com/andrivet/ADVobfuscator", "_star_group": "misc"}, {"id": "star_Doc-Steve_dendritic-design-with-flake-parts", "label": "dendritic-design-with-flake-parts", "full_name": "Doc-Steve/dendritic-design-with-flake-parts", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.509930333790408, "font": {"size": 0}, "title": "Doc-Steve/dendritic-design-with-flake-parts\n292\u2605 \u00b7 Nix\nA guide on how to structure your Nix code with Flake Parts using the Dendritic Pattern", "url": "https://github.com/Doc-Steve/dendritic-design-with-flake-parts", "_star_group": "misc"}, {"id": "star_krzysztofzablocki_Inject", "label": "Inject", "full_name": "krzysztofzablocki/Inject", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 24.63484215294478, "font": {"size": 0}, "title": "krzysztofzablocki/Inject\n3400\u2605 \u00b7 Swift\nHot Reloading for Swift applications! ", "url": "https://github.com/krzysztofzablocki/Inject", "_star_group": "mac"}, {"id": "star_luongnv89_asm", "label": "asm", "full_name": "luongnv89/asm", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.599724624165487, "font": {"size": 0}, "title": "luongnv89/asm\n185\u2605 \u00b7 TypeScript\nThe universal skill manager for AI coding agents.", "url": "https://github.com/luongnv89/asm", "_star_group": "misc"}, {"id": "star_timwuhaotian_the-pair", "label": "the-pair", "full_name": "timwuhaotian/the-pair", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 16.695776512210067, "font": {"size": 0}, "title": "timwuhaotian/the-pair\n318\u2605 \u00b7 TypeScript\nThe Pair - Automated pair programming \u2014 grab a coffee while two AI agents cross-check each other's work", "url": "https://github.com/timwuhaotian/the-pair", "_star_group": "llm_api"}, {"id": "star_apache_jmeter", "label": "jmeter", "full_name": "apache/jmeter", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "apache/jmeter\n9320\u2605 \u00b7 Java\nApache JMeter open-source load testing tool for analyzing and measuring the performance of a variety of services", "url": "https://github.com/apache/jmeter", "_star_group": "misc"}, {"id": "star_Robbyant_lingbot-world", "label": "lingbot-world", "full_name": "Robbyant/lingbot-world", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 24.594959586560766, "font": {"size": 0}, "title": "Robbyant/lingbot-world\n3372\u2605 \u00b7 Python\nAdvancing Open-source World Models", "url": "https://github.com/Robbyant/lingbot-world", "_star_group": "misc"}, {"id": "star_dstackai_dstack", "label": "dstack", "full_name": "dstackai/dstack", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 22.469637985133886, "font": {"size": 0}, "title": "dstackai/dstack\n2093\u2605 \u00b7 Python\nControl plane for agents and engineers to provision compute and run training and inference across NVIDIA, AMD, TPU, and Tenstorrent GPUs\u2014on clouds, Kubernetes, and bare-metal clust", "url": "https://github.com/dstackai/dstack", "_star_group": "multi_agent"}, {"id": "star_UW-Lab_UWLab", "label": "UWLab", "full_name": "UW-Lab/UWLab", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.025484219157125, "font": {"size": 0}, "title": "UW-Lab/UWLab\n231\u2605 \u00b7 Python\n", "url": "https://github.com/UW-Lab/UWLab", "_star_group": "misc"}, {"id": "star_agentclientprotocol_agent-client-protocol", "label": "agent-client-protocol", "full_name": "agentclientprotocol/agent-client-protocol", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 23.676235651399637, "font": {"size": 0}, "title": "agentclientprotocol/agent-client-protocol\n2769\u2605 \u00b7 Rust\n A protocol for connecting any editor to any agent", "url": "https://github.com/agentclientprotocol/agent-client-protocol", "_star_group": "misc"}, {"id": "star_WeianMao_triattention", "label": "triattention", "full_name": "WeianMao/triattention", "color": {"background": "#B6992D", "border": "#B6992D"}, "size": 17.717416220297558, "font": {"size": 0}, "title": "WeianMao/triattention\n489\u2605 \u00b7 Python\nTriAttention \u2014 Efficient long reasoning with trigonometric KV cache compression. Enables OpenClaw local deployment on memory-constrained GPUs.", "url": "https://github.com/WeianMao/triattention", "_star_group": "spellbook"}, {"id": "star_fabriziosalmi_caddy-waf", "label": "caddy-waf", "full_name": "fabriziosalmi/caddy-waf", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 18.906816275446253, "font": {"size": 0}, "title": "fabriziosalmi/caddy-waf\n755\u2605 \u00b7 Go\nCaddy WAF (Regex Rules, IP and DNS filtering, Rate Limiting, GeoIP, Tor, Anomaly Detection)", "url": "https://github.com/fabriziosalmi/caddy-waf", "_star_group": "mac"}, {"id": "star_tonybanters_oxwm", "label": "oxwm", "full_name": "tonybanters/oxwm", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 18.27902651762573, "font": {"size": 0}, "title": "tonybanters/oxwm\n605\u2605 \u00b7 Zig\n", "url": "https://github.com/tonybanters/oxwm", "_star_group": "misc"}, {"id": "star_dpaulat_supercell-wx", "label": "supercell-wx", "full_name": "dpaulat/supercell-wx", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 17.174380433107665, "font": {"size": 0}, "title": "dpaulat/supercell-wx\n392\u2605 \u00b7 C++\nSupercell Wx is a free, open source advanced weather radar viewer.", "url": "https://github.com/dpaulat/supercell-wx", "_star_group": "misc"}, {"id": "star_facebookresearch_vggt", "label": "vggt", "full_name": "facebookresearch/vggt", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "facebookresearch/vggt\n12835\u2605 \u00b7 Python\n[CVPR 2025 Best Paper Award] VGGT: Visual Geometry Grounded Transformer", "url": "https://github.com/facebookresearch/vggt", "_star_group": "misc"}, {"id": "star_juanma0511_Kknd_Root_Detector", "label": "Kknd_Root_Detector", "full_name": "juanma0511/Kknd_Root_Detector", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 13.660143882499947, "font": {"size": 0}, "title": "juanma0511/Kknd_Root_Detector\n51\u2605 \u00b7 Kotlin\nA tool to detect root on Android", "url": "https://github.com/juanma0511/Kknd_Root_Detector", "_star_group": "multi_agent"}, {"id": "star_plastic-labs_honcho", "label": "honcho", "full_name": "plastic-labs/honcho", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 22.84534311121923, "font": {"size": 0}, "title": "plastic-labs/honcho\n2290\u2605 \u00b7 Python\n Memory library for building stateful agents", "url": "https://github.com/plastic-labs/honcho", "_star_group": "ai_agent_fw"}, {"id": "star_ghidraninja_game-boy-bitcoin-miner", "label": "game-boy-bitcoin-miner", "full_name": "ghidraninja/game-boy-bitcoin-miner", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.600849812976683, "font": {"size": 0}, "title": "ghidraninja/game-boy-bitcoin-miner\n102\u2605 \u00b7 C\nThe Game Boy ROM of the Game Boy bitcoin miner!", "url": "https://github.com/ghidraninja/game-boy-bitcoin-miner", "_star_group": "misc"}, {"id": "star_opendatalab_MinerU-Diffusion", "label": "MinerU-Diffusion", "full_name": "opendatalab/MinerU-Diffusion", "color": {"background": "#79706E", "border": "#79706E"}, "size": 17.830308936900597, "font": {"size": 0}, "title": "opendatalab/MinerU-Diffusion\n511\u2605 \u00b7 Python\nA diffusion-based framework for document OCR that replaces autoregressive decoding with block-level parallel diffusion decoding. ", "url": "https://github.com/opendatalab/MinerU-Diffusion", "_star_group": "doc_proc"}, {"id": "star_anthropics_skills", "label": "skills", "full_name": "anthropics/skills", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "anthropics/skills\n116546\u2605 \u00b7 Python\nPublic repository for Agent Skills", "url": "https://github.com/anthropics/skills", "_star_group": "llm_api"}, {"id": "star_AgriciDaniel_claude-obsidian", "label": "claude-obsidian", "full_name": "AgriciDaniel/claude-obsidian", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 19.551266048978707, "font": {"size": 0}, "title": "AgriciDaniel/claude-obsidian\n933\u2605 \u00b7 Shell\nClaude + Obsidian knowledge companion. Persistent, compounding wiki vault based on Karpathy's LLM Wiki pattern. /wiki /save /autoresearch", "url": "https://github.com/AgriciDaniel/claude-obsidian", "_star_group": "misc"}, {"id": "star_MIT-SPARK_Hydra", "label": "Hydra", "full_name": "MIT-SPARK/Hydra", "color": {"background": "#D37295", "border": "#D37295"}, "size": 19.69762097553616, "font": {"size": 0}, "title": "MIT-SPARK/Hydra\n977\u2605 \u00b7 C++\nA system for building 3D Scene Graphs from sensor data in real-time", "url": "https://github.com/MIT-SPARK/Hydra", "_star_group": "data_ds"}, {"id": "star_datalab-to_chandra", "label": "chandra", "full_name": "datalab-to/chandra", "color": {"background": "#79706E", "border": "#79706E"}, "size": 28, "font": {"size": 0}, "title": "datalab-to/chandra\n8584\u2605 \u00b7 Python\nOCR model that handles complex tables, forms, handwriting with full layout.", "url": "https://github.com/datalab-to/chandra", "_star_group": "doc_proc"}, {"id": "star_stanfordnlp_dspy", "label": "dspy", "full_name": "stanfordnlp/dspy", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "stanfordnlp/dspy\n33657\u2605 \u00b7 Python\nDSPy: The framework for programming\u2014not prompting\u2014language models", "url": "https://github.com/stanfordnlp/dspy", "_star_group": "misc"}, {"id": "star_piercelamb_deep-project", "label": "deep-project", "full_name": "piercelamb/deep-project", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 14.525167635142942, "font": {"size": 0}, "title": "piercelamb/deep-project\n97\u2605 \u00b7 Python\nClaude Code plugin that transforms vague software ideas into individual, ready-to-be-planned components", "url": "https://github.com/piercelamb/deep-project", "_star_group": "ai_code"}, {"id": "star_DearVa_Everywhere", "label": "Everywhere", "full_name": "DearVa/Everywhere", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 27.45843652650702, "font": {"size": 0}, "title": "DearVa/Everywhere\n5803\u2605 \u00b7 C#\nContext-aware AI assistant for your desktop. Ready to respond intelligently, seamlessly integrating multiple LLMs and MCP tools.", "url": "https://github.com/DearVa/Everywhere", "_star_group": "mcp_ext"}, {"id": "star_mohammadasim98_scenetok", "label": "scenetok", "full_name": "mohammadasim98/scenetok", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.304529699171045, "font": {"size": 0}, "title": "mohammadasim98/scenetok\n157\u2605 \u00b7 Python\n[CVPR '26] SceneTok: A Compressed, Diffusable Token Space for 3D Scenes", "url": "https://github.com/mohammadasim98/scenetok", "_star_group": "misc"}, {"id": "star_andreashappe_cochise", "label": "cochise", "full_name": "andreashappe/cochise", "color": {"background": "#9C755F", "border": "#9C755F"}, "size": 14.382069707677505, "font": {"size": 0}, "title": "andreashappe/cochise\n88\u2605 \u00b7 Python\nAutonomous Assumed Breach Penetration-Testing Active Directory Networks", "url": "https://github.com/andreashappe/cochise", "_star_group": "security"}, {"id": "star_define-private-public_PSRayTracing", "label": "PSRayTracing", "full_name": "define-private-public/PSRayTracing", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.73033733629012, "font": {"size": 0}, "title": "define-private-public/PSRayTracing\n323\u2605 \u00b7 Jupyter Notebook\nA (modern) C++ implementation of the Peter Shirley Ray Tracing mini-books (https://raytracing.github.io). Features a clean project structure, perf. improvements (compared to the or", "url": "https://github.com/define-private-public/PSRayTracing", "_star_group": "misc"}, {"id": "star_luoling8192_ai-coding-principles", "label": "ai-coding-principles", "full_name": "luoling8192/ai-coding-principles", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 15.337766777438318, "font": {"size": 0}, "title": "luoling8192/ai-coding-principles\n160\u2605 \u00b7 \u2014\nA collection of Claude Code skills that enforce coding discipline and prevent common AI coding anti-patterns.", "url": "https://github.com/luoling8192/ai-coding-principles", "_star_group": "ai_code"}, {"id": "star_tw93_Mole", "label": "Mole", "full_name": "tw93/Mole", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 28, "font": {"size": 0}, "title": "tw93/Mole\n46726\u2605 \u00b7 Shell\n\ud83d\udc39 Deep clean and optimize your Mac.", "url": "https://github.com/tw93/Mole", "_star_group": "dev_cli"}, {"id": "star_paperswithbacktest_awesome-systematic-trading", "label": "awesome-systematic-trading", "full_name": "paperswithbacktest/awesome-systematic-trading", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 28, "font": {"size": 0}, "title": "paperswithbacktest/awesome-systematic-trading\n7851\u2605 \u00b7 Python\nA curated list of awesome libraries, packages, strategies, books, blogs, tutorials for systematic trading.", "url": "https://github.com/paperswithbacktest/awesome-systematic-trading", "_star_group": "quant"}, {"id": "star_yusufkaraaslan_Skill_Seekers", "label": "Skill_Seekers", "full_name": "yusufkaraaslan/Skill_Seekers", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 28, "font": {"size": 0}, "title": "yusufkaraaslan/Skill_Seekers\n12744\u2605 \u00b7 Python\nConvert documentation websites, GitHub repositories, and PDFs into Claude AI skills with automatic conflict detection", "url": "https://github.com/yusufkaraaslan/Skill_Seekers", "_star_group": "mcp_ext"}, {"id": "star_Blaizzy_mlx-audio-swift", "label": "mlx-audio-swift", "full_name": "Blaizzy/mlx-audio-swift", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 18.103682356037062, "font": {"size": 0}, "title": "Blaizzy/mlx-audio-swift\n567\u2605 \u00b7 Swift\nA modular Swift SDK for audio processing with MLX on Apple Silicon", "url": "https://github.com/Blaizzy/mlx-audio-swift", "_star_group": "mac"}, {"id": "star_hamen_material-3-skill", "label": "material-3-skill", "full_name": "hamen/material-3-skill", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 17.333826435061013, "font": {"size": 0}, "title": "hamen/material-3-skill\n419\u2605 \u00b7 \u2014\nMaterial Design 3 skill for Claude Code \u2014 30+ components, design tokens, theming, responsive layout, and MD3 compliance audit", "url": "https://github.com/hamen/material-3-skill", "_star_group": "ai_code"}, {"id": "star_tensortrade-org_tensortrade", "label": "tensortrade", "full_name": "tensortrade-org/tensortrade", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 27.79626189000547, "font": {"size": 0}, "title": "tensortrade-org/tensortrade\n6150\u2605 \u00b7 Python\nAn open source reinforcement learning framework for training, evaluating, and deploying robust trading agents.", "url": "https://github.com/tensortrade-org/tensortrade", "_star_group": "quant"}, {"id": "star_runesleo_polymarket-toolkit", "label": "polymarket-toolkit", "full_name": "runesleo/polymarket-toolkit", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.365573990994484, "font": {"size": 0}, "title": "runesleo/polymarket-toolkit\n87\u2605 \u00b7 \u2014\nPolymarket address profile analysis tool \u2014 strategy detection, PnL breakdown, category mapping", "url": "https://github.com/runesleo/polymarket-toolkit", "_star_group": "misc"}, {"id": "star_HoangNguyen0403_agent-skills-standard", "label": "agent-skills-standard", "full_name": "HoangNguyen0403/agent-skills-standard", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 17.269722843860947, "font": {"size": 0}, "title": "HoangNguyen0403/agent-skills-standard\n408\u2605 \u00b7 TypeScript\nA collection of Agent Skills Standard and Best Practice for Programming Languages, Frameworks that help our AI Agent follow best practies on frameworks and programming laguages", "url": "https://github.com/HoangNguyen0403/agent-skills-standard", "_star_group": "multi_agent"}, {"id": "star_opensourcepos_opensourcepos", "label": "opensourcepos", "full_name": "opensourcepos/opensourcepos", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 25.617449581556414, "font": {"size": 0}, "title": "opensourcepos/opensourcepos\n4140\u2605 \u00b7 PHP\nOpen Source Point of Sale is a web based point of sale application written in PHP using CodeIgniter framework. It uses MySQL as the data back end and has a Bootstrap 3 based user i", "url": "https://github.com/opensourcepos/opensourcepos", "_star_group": "misc"}, {"id": "star_foryourhealth111-pixel_Vibe-Skills", "label": "Vibe-Skills", "full_name": "foryourhealth111-pixel/Vibe-Skills", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 21.084763105113968, "font": {"size": 0}, "title": "foryourhealth111-pixel/Vibe-Skills\n1465\u2605 \u00b7 Python\nWherever your AI supports skills, VibeSkills works. 340+ governed skills spanning coding, research, automation & creative work.", "url": "https://github.com/foryourhealth111-pixel/Vibe-Skills", "_star_group": "ai_code"}, {"id": "star_mk6i_open-oscar-server", "label": "open-oscar-server", "full_name": "mk6i/open-oscar-server", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 19.965201315739332, "font": {"size": 0}, "title": "mk6i/open-oscar-server\n1061\u2605 \u00b7 Go\nSelf-hostable instant messaging server compatible with classic AIM and ICQ clients written in golang. (Independently developed, not affiliated with or endorsed by AOL)", "url": "https://github.com/mk6i/open-oscar-server", "_star_group": "misc"}, {"id": "star_iamnotstatic_vibetime", "label": "vibetime", "full_name": "iamnotstatic/vibetime", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 12.77331681386511, "font": {"size": 0}, "title": "iamnotstatic/vibetime\n22\u2605 \u00b7 TypeScript\nTrack what you actually ship with AI.", "url": "https://github.com/iamnotstatic/vibetime", "_star_group": "misc"}, {"id": "star_manthrax_JSlug", "label": "JSlug", "full_name": "manthrax/JSlug", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.315311636595641, "font": {"size": 0}, "title": "manthrax/JSlug\n84\u2605 \u00b7 JavaScript\nJavascript implementation of Slug font loading and rendering, for THREEJS", "url": "https://github.com/manthrax/JSlug", "_star_group": "misc"}, {"id": "star_magsther_awesome-opentelemetry", "label": "awesome-opentelemetry", "full_name": "magsther/awesome-opentelemetry", "color": {"background": "#D55E00", "border": "#D55E00"}, "size": 19.510550981680638, "font": {"size": 0}, "title": "magsther/awesome-opentelemetry\n921\u2605 \u00b7 \u2014\nA curated list of OpenTelemetry resources", "url": "https://github.com/magsther/awesome-opentelemetry", "_star_group": "observability"}, {"id": "star_clowerweb_tts-studio", "label": "tts-studio", "full_name": "clowerweb/tts-studio", "color": {"background": "#7293CB", "border": "#7293CB"}, "size": 14.702737571328306, "font": {"size": 0}, "title": "clowerweb/tts-studio\n109\u2605 \u00b7 JavaScript\nTest and compare browser-based TTS models!", "url": "https://github.com/clowerweb/tts-studio", "_star_group": "voice"}, {"id": "star_Nagi-ovo_gemini-voyager", "label": "gemini-voyager", "full_name": "Nagi-ovo/gemini-voyager", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 28, "font": {"size": 0}, "title": "Nagi-ovo/gemini-voyager\n16371\u2605 \u00b7 TypeScript\nAn all-in-one enhancement suite for Google Gemini & AI Studio - timeline navigation, folder management, prompt library, and chat export in one powerful extension. / Google Gemini &", "url": "https://github.com/Nagi-ovo/gemini-voyager", "_star_group": "mcp_ext"}, {"id": "star_EnableSecurity_wafw00f", "label": "wafw00f", "full_name": "EnableSecurity/wafw00f", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 27.926121757950717, "font": {"size": 0}, "title": "EnableSecurity/wafw00f\n6287\u2605 \u00b7 Python\nWAFW00F allows one to identify and fingerprint Web Application Firewall (WAF) products protecting a website.", "url": "https://github.com/EnableSecurity/wafw00f", "_star_group": "misc"}, {"id": "star_nickarchuleta_graphify-viewer", "label": "graphify-viewer", "full_name": "nickarchuleta/graphify-viewer", "color": {"background": "#B6992D", "border": "#B6992D"}, "size": 11.0, "font": {"size": 0}, "title": "nickarchuleta/graphify-viewer\n1\u2605 \u00b7 HTML\nLocal-only HTML: your Spellbook + GitHub stars as interactive graphs\u2014not another bookmark list. Built for brains that think in remixes (Ableton energy): drag, cluster, read READMEs", "url": "https://github.com/nickarchuleta/graphify-viewer", "_star_group": "spellbook"}, {"id": "star_HashWarlock_nobody-plans-for-pi", "label": "nobody-plans-for-pi", "full_name": "HashWarlock/nobody-plans-for-pi", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 12.814298672885464, "font": {"size": 0}, "title": "HashWarlock/nobody-plans-for-pi\n23\u2605 \u00b7 TypeScript\nSelf-improving development workflows for pi coding agent. Subagent orchestration, TDD, systematic debugging. Adapted from obra/superpowers.", "url": "https://github.com/HashWarlock/nobody-plans-for-pi", "_star_group": "multi_agent"}, {"id": "star_OctagonAI_kalshi-trading-bot-cli", "label": "kalshi-trading-bot-cli", "full_name": "OctagonAI/kalshi-trading-bot-cli", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 15.82972776159874, "font": {"size": 0}, "title": "OctagonAI/kalshi-trading-bot-cli\n209\u2605 \u00b7 TypeScript\nAI-native CLI for trading Kalshi prediction markets. Runs deep fundamental research, generates independent probability estimates, computes edge vs. live order books, and executes t", "url": "https://github.com/OctagonAI/kalshi-trading-bot-cli", "_star_group": "quant"}, {"id": "star_jmilinovich_goal-md", "label": "goal-md", "full_name": "jmilinovich/goal-md", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.894053209092585, "font": {"size": 0}, "title": "jmilinovich/goal-md\n123\u2605 \u00b7 Shell\nA goal-specification file for autonomous coding agents. Generalizes Karpathy's autoresearch to domains with constructed metrics.", "url": "https://github.com/jmilinovich/goal-md", "_star_group": "misc"}, {"id": "star_OpenHands_software-agent-sdk", "label": "software-agent-sdk", "full_name": "OpenHands/software-agent-sdk", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 18.473069133997242, "font": {"size": 0}, "title": "OpenHands/software-agent-sdk\n649\u2605 \u00b7 Python\nA clean, modular SDK for building AI agents with OpenHands V1.", "url": "https://github.com/OpenHands/software-agent-sdk", "_star_group": "ai_agent_fw"}, {"id": "star_dylanebert_texel-splatting", "label": "texel-splatting", "full_name": "dylanebert/texel-splatting", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.629529383099008, "font": {"size": 0}, "title": "dylanebert/texel-splatting\n188\u2605 \u00b7 TypeScript\nPerspective-stable 3D pixel art", "url": "https://github.com/dylanebert/texel-splatting", "_star_group": "misc"}, {"id": "star_AmazingAng_PolyWorld", "label": "PolyWorld", "full_name": "AmazingAng/PolyWorld", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.304529699171045, "font": {"size": 0}, "title": "AmazingAng/PolyWorld\n157\u2605 \u00b7 TypeScript\nReal-time Polymarket prediction market visualization dashboard with an interactive world map.", "url": "https://github.com/AmazingAng/PolyWorld", "_star_group": "misc"}, {"id": "star_nikmcfly_MiroFish-Offline", "label": "MiroFish-Offline", "full_name": "nikmcfly/MiroFish-Offline", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 22.073626831652355, "font": {"size": 0}, "title": "nikmcfly/MiroFish-Offline\n1898\u2605 \u00b7 Python\nOffline multi-agent simulation & prediction engine. English fork of MiroFish with Neo4j + Ollama local stack.", "url": "https://github.com/nikmcfly/MiroFish-Offline", "_star_group": "multi_agent"}, {"id": "star_NousResearch_autonovel", "label": "autonovel", "full_name": "NousResearch/autonovel", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 18.003382477398453, "font": {"size": 0}, "title": "NousResearch/autonovel\n546\u2605 \u00b7 Python\nAn autonomous novel writing pipeline, by Hermes Agent", "url": "https://github.com/NousResearch/autonovel", "_star_group": "misc"}, {"id": "star_repowise-dev_repowise", "label": "repowise", "full_name": "repowise-dev/repowise", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 20.13878223441786, "font": {"size": 0}, "title": "repowise-dev/repowise\n1118\u2605 \u00b7 Python\nCodebase intelligence for AI-assisted engineering teams \u2014 auto-generated docs, git analytics, dead code detection, and architectural decisions via MCP.", "url": "https://github.com/repowise-dev/repowise", "_star_group": "mcp_ext"}, {"id": "star_MuseumofModernArt_collection", "label": "collection", "full_name": "MuseumofModernArt/collection", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 21.15176763526558, "font": {"size": 0}, "title": "MuseumofModernArt/collection\n1492\u2605 \u00b7 \u2014\nThe Museum of Modern Art (MoMA) collection data", "url": "https://github.com/MuseumofModernArt/collection", "_star_group": "misc"}, {"id": "star_steel-dev_steel-browser", "label": "steel-browser", "full_name": "steel-dev/steel-browser", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "steel-dev/steel-browser\n6846\u2605 \u00b7 TypeScript\n\ud83d\udd25 Open Source Browser API for AI Agents & Apps. Steel Browser is a batteries-included browser sandbox that lets you automate the web without worrying about infrastructure.", "url": "https://github.com/steel-dev/steel-browser", "_star_group": "misc"}, {"id": "star_parcadei_llm-tldr", "label": "llm-tldr", "full_name": "parcadei/llm-tldr", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 20.12079387255732, "font": {"size": 0}, "title": "parcadei/llm-tldr\n1112\u2605 \u00b7 Python\n95% token savings. 155x faster queries. 16 languages. LLMs can't read your entire codebase. TLDR extracts structure, traces dependencies, and gives them exactly what they need.", "url": "https://github.com/parcadei/llm-tldr", "_star_group": "misc"}, {"id": "star_google-gemini_gemini-cli", "label": "gemini-cli", "full_name": "google-gemini/gemini-cli", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 28, "font": {"size": 0}, "title": "google-gemini/gemini-cli\n101132\u2605 \u00b7 TypeScript\nAn open-source AI agent that brings the power of Gemini directly into your terminal.", "url": "https://github.com/google-gemini/gemini-cli", "_star_group": "mcp_ext"}, {"id": "star_Leonxlnx_taste-skill", "label": "taste-skill", "full_name": "Leonxlnx/taste-skill", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "Leonxlnx/taste-skill\n8282\u2605 \u00b7 \u2014\nTaste-Skill (High-Agency Frontend) - gives your AI good taste. stops the AI from generating boring, generic, "slop" ", "url": "https://github.com/Leonxlnx/taste-skill", "_star_group": "misc"}, {"id": "star_hummingbot_hummingbot", "label": "hummingbot", "full_name": "hummingbot/hummingbot", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 28, "font": {"size": 0}, "title": "hummingbot/hummingbot\n18137\u2605 \u00b7 Python\nOpen source software that helps you create and deploy high-frequency crypto trading bots", "url": "https://github.com/hummingbot/hummingbot", "_star_group": "quant"}, {"id": "star_tradesdontlie_tradingview-mcp", "label": "tradingview-mcp", "full_name": "tradesdontlie/tradingview-mcp", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 21.718882525183055, "font": {"size": 0}, "title": "tradesdontlie/tradingview-mcp\n1734\u2605 \u00b7 JavaScript\nAI-assisted TradingView chart analysis \u2014 connect Claude Code to your TradingView Desktop for personal workflow automation", "url": "https://github.com/tradesdontlie/tradingview-mcp", "_star_group": "mcp_ext"}, {"id": "star_gepa-ai_gepa", "label": "gepa", "full_name": "gepa-ai/gepa", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 24.755979265945207, "font": {"size": 0}, "title": "gepa-ai/gepa\n3486\u2605 \u00b7 Jupyter Notebook\nOptimize prompts, code, and more with AI-powered Reflective Text Evolution", "url": "https://github.com/gepa-ai/gepa", "_star_group": "misc"}, {"id": "star_iptv-org_iptv", "label": "iptv", "full_name": "iptv-org/iptv", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "iptv-org/iptv\n114570\u2605 \u00b7 TypeScript\nCollection of publicly available IPTV channels from all over the world", "url": "https://github.com/iptv-org/iptv", "_star_group": "misc"}, {"id": "star_Roasbeef_obsidian-claude-code", "label": "obsidian-claude-code", "full_name": "Roasbeef/obsidian-claude-code", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.773958957647618, "font": {"size": 0}, "title": "Roasbeef/obsidian-claude-code\n203\u2605 \u00b7 TypeScript\nA native Obsidian plugin that embeds Claude as an AI assistant directly within your vault.", "url": "https://github.com/Roasbeef/obsidian-claude-code", "_star_group": "misc"}, {"id": "star_AlexsJones_llmfit", "label": "llmfit", "full_name": "AlexsJones/llmfit", "color": {"background": "#E15759", "border": "#E15759"}, "size": 28, "font": {"size": 0}, "title": "AlexsJones/llmfit\n23197\u2605 \u00b7 Rust\nHundreds of models & providers. One command to find what runs on your hardware.", "url": "https://github.com/AlexsJones/llmfit", "_star_group": "local_ai_inf"}, {"id": "star_Luo-Yihao_FaithC", "label": "FaithC", "full_name": "Luo-Yihao/FaithC", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.093563024518833, "font": {"size": 0}, "title": "Luo-Yihao/FaithC\n239\u2605 \u00b7 Python\n[CVPR 2026 (Oral)] Official Torch/CUDA Implementation of Faithful Contouring", "url": "https://github.com/Luo-Yihao/FaithC", "_star_group": "misc"}, {"id": "star_tylfin_GeosPy", "label": "GeosPy", "full_name": "tylfin/GeosPy", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 14.716931681397762, "font": {"size": 0}, "title": "tylfin/GeosPy\n110\u2605 \u00b7 Cython\nHighly optimized geolocation inference package for spatial approximation", "url": "https://github.com/tylfin/GeosPy", "_star_group": "ai_code"}, {"id": "star_elder-plinius_G0DM0D3", "label": "G0DM0D3", "full_name": "elder-plinius/G0DM0D3", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 26.01183414315368, "font": {"size": 0}, "title": "elder-plinius/G0DM0D3\n4465\u2605 \u00b7 TypeScript\nLIBERATED AI CHAT", "url": "https://github.com/elder-plinius/G0DM0D3", "_star_group": "misc"}, {"id": "star_memvid_memvid", "label": "memvid", "full_name": "memvid/memvid", "color": {"background": "#59A14F", "border": "#59A14F"}, "size": 28, "font": {"size": 0}, "title": "memvid/memvid\n14893\u2605 \u00b7 Rust\nMemory layer for AI Agents. Replace complex RAG pipelines with a serverless, single-file memory layer. Give your agents instant retrieval and long-term memory.", "url": "https://github.com/memvid/memvid", "_star_group": "kg_rag"}, {"id": "star_ripienaar_free-for-dev", "label": "free-for-dev", "full_name": "ripienaar/free-for-dev", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "ripienaar/free-for-dev\n120670\u2605 \u00b7 HTML\nA list of SaaS, PaaS and IaaS offerings that have free tiers of interest to devops and infradev", "url": "https://github.com/ripienaar/free-for-dev", "_star_group": "misc"}, {"id": "star_marcelscruz_public-apis", "label": "public-apis", "full_name": "marcelscruz/public-apis", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "marcelscruz/public-apis\n8698\u2605 \u00b7 JavaScript\nA collaborative list of public APIs for developers", "url": "https://github.com/marcelscruz/public-apis", "_star_group": "misc"}, {"id": "star_owntone_owntone-server", "label": "owntone-server", "full_name": "owntone/owntone-server", "color": {"background": "#D95F02", "border": "#D95F02"}, "size": 23.18243328760971, "font": {"size": 0}, "title": "owntone/owntone-server\n2477\u2605 \u00b7 C\nAudio server that can play to AirPlay 1+2 speakers (multiroom), Chromecast and locally. Supports Spotify, internet radio and many file formats. Also MPD server, iTunes DAAP, smart ", "url": "https://github.com/owntone/owntone-server", "_star_group": "rl"}, {"id": "star_YishenTu_claudian", "label": "claudian", "full_name": "YishenTu/claudian", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "YishenTu/claudian\n7718\u2605 \u00b7 TypeScript\nAn Obsidian plugin that embeds Claude Code as an AI collaborator in your vault", "url": "https://github.com/YishenTu/claudian", "_star_group": "ai_code"}, {"id": "star_shiyu-coder_Kronos", "label": "Kronos", "full_name": "shiyu-coder/Kronos", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "shiyu-coder/Kronos\n16879\u2605 \u00b7 Python\nKronos: A Foundation Model for the Language of Financial Markets", "url": "https://github.com/shiyu-coder/Kronos", "_star_group": "mac"}, {"id": "star_coleam00_Archon", "label": "Archon", "full_name": "coleam00/Archon", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 28, "font": {"size": 0}, "title": "coleam00/Archon\n17541\u2605 \u00b7 TypeScript\nThe first open-source harness builder for AI coding. Make AI coding deterministic and repeatable.", "url": "https://github.com/coleam00/Archon", "_star_group": "dev_cli"}, {"id": "star_opendataloader-project_opendataloader-pdf", "label": "opendataloader-pdf", "full_name": "opendataloader-project/opendataloader-pdf", "color": {"background": "#79706E", "border": "#79706E"}, "size": 28, "font": {"size": 0}, "title": "opendataloader-project/opendataloader-pdf\n16475\u2605 \u00b7 Java\nPDF Parser for AI-ready data. Automate PDF accessibility. Open-source.", "url": "https://github.com/opendataloader-project/opendataloader-pdf", "_star_group": "doc_proc"}, {"id": "star_OpenBMB_VoxCPM", "label": "VoxCPM", "full_name": "OpenBMB/VoxCPM", "color": {"background": "#7293CB", "border": "#7293CB"}, "size": 28, "font": {"size": 0}, "title": "OpenBMB/VoxCPM\n12190\u2605 \u00b7 Python\nVoxCPM2: Tokenizer-Free TTS for Multilingual Speech Generation, Creative Voice Design, and True-to-Life Cloning", "url": "https://github.com/OpenBMB/VoxCPM", "_star_group": "voice"}, {"id": "star_eyaltoledano_claude-task-master", "label": "claude-task-master", "full_name": "eyaltoledano/claude-task-master", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "eyaltoledano/claude-task-master\n26520\u2605 \u00b7 JavaScript\nAn AI-powered task-management system you can drop into Cursor, Lovable, Windsurf, Roo, and others.", "url": "https://github.com/eyaltoledano/claude-task-master", "_star_group": "ai_code"}, {"id": "star_jomjol_AI-on-the-edge-device", "label": "AI-on-the-edge-device", "full_name": "jomjol/AI-on-the-edge-device", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "jomjol/AI-on-the-edge-device\n8271\u2605 \u00b7 C++\nEasy to use device for connecting "old" measuring units (water, power, gas, ...) to the digital world", "url": "https://github.com/jomjol/AI-on-the-edge-device", "_star_group": "misc"}, {"id": "star_autoscrape-labs_pydoll", "label": "pydoll", "full_name": "autoscrape-labs/pydoll", "color": {"background": "#76B7B2", "border": "#76B7B2"}, "size": 28, "font": {"size": 0}, "title": "autoscrape-labs/pydoll\n6744\u2605 \u00b7 Python\nPydoll is a library for automating chromium-based browsers without a WebDriver, offering realistic interactions. ", "url": "https://github.com/autoscrape-labs/pydoll", "_star_group": "browser_auto"}, {"id": "star_docling-project_docling", "label": "docling", "full_name": "docling-project/docling", "color": {"background": "#79706E", "border": "#79706E"}, "size": 28, "font": {"size": 0}, "title": "docling-project/docling\n57733\u2605 \u00b7 Python\nGet your documents ready for gen AI", "url": "https://github.com/docling-project/docling", "_star_group": "doc_proc"}, {"id": "star_Skyvern-AI_skyvern", "label": "skyvern", "full_name": "Skyvern-AI/skyvern", "color": {"background": "#76B7B2", "border": "#76B7B2"}, "size": 28, "font": {"size": 0}, "title": "Skyvern-AI/skyvern\n21136\u2605 \u00b7 Python\nAutomate browser based workflows with AI", "url": "https://github.com/Skyvern-AI/skyvern", "_star_group": "browser_auto"}, {"id": "star_iii-hq_iii", "label": "iii", "full_name": "iii-hq/iii", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "iii-hq/iii\n15303\u2605 \u00b7 Rust\niii (pronounced \u201cthree eye\u201d) unifies your existing backend stack with a single engine and three primitives: Function, Trigger, and Worker.", "url": "https://github.com/iii-hq/iii", "_star_group": "misc"}, {"id": "star_mindverse_Second-Me", "label": "Second-Me", "full_name": "mindverse/Second-Me", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "mindverse/Second-Me\n15443\u2605 \u00b7 Python\nTrain your AI self, amplify you, bridge the world", "url": "https://github.com/mindverse/Second-Me", "_star_group": "misc"}, {"id": "star_pedrohcgs_claude-code-my-workflow", "label": "claude-code-my-workflow", "full_name": "pedrohcgs/claude-code-my-workflow", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 19.47978082927161, "font": {"size": 0}, "title": "pedrohcgs/claude-code-my-workflow\n912\u2605 \u00b7 HTML\nA ready-to-fork Claude Code template for academics using LaTeX/Beamer + R. Multi-agent review, quality gates, adversarial QA, and replication protocols.", "url": "https://github.com/pedrohcgs/claude-code-my-workflow", "_star_group": "multi_agent"}, {"id": "star_antvis_chart-visualization-skills", "label": "chart-visualization-skills", "full_name": "antvis/chart-visualization-skills", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.645072199125416, "font": {"size": 0}, "title": "antvis/chart-visualization-skills\n105\u2605 \u00b7 JavaScript\n\u26cf\ufe0f Turning data into a visual language for better thinking with Skills.", "url": "https://github.com/antvis/chart-visualization-skills", "_star_group": "misc"}, {"id": "star_nicedreamzapp_claude-code-local", "label": "claude-code-local", "full_name": "nicedreamzapp/claude-code-local", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 19.20417350260619, "font": {"size": 0}, "title": "nicedreamzapp/claude-code-local\n834\u2605 \u00b7 Python\nRun Claude Code with local AI on Apple Silicon. 122B model at 41 tok/s with Google TurboQuant. No cloud, no API fees.", "url": "https://github.com/nicedreamzapp/claude-code-local", "_star_group": "quant"}, {"id": "star_vasturiano_globe_gl", "label": "globe.gl", "full_name": "vasturiano/globe.gl", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 23.949370808401582, "font": {"size": 0}, "title": "vasturiano/globe.gl\n2940\u2605 \u00b7 HTML\nUI component for Globe Data Visualization using ThreeJS/WebGL", "url": "https://github.com/vasturiano/globe.gl", "_star_group": "misc"}, {"id": "star_xingpt88_Druckenmiller", "label": "Druckenmiller", "full_name": "xingpt88/Druckenmiller", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.321456636727284, "font": {"size": 0}, "title": "xingpt88/Druckenmiller\n38\u2605 \u00b7 \u2014\n", "url": "https://github.com/xingpt88/Druckenmiller", "_star_group": "misc"}, {"id": "star_shajen_sdr-hub", "label": "sdr-hub", "full_name": "shajen/sdr-hub", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.034363655555172, "font": {"size": 0}, "title": "shajen/sdr-hub\n134\u2605 \u00b7 Shell\nProject combines sdr scanner and web panel into one to allow easy launch them.", "url": "https://github.com/shajen/sdr-hub", "_star_group": "misc"}, {"id": "star_joe-shenouda_awesome-cyber-skills", "label": "awesome-cyber-skills", "full_name": "joe-shenouda/awesome-cyber-skills", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 25.84317707182526, "font": {"size": 0}, "title": "joe-shenouda/awesome-cyber-skills\n4324\u2605 \u00b7 \u2014\nA curated list of hacking environments where you can train your cyber skills legally and safely", "url": "https://github.com/joe-shenouda/awesome-cyber-skills", "_star_group": "misc"}, {"id": "star_awesome-ai-tools_curated-local-ai", "label": "curated-local-ai", "full_name": "awesome-ai-tools/curated-local-ai", "color": {"background": "#E15759", "border": "#E15759"}, "size": 11.0, "font": {"size": 0}, "title": "awesome-ai-tools/curated-local-ai\n1\u2605 \u00b7 \u2014\nA curated list of tools for running AI models locally \u2014 inference engines, UIs, and optimization", "url": "https://github.com/awesome-ai-tools/curated-local-ai", "_star_group": "local_ai_inf"}, {"id": "star_awesome-ai-tools_curated-rag-tools", "label": "curated-rag-tools", "full_name": "awesome-ai-tools/curated-rag-tools", "color": {"background": "#59A14F", "border": "#59A14F"}, "size": 11.0, "font": {"size": 0}, "title": "awesome-ai-tools/curated-rag-tools\n1\u2605 \u00b7 \u2014\nA curated list of RAG frameworks, vector databases, embedding models, and retrieval tools", "url": "https://github.com/awesome-ai-tools/curated-rag-tools", "_star_group": "kg_rag"}, {"id": "star_awesome-ai-tools_curated-llm-apis", "label": "curated-llm-apis", "full_name": "awesome-ai-tools/curated-llm-apis", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 11.0, "font": {"size": 0}, "title": "awesome-ai-tools/curated-llm-apis\n1\u2605 \u00b7 \u2014\nA curated comparison of LLM API providers \u2014 pricing, models, features, and SDKs", "url": "https://github.com/awesome-ai-tools/curated-llm-apis", "_star_group": "llm_api"}, {"id": "star_awesome-ai-tools_curated-ai-prompts", "label": "curated-ai-prompts", "full_name": "awesome-ai-tools/curated-ai-prompts", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 11.25701337452183, "font": {"size": 0}, "title": "awesome-ai-tools/curated-ai-prompts\n2\u2605 \u00b7 \u2014\nA curated collection of AI prompt engineering resources, templates, and techniques", "url": "https://github.com/awesome-ai-tools/curated-ai-prompts", "_star_group": "misc"}, {"id": "star_awesome-ai-tools_curated-ai-image-video", "label": "curated-ai-image-video", "full_name": "awesome-ai-tools/curated-ai-image-video", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 11.0, "font": {"size": 0}, "title": "awesome-ai-tools/curated-ai-image-video\n1\u2605 \u00b7 \u2014\nA curated list of AI image and video generation tools, models, and APIs", "url": "https://github.com/awesome-ai-tools/curated-ai-image-video", "_star_group": "misc"}, {"id": "star_awesome-ai-tools_curated-ai-coding-tools", "label": "curated-ai-coding-tools", "full_name": "awesome-ai-tools/curated-ai-coding-tools", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 11.0, "font": {"size": 0}, "title": "awesome-ai-tools/curated-ai-coding-tools\n1\u2605 \u00b7 \u2014\nA curated list of AI-powered coding tools, editors, and developer assistants", "url": "https://github.com/awesome-ai-tools/curated-ai-coding-tools", "_star_group": "ai_code"}, {"id": "star_awesome-ai-tools_curated-ai-agents", "label": "curated-ai-agents", "full_name": "awesome-ai-tools/curated-ai-agents", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 11.0, "font": {"size": 0}, "title": "awesome-ai-tools/curated-ai-agents\n1\u2605 \u00b7 \u2014\nA curated list of AI agent frameworks, platforms, and ready-to-use agents", "url": "https://github.com/awesome-ai-tools/curated-ai-agents", "_star_group": "ai_agent_fw"}, {"id": "star_awesome-ai-tools_curated-ai-voice-tools", "label": "curated-ai-voice-tools", "full_name": "awesome-ai-tools/curated-ai-voice-tools", "color": {"background": "#7293CB", "border": "#7293CB"}, "size": 11.25701337452183, "font": {"size": 0}, "title": "awesome-ai-tools/curated-ai-voice-tools\n2\u2605 \u00b7 \u2014\nA curated list of AI voice tools \u2014 text-to-speech, speech-to-text, voice cloning, music generation, and audio AI.", "url": "https://github.com/awesome-ai-tools/curated-ai-voice-tools", "_star_group": "voice"}, {"id": "star_awesome-ai-tools_curated-ai-automation", "label": "curated-ai-automation", "full_name": "awesome-ai-tools/curated-ai-automation", "color": {"background": "#CC79A7", "border": "#CC79A7"}, "size": 11.43697765218485, "font": {"size": 0}, "title": "awesome-ai-tools/curated-ai-automation\n3\u2605 \u00b7 \u2014\nA curated list of AI-powered automation tools, no-code platforms, and workflow builders", "url": "https://github.com/awesome-ai-tools/curated-ai-automation", "_star_group": "workflow"}, {"id": "star_awesome-ai-tools_curated-mcp-servers", "label": "curated-mcp-servers", "full_name": "awesome-ai-tools/curated-mcp-servers", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 11.580082623726755, "font": {"size": 0}, "title": "awesome-ai-tools/curated-mcp-servers\n4\u2605 \u00b7 \u2014\nA community-curated list of MCP (Model Context Protocol) servers. PRs welcome! Browse AI tools, integrations, and developer resources.", "url": "https://github.com/awesome-ai-tools/curated-mcp-servers", "_star_group": "mcp_ext"}, {"id": "star_casibase_casibase", "label": "casibase", "full_name": "casibase/casibase", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 26.043721580061234, "font": {"size": 0}, "title": "casibase/casibase\n4492\u2605 \u00b7 Go\n\u26a1\ufe0fAI Cloud OS: Open-source enterprise-level AI knowledge base and MCP (model-context-protocol)/A2A (agent-to-agent) management platform with admin UI, user management and Single-Si", "url": "https://github.com/casibase/casibase", "_star_group": "mcp_ext"}, {"id": "star_trimstray_the-book-of-secret-knowledge", "label": "the-book-of-secret-knowledge", "full_name": "trimstray/the-book-of-secret-knowledge", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "trimstray/the-book-of-secret-knowledge\n214775\u2605 \u00b7 \u2014\nA collection of inspiring lists, manuals, cheatsheets, blogs, hacks, one-liners, cli/web tools and more.", "url": "https://github.com/trimstray/the-book-of-secret-knowledge", "_star_group": "misc"}, {"id": "star_leoncuhk_awesome-quant-ai", "label": "awesome-quant-ai", "full_name": "leoncuhk/awesome-quant-ai", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 16.16835066060346, "font": {"size": 0}, "title": "leoncuhk/awesome-quant-ai\n248\u2605 \u00b7 Jupyter Notebook\nA curated list of awesome resources for quantitative investment and trading strategies focusing on artificial intelligence and machine learning applications in finance.", "url": "https://github.com/leoncuhk/awesome-quant-ai", "_star_group": "quant"}, {"id": "star_vvonha_crypto-trading-tools", "label": "crypto-trading-tools", "full_name": "vvonha/crypto-trading-tools", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 13.350050241619204, "font": {"size": 0}, "title": "vvonha/crypto-trading-tools\n39\u2605 \u00b7 Python\nAutomated crypto trading tools - Binance, Polymarket arbitrage, funding rate scanner", "url": "https://github.com/vvonha/crypto-trading-tools", "_star_group": "quant"}, {"id": "star_joaquinbejar_OrderBook-rs", "label": "OrderBook-rs", "full_name": "joaquinbejar/OrderBook-rs", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 17.430713920402816, "font": {"size": 0}, "title": "joaquinbejar/OrderBook-rs\n436\u2605 \u00b7 Rust\nA high-performance, thread-safe limit order book implementation written in Rust. This project provides a comprehensive order matching engine designed for low-latency trading system", "url": "https://github.com/joaquinbejar/OrderBook-rs", "_star_group": "quant"}, {"id": "star_e49nana_Algorithmic-trading", "label": "Algorithmic-trading", "full_name": "e49nana/Algorithmic-trading", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 13.201754603477184, "font": {"size": 0}, "title": "e49nana/Algorithmic-trading\n34\u2605 \u00b7 MQL5\nOpen-source trading tools (MQL5 & NinjaTrader) + DeFi crypto bot + AlgoSphere Quant showcase", "url": "https://github.com/e49nana/Algorithmic-trading", "_star_group": "quant"}, {"id": "star_rv64m_autotrade", "label": "autotrade", "full_name": "rv64m/autotrade", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.107663196177619, "font": {"size": 0}, "title": "rv64m/autotrade\n140\u2605 \u00b7 Python\n", "url": "https://github.com/rv64m/autotrade", "_star_group": "misc"}, {"id": "star_blankly-finance_blankly", "label": "blankly", "full_name": "blankly-finance/blankly", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 23.08689526248981, "font": {"size": 0}, "title": "blankly-finance/blankly\n2423\u2605 \u00b7 Python\n\ud83d\ude80 \ud83d\udcb8 Easily build, backtest and deploy your algo in just a few lines of code. Trade stocks, cryptos, and forex across exchanges w/ one package.", "url": "https://github.com/blankly-finance/blankly", "_star_group": "quant"}, {"id": "star_QuantConnect_Lean", "label": "Lean", "full_name": "QuantConnect/Lean", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 28, "font": {"size": 0}, "title": "QuantConnect/Lean\n18388\u2605 \u00b7 C#\nLean Algorithmic Trading Engine by QuantConnect (Python, C#)", "url": "https://github.com/QuantConnect/Lean", "_star_group": "quant"}, {"id": "star_Open-Trader_opentrader", "label": "opentrader", "full_name": "Open-Trader/opentrader", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 23.03679453286993, "font": {"size": 0}, "title": "Open-Trader/opentrader\n2395\u2605 \u00b7 TypeScript\n\ud83e\udd16 Open-source crypto trading bot | \ud83d\udcc8 DCA & GRID strategies | \u2728 UI | \u2b50 Star to support the project!", "url": "https://github.com/Open-Trader/opentrader", "_star_group": "quant"}, {"id": "star_Superalgos_Superalgos", "label": "Superalgos", "full_name": "Superalgos/Superalgos", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 27.04864786948488, "font": {"size": 0}, "title": "Superalgos/Superalgos\n5400\u2605 \u00b7 JavaScript\nFree, open-source crypto trading bot, automated bitcoin / cryptocurrency trading software, algorithmic trading bots. Visually design your crypto trading bot, leveraging an integrat", "url": "https://github.com/Superalgos/Superalgos", "_star_group": "quant"}, {"id": "star_Drakkar-Software_OctoBot", "label": "OctoBot", "full_name": "Drakkar-Software/OctoBot", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 27.233107584052025, "font": {"size": 0}, "title": "Drakkar-Software/OctoBot\n5579\u2605 \u00b7 Python\nFree open source crypto trading bot to automate AI, Grid, DCA and TradingView strategies on Binance, Hyperliquid and 15+ exchanges, with a simple interface.", "url": "https://github.com/Drakkar-Software/OctoBot", "_star_group": "quant"}, {"id": "star_freqtrade_freqtrade", "label": "freqtrade", "full_name": "freqtrade/freqtrade", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 28, "font": {"size": 0}, "title": "freqtrade/freqtrade\n48658\u2605 \u00b7 Python\nFree, open source crypto trading bot", "url": "https://github.com/freqtrade/freqtrade", "_star_group": "quant"}, {"id": "star_0xemmkty_QuantMuse", "label": "QuantMuse", "full_name": "0xemmkty/QuantMuse", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 22.87673346052117, "font": {"size": 0}, "title": "0xemmkty/QuantMuse\n2307\u2605 \u00b7 Python\nA comprehensive quantitative trading system with AI-powered analysis, real-time data processing, and advanced risk management", "url": "https://github.com/0xemmkty/QuantMuse", "_star_group": "quant"}, {"id": "star_HotCakeX_Harden-Windows-Security", "label": "Harden-Windows-Security", "full_name": "HotCakeX/Harden-Windows-Security", "color": {"background": "#D95F02", "border": "#D95F02"}, "size": 25.70533229466127, "font": {"size": 0}, "title": "HotCakeX/Harden-Windows-Security\n4211\u2605 \u00b7 C#\nHarden Windows Safely, Securely using Official Supported Microsoft methods and proper explanation | Always up-to-date and works with the latest build of Windows | Provides tools an", "url": "https://github.com/HotCakeX/Harden-Windows-Security", "_star_group": "rl"}, {"id": "star_Y-Research-SBU_QuantAgent", "label": "QuantAgent", "full_name": "Y-Research-SBU/QuantAgent", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 22.856439830822268, "font": {"size": 0}, "title": "Y-Research-SBU/QuantAgent\n2296\u2605 \u00b7 HTML\nOfficial Repository for QuantAgent", "url": "https://github.com/Y-Research-SBU/QuantAgent", "_star_group": "quant"}, {"id": "star_vibetrade-ai_vibe-trade", "label": "vibe-trade", "full_name": "vibetrade-ai/vibe-trade", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.082397177658269, "font": {"size": 0}, "title": "vibetrade-ai/vibe-trade\n71\u2605 \u00b7 TypeScript\n", "url": "https://github.com/vibetrade-ai/vibe-trade", "_star_group": "misc"}, {"id": "star_chrisworsey55_atlas-gic", "label": "atlas-gic", "full_name": "chrisworsey55/atlas-gic", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 20.747350775745456, "font": {"size": 0}, "title": "chrisworsey55/atlas-gic\n1334\u2605 \u00b7 Python\nATLAS by General Intelligence Capital \u2014 Self-improving AI trading agents using Karpathy-style autoresearch", "url": "https://github.com/chrisworsey55/atlas-gic", "_star_group": "quant"}, {"id": "star_Gajesh2007_ai-trading-agent", "label": "ai-trading-agent", "full_name": "Gajesh2007/ai-trading-agent", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 17.738191681577398, "font": {"size": 0}, "title": "Gajesh2007/ai-trading-agent\n493\u2605 \u00b7 Python\nAI Trading Agent on Hyperliquid", "url": "https://github.com/Gajesh2007/ai-trading-agent", "_star_group": "quant"}, {"id": "star_HKUDS_Vibe-Trading", "label": "Vibe-Trading", "full_name": "HKUDS/Vibe-Trading", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 21.822765985002313, "font": {"size": 0}, "title": "HKUDS/Vibe-Trading\n1781\u2605 \u00b7 Python\n"Vibe-Trading: Your Personal Trading Agent"", "url": "https://github.com/HKUDS/Vibe-Trading", "_star_group": "quant"}, {"id": "star_romainsantoli-web_firm-protocol", "label": "firm-protocol", "full_name": "romainsantoli-web/firm-protocol", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 12.444050163747711, "font": {"size": 0}, "title": "romainsantoli-web/firm-protocol\n15\u2605 \u00b7 Python\nFIRM Protocol \u2014 Self-Evolving Autonomous Organization Runtime. Authority is earned, not assigned.", "url": "https://github.com/romainsantoli-web/firm-protocol", "_star_group": "misc"}, {"id": "star_evan-kolberg_prediction-market-backtesting", "label": "prediction-market-backtesting", "full_name": "evan-kolberg/prediction-market-backtesting", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 18.164530915820578, "font": {"size": 0}, "title": "evan-kolberg/prediction-market-backtesting\n580\u2605 \u00b7 Jupyter Notebook\nA fork of Nautilus Trader with custom Polymarket and Kalshi adapters for backtesting", "url": "https://github.com/evan-kolberg/prediction-market-backtesting", "_star_group": "quant"}, {"id": "star_strongca22-cpu_gabagool", "label": "gabagool", "full_name": "strongca22-cpu/gabagool", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.731039597614096, "font": {"size": 0}, "title": "strongca22-cpu/gabagool\n111\u2605 \u00b7 Python\ngabagool bot", "url": "https://github.com/strongca22-cpu/gabagool", "_star_group": "misc"}, {"id": "star_agent-next_polymarket-paper-trader", "label": "polymarket-paper-trader", "full_name": "agent-next/polymarket-paper-trader", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 15.946980049593288, "font": {"size": 0}, "title": "agent-next/polymarket-paper-trader\n222\u2605 \u00b7 Python\nPaper trading simulator for Polymarket \u2014 built for AI agents. MCP server, live order books, strategy backtesting. Install: npx clawhub install polymarket-paper-trader", "url": "https://github.com/agent-next/polymarket-paper-trader", "_star_group": "mcp_ext"}, {"id": "star_URLab-Sim_UnrealRoboticsLab", "label": "UnrealRoboticsLab", "full_name": "URLab-Sim/UnrealRoboticsLab", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.709644229318243, "font": {"size": 0}, "title": "URLab-Sim/UnrealRoboticsLab\n320\u2605 \u00b7 C++\nA high-fidelity, open-source robotics simulator integrating Unreal Engine's photorealistic rendering with MuJoCo's precision physics.", "url": "https://github.com/URLab-Sim/UnrealRoboticsLab", "_star_group": "misc"}, {"id": "star_Claw-AI-Lab_Claw-AI-Lab", "label": "Claw-AI-Lab", "full_name": "Claw-AI-Lab/Claw-AI-Lab", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 19.379226680718702, "font": {"size": 0}, "title": "Claw-AI-Lab/Claw-AI-Lab\n883\u2605 \u00b7 Python\nOne dashboard. An entire research team.", "url": "https://github.com/Claw-AI-Lab/Claw-AI-Lab", "_star_group": "misc"}, {"id": "star_notpoiu_roblox-executor-mcp", "label": "roblox-executor-mcp", "full_name": "notpoiu/roblox-executor-mcp", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 13.321456636727284, "font": {"size": 0}, "title": "notpoiu/roblox-executor-mcp\n38\u2605 \u00b7 JavaScript\nA MCP Server which allows for direct access to the roblox game client", "url": "https://github.com/notpoiu/roblox-executor-mcp", "_star_group": "mcp_ext"}, {"id": "star_theowni_Damn-Vulnerable-RESTaurant-API-Game", "label": "Damn-Vulnerable-RESTaurant-API-Game", "full_name": "theowni/Damn-Vulnerable-RESTaurant-API-Game", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 19.459154199634494, "font": {"size": 0}, "title": "theowni/Damn-Vulnerable-RESTaurant-API-Game\n906\u2605 \u00b7 Python\nDamn Vulnerable Restaurant is an intentionally vulnerable Web API game for learning and training purposes dedicated to developers, ethical hackers and security engineers.", "url": "https://github.com/theowni/Damn-Vulnerable-RESTaurant-API-Game", "_star_group": "misc"}, {"id": "star_gongxings_kemeng-ai-anime-creation", "label": "kemeng-ai-anime-creation", "full_name": "gongxings/kemeng-ai-anime-creation", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.880886898080256, "font": {"size": 0}, "title": "gongxings/kemeng-ai-anime-creation\n122\u2605 \u00b7 TypeScript\nKmeng AI Animata is an open-source AI video creation tool designed to transform your local computer into a professional digital studio.", "url": "https://github.com/gongxings/kemeng-ai-anime-creation", "_star_group": "misc"}, {"id": "star_renzorlive_vimmaster", "label": "vimmaster", "full_name": "renzorlive/vimmaster", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 21.58348657609723, "font": {"size": 0}, "title": "renzorlive/vimmaster\n1674\u2605 \u00b7 JavaScript\nVIM Master: in-browser game that teaches core Vim motions and editing commands through short, focused levels. ", "url": "https://github.com/renzorlive/vimmaster", "_star_group": "misc"}, {"id": "star_git-learning-game_oh-my-git", "label": "oh-my-git", "full_name": "git-learning-game/oh-my-git", "color": {"background": "#0072B2", "border": "#0072B2"}, "size": 23.666449220639777, "font": {"size": 0}, "title": "git-learning-game/oh-my-git\n2763\u2605 \u00b7 GDScript\nAn interactive Git learning game!", "url": "https://github.com/git-learning-game/oh-my-git", "_star_group": "gaming"}, {"id": "star_tone-row_flowchart-fun", "label": "flowchart-fun", "full_name": "tone-row/flowchart-fun", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 24.566335990993686, "font": {"size": 0}, "title": "tone-row/flowchart-fun\n3352\u2605 \u00b7 TypeScript\nEasily generate flowcharts and diagrams from text \u2ffb", "url": "https://github.com/tone-row/flowchart-fun", "_star_group": "misc"}, {"id": "star_luanti-org_luanti", "label": "luanti", "full_name": "luanti-org/luanti", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "luanti-org/luanti\n12747\u2605 \u00b7 C++\nLuanti (formerly Minetest) is an open source voxel game-creation platform with easy modding and game creation", "url": "https://github.com/luanti-org/luanti", "_star_group": "misc"}, {"id": "star_prettyirrelevant_guessx", "label": "guessx", "full_name": "prettyirrelevant/guessx", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 11.806300127685335, "font": {"size": 0}, "title": "prettyirrelevant/guessx\n6\u2605 \u00b7 TypeScript\nreal-time multiplayer guessing game. guess the song, spot the landmark, name the actor.", "url": "https://github.com/prettyirrelevant/guessx", "_star_group": "misc"}, {"id": "star_RhysSullivan_executor", "label": "executor", "full_name": "RhysSullivan/executor", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 19.986849688598298, "font": {"size": 0}, "title": "RhysSullivan/executor\n1068\u2605 \u00b7 TypeScript\nThe missing integration layer for AI agents. Let them call any OpenAPI / MCP / GraphQL / custom js functions in secure environment.", "url": "https://github.com/RhysSullivan/executor", "_star_group": "mcp_ext"}, {"id": "star_coleam00_ai-agents-masterclass", "label": "ai-agents-masterclass", "full_name": "coleam00/ai-agents-masterclass", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 24.57636723316375, "font": {"size": 0}, "title": "coleam00/ai-agents-masterclass\n3359\u2605 \u00b7 Python\nFollow along with my AI Agents Masterclass videos! All of the code I create and use in this series on YouTube will be here for you to use and even build on top of!", "url": "https://github.com/coleam00/ai-agents-masterclass", "_star_group": "misc"}, {"id": "star_pipeshub-ai_pipeshub-ai", "label": "pipeshub-ai", "full_name": "pipeshub-ai/pipeshub-ai", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 23.731425414181135, "font": {"size": 0}, "title": "pipeshub-ai/pipeshub-ai\n2803\u2605 \u00b7 Python\nPipesHub is a fully extensible and explainable workplace AI platform for enterprise search and workflow automation", "url": "https://github.com/pipeshub-ai/pipeshub-ai", "_star_group": "ai_agent_fw"}, {"id": "star_mozilla-ai_any-agent", "label": "any-agent", "full_name": "mozilla-ai/any-agent", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 20.224826040730946, "font": {"size": 0}, "title": "mozilla-ai/any-agent\n1147\u2605 \u00b7 Python\nA single interface to use and evaluate different agent frameworks ", "url": "https://github.com/mozilla-ai/any-agent", "_star_group": "ai_agent_fw"}, {"id": "star_buildermethods_agent-os", "label": "agent-os", "full_name": "buildermethods/agent-os", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 25.834708615604683, "font": {"size": 0}, "title": "buildermethods/agent-os\n4317\u2605 \u00b7 Shell\nAgent OS is a system for injecting your codebase standards and writing better specs for spec-driven development.", "url": "https://github.com/buildermethods/agent-os", "_star_group": "misc"}, {"id": "star_eastreams_loong", "label": "loong", "full_name": "eastreams/loong", "color": {"background": "#B6992D", "border": "#B6992D"}, "size": 18.283539852067534, "font": {"size": 0}, "title": "eastreams/loong\n606\u2605 \u00b7 Rust\nLightweight, clear, and fully extensible AI agent infrastructure \u2014 learn easily, customize anything \ud83d\udc09", "url": "https://github.com/eastreams/loong", "_star_group": "spellbook"}, {"id": "star_russelleNVy_three-man-team", "label": "three-man-team", "full_name": "russelleNVy/three-man-team", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 17.860530899201635, "font": {"size": 0}, "title": "russelleNVy/three-man-team\n517\u2605 \u00b7 Shell\nA structured 3-agent AI dev team \u2014 Architect, Builder, Reviewer. Built from production use. Token-optimized. Works with Claude Code, VS Code, Cursor, and any AI that supports conte", "url": "https://github.com/russelleNVy/three-man-team", "_star_group": "ai_code"}, {"id": "star_appsfolder_livebridge", "label": "livebridge", "full_name": "appsfolder/livebridge", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 15.688196239327993, "font": {"size": 0}, "title": "appsfolder/livebridge\n194\u2605 \u00b7 Kotlin\nLevel up your dynamic pill/island on Android", "url": "https://github.com/appsfolder/livebridge", "_star_group": "multi_agent"}, {"id": "star_tom-doerr_zsh_codex", "label": "zsh_codex", "full_name": "tom-doerr/zsh_codex", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 21.68757437272739, "font": {"size": 0}, "title": "tom-doerr/zsh_codex\n1720\u2605 \u00b7 Python\nThis is a ZSH plugin that enables you to use OpenAI's Codex AI in the command line.", "url": "https://github.com/tom-doerr/zsh_codex", "_star_group": "llm_api"}, {"id": "star_tom-doerr_awesome-dspy", "label": "awesome-dspy", "full_name": "tom-doerr/awesome-dspy", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 12.967222012516512, "font": {"size": 0}, "title": "tom-doerr/awesome-dspy\n27\u2605 \u00b7 \u2014\n", "url": "https://github.com/tom-doerr/awesome-dspy", "_star_group": "misc"}, {"id": "star_snooppr_snoop", "label": "snoop", "full_name": "snooppr/snoop", "color": {"background": "#9C755F", "border": "#9C755F"}, "size": 25.310092178001092, "font": {"size": 0}, "title": "snooppr/snoop\n3898\u2605 \u00b7 Python\nSnoop \u2014 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442 \u0440\u0430\u0437\u0432\u0435\u0434\u043a\u0438 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 (OSINT world)", "url": "https://github.com/snooppr/snoop", "_star_group": "security"}, {"id": "star_frangelbarrera_OSINT-BIBLE", "label": "OSINT-BIBLE", "full_name": "frangelbarrera/OSINT-BIBLE", "color": {"background": "#9C755F", "border": "#9C755F"}, "size": 17.246125481911115, "font": {"size": 0}, "title": "frangelbarrera/OSINT-BIBLE\n404\u2605 \u00b7 \u2014\nA comprehensive 2026 guide to Open-Source Intelligence (OSINT): tools, methodologies, ethics, and techniques for responsible research and investigation.", "url": "https://github.com/frangelbarrera/OSINT-BIBLE", "_star_group": "security"}, {"id": "star_Datalux_Osintgram", "label": "Osintgram", "full_name": "Datalux/Osintgram", "color": {"background": "#9C755F", "border": "#9C755F"}, "size": 28, "font": {"size": 0}, "title": "Datalux/Osintgram\n12610\u2605 \u00b7 Python\nOsintgram is a OSINT tool on Instagram. It offers an interactive shell to perform analysis on Instagram account of any users by its nickname", "url": "https://github.com/Datalux/Osintgram", "_star_group": "security"}, {"id": "star_laramies_theHarvester", "label": "theHarvester", "full_name": "laramies/theHarvester", "color": {"background": "#9C755F", "border": "#9C755F"}, "size": 28, "font": {"size": 0}, "title": "laramies/theHarvester\n16007\u2605 \u00b7 Python\nE-mails, subdomains and names Harvester - OSINT ", "url": "https://github.com/laramies/theHarvester", "_star_group": "security"}, {"id": "star_seekr-osint_seekr", "label": "seekr", "full_name": "seekr-osint/seekr", "color": {"background": "#9C755F", "border": "#9C755F"}, "size": 19.03723157572442, "font": {"size": 0}, "title": "seekr-osint/seekr\n789\u2605 \u00b7 Go\nA multi-purpose OSINT toolkit with a neat web-interface.", "url": "https://github.com/seekr-osint/seekr", "_star_group": "security"}, {"id": "star_smicallef_spiderfoot", "label": "spiderfoot", "full_name": "smicallef/spiderfoot", "color": {"background": "#9C755F", "border": "#9C755F"}, "size": 28, "font": {"size": 0}, "title": "smicallef/spiderfoot\n17396\u2605 \u00b7 Python\nSpiderFoot automates OSINT for threat intelligence and mapping your attack surface.", "url": "https://github.com/smicallef/spiderfoot", "_star_group": "security"}, {"id": "star_lajosdeme_watchtower", "label": "watchtower", "full_name": "lajosdeme/watchtower", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.25732802146521, "font": {"size": 0}, "title": "lajosdeme/watchtower\n259\u2605 \u00b7 Go\nA clean, minimal, terminal-based global intelligence dashboard.", "url": "https://github.com/lajosdeme/watchtower", "_star_group": "misc"}, {"id": "star_pbogre_jetlog", "label": "jetlog", "full_name": "pbogre/jetlog", "color": {"background": "#D37295", "border": "#D37295"}, "size": 16.702717652415693, "font": {"size": 0}, "title": "pbogre/jetlog\n319\u2605 \u00b7 TypeScript\nPersonal flight tracker and viewer", "url": "https://github.com/pbogre/jetlog", "_star_group": "data_ds"}, {"id": "star_chadi0x_TheBigBrother", "label": "TheBigBrother", "full_name": "chadi0x/TheBigBrother", "color": {"background": "#9C755F", "border": "#9C755F"}, "size": 18.103682356037062, "font": {"size": 0}, "title": "chadi0x/TheBigBrother\n567\u2605 \u00b7 Python\nThe Big Brother V4.0 is a weaponized OSINT platform featuring username enumeration (473+ platforms), quad-vector visual intelligence, Sky Radar tracking, crypto wallet analysis, SS", "url": "https://github.com/chadi0x/TheBigBrother", "_star_group": "security"}, {"id": "star_BigBodyCobain_Shadowbroker", "label": "Shadowbroker", "full_name": "BigBodyCobain/Shadowbroker", "color": {"background": "#9C755F", "border": "#9C755F"}, "size": 26.823732788810766, "font": {"size": 0}, "title": "BigBodyCobain/Shadowbroker\n5187\u2605 \u00b7 TypeScript\nOpen-source intelligence for the global theater. Track everything from the corporate/private jets of the wealthy, and spy satellites, to seismic events in one unified interface. Th", "url": "https://github.com/BigBodyCobain/Shadowbroker", "_star_group": "security"}, {"id": "star_koala73_worldmonitor", "label": "worldmonitor", "full_name": "koala73/worldmonitor", "color": {"background": "#9C755F", "border": "#9C755F"}, "size": 28, "font": {"size": 0}, "title": "koala73/worldmonitor\n48114\u2605 \u00b7 TypeScript\nReal-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface", "url": "https://github.com/koala73/worldmonitor", "_star_group": "security"}, {"id": "star_NoblerWorks-HQ_IRONSIGHT", "label": "IRONSIGHT", "full_name": "NoblerWorks-HQ/IRONSIGHT", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.07668821792, "font": {"size": 0}, "title": "NoblerWorks-HQ/IRONSIGHT\n237\u2605 \u00b7 TypeScript\n", "url": "https://github.com/NoblerWorks-HQ/IRONSIGHT", "_star_group": "misc"}, {"id": "star_lukasHoel_video_to_world", "label": "video_to_world", "full_name": "lukasHoel/video_to_world", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.008218375008664, "font": {"size": 0}, "title": "lukasHoel/video_to_world\n229\u2605 \u00b7 Python\nOur method reconstructs 3D worlds from video diffusion models using non-rigid alignment to resolve inherent 3D inconsistencies in the generated sequences.", "url": "https://github.com/lukasHoel/video_to_world", "_star_group": "misc"}, {"id": "star_mifi_ezshare", "label": "ezshare", "full_name": "mifi/ezshare", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 18.98399624693894, "font": {"size": 0}, "title": "mifi/ezshare\n775\u2605 \u00b7 TypeScript\nEasily share files, folders and clipboard over LAN - Like Google Drive but without internet", "url": "https://github.com/mifi/ezshare", "_star_group": "dev_cli"}, {"id": "star_lunel-dev_lunel", "label": "lunel", "full_name": "lunel-dev/lunel", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 17.664974589201407, "font": {"size": 0}, "title": "lunel-dev/lunel\n479\u2605 \u00b7 TypeScript\nai powered mobile ide and cloud development platform", "url": "https://github.com/lunel-dev/lunel", "_star_group": "misc"}, {"id": "star_will2025btc_buffett-perspective", "label": "buffett-perspective", "full_name": "will2025btc/buffett-perspective", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 15.270864331073392, "font": {"size": 0}, "title": "will2025btc/buffett-perspective\n154\u2605 \u00b7 \u2014\n\u5df4\u83f2\u7279\u601d\u7ef4\u64cd\u4f5c\u7cfb\u7edf | Warren Buffett Cognitive Framework - Claude Code Skill", "url": "https://github.com/will2025btc/buffett-perspective", "_star_group": "ai_code"}, {"id": "star_chongdashu_vibejam-starter-pack", "label": "vibejam-starter-pack", "full_name": "chongdashu/vibejam-starter-pack", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.298290564732616, "font": {"size": 0}, "title": "chongdashu/vibejam-starter-pack\n83\u2605 \u00b7 HTML\nFree Vibe Jam starter pack \u2014 battle-tested ThreeJS and Phaser agent skills, starter projects, and prompts.", "url": "https://github.com/chongdashu/vibejam-starter-pack", "_star_group": "misc"}, {"id": "star_foru17_neko-master", "label": "neko-master", "full_name": "foru17/neko-master", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 21.87510553872872, "font": {"size": 0}, "title": "foru17/neko-master\n1805\u2605 \u00b7 TypeScript\nA modern and elegant dashboard for network traffic visualization and analysis.", "url": "https://github.com/foru17/neko-master", "_star_group": "misc"}, {"id": "star_maaslalani_sheets", "label": "sheets", "full_name": "maaslalani/sheets", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 22.086208764810678, "font": {"size": 0}, "title": "maaslalani/sheets\n1904\u2605 \u00b7 Go\nTerminal based spreadsheet tool", "url": "https://github.com/maaslalani/sheets", "_star_group": "misc"}, {"id": "star_JuliusBrussee_caveman", "label": "caveman", "full_name": "JuliusBrussee/caveman", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "JuliusBrussee/caveman\n25473\u2605 \u00b7 Python\n\ud83e\udea8 why use many token when few token do trick \u2014 Claude Code skill that cuts 65% of tokens by talking like caveman", "url": "https://github.com/JuliusBrussee/caveman", "_star_group": "llm_api"}, {"id": "star_cporter202_agentic-ai-starters", "label": "agentic-ai-starters", "full_name": "cporter202/agentic-ai-starters", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 14.446824431003584, "font": {"size": 0}, "title": "cporter202/agentic-ai-starters\n92\u2605 \u00b7 \u2014\nA practical collection of plug-and-play starter blueprints for building autonomous AI apps with real APIs. Discover ready-to-build agent workflows, API stacks, architecture pattern", "url": "https://github.com/cporter202/agentic-ai-starters", "_star_group": "mcp_ext"}, {"id": "star_ryoppippi_ccusage", "label": "ccusage", "full_name": "ryoppippi/ccusage", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "ryoppippi/ccusage\n12796\u2605 \u00b7 TypeScript\nA CLI tool for analyzing Claude Code/Codex CLI usage from local JSONL files.", "url": "https://github.com/ryoppippi/ccusage", "_star_group": "ai_code"}, {"id": "star_openwrt-xiaomi_xmir-patcher", "label": "xmir-patcher", "full_name": "openwrt-xiaomi/xmir-patcher", "color": {"background": "#E7298A", "border": "#E7298A"}, "size": 23.752408834075332, "font": {"size": 0}, "title": "openwrt-xiaomi/xmir-patcher\n2816\u2605 \u00b7 Python\nFirmware patcher for Xiaomi routers", "url": "https://github.com/openwrt-xiaomi/xmir-patcher", "_star_group": "hw_iot"}, {"id": "star_Keychron_Keychron-Keyboards-Hardware-Design", "label": "Keychron-Keyboards-Hardware-Design", "full_name": "Keychron/Keychron-Keyboards-Hardware-Design", "color": {"background": "#79706E", "border": "#79706E"}, "size": 23.92112938315597, "font": {"size": 0}, "title": "Keychron/Keychron-Keyboards-Hardware-Design\n2922\u2605 \u00b7 \u2014\nIndustrial design files for Keychron keyboards and mice. 100+ models with CAD assets in STEP, DXF, DWG, and PDF. Source-available, with commercial use allowed for original compatib", "url": "https://github.com/Keychron/Keychron-Keyboards-Hardware-Design", "_star_group": "doc_proc"}, {"id": "star_Luce-Org_luce-megakernel", "label": "luce-megakernel", "full_name": "Luce-Org/luce-megakernel", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 15.659017164310642, "font": {"size": 0}, "title": "Luce-Org/luce-megakernel\n191\u2605 \u00b7 Cuda\nMegakernel to match Apple Silicon Efficiency at 2x the Throughput on a RTX 3090", "url": "https://github.com/Luce-Org/luce-megakernel", "_star_group": "mac"}, {"id": "star_cbdevnet_midimonster", "label": "midimonster", "full_name": "cbdevnet/midimonster", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 18.206123473205672, "font": {"size": 0}, "title": "cbdevnet/midimonster\n589\u2605 \u00b7 C\nMulti-protocol control & translation software (ArtNet, MIDI, OSC, sACN, ...)", "url": "https://github.com/cbdevnet/midimonster", "_star_group": "misc"}, {"id": "star_zai-org_GLM-skills", "label": "GLM-skills", "full_name": "zai-org/GLM-skills", "color": {"background": "#79706E", "border": "#79706E"}, "size": 16.625546959449302, "font": {"size": 0}, "title": "zai-org/GLM-skills\n308\u2605 \u00b7 Python\nOfficial skills for the GLM family of models.", "url": "https://github.com/zai-org/GLM-skills", "_star_group": "doc_proc"}, {"id": "star_matthartman_ghost-pepper", "label": "ghost-pepper", "full_name": "matthartman/ghost-pepper", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 22.463736946416812, "font": {"size": 0}, "title": "matthartman/ghost-pepper\n2090\u2605 \u00b7 Swift\nHold-to-talk speech-to-text for macOS. 100% local, powered by WhisperKit and local LLM cleanup. Hold Control to record, release to transcribe and paste.", "url": "https://github.com/matthartman/ghost-pepper", "_star_group": "mac"}, {"id": "star_DevTechJr_turboquant-gpu", "label": "turboquant-gpu", "full_name": "DevTechJr/turboquant-gpu", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 16.127030895836054, "font": {"size": 0}, "title": "DevTechJr/turboquant-gpu\n243\u2605 \u00b7 Python\n", "url": "https://github.com/DevTechJr/turboquant-gpu", "_star_group": "quant"}, {"id": "star_stephenleo_bmad-autonomous-development", "label": "bmad-autonomous-development", "full_name": "stephenleo/bmad-autonomous-development", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 13.587646202622532, "font": {"size": 0}, "title": "stephenleo/bmad-autonomous-development\n48\u2605 \u00b7 Python\n\ud83e\udd16 Autonomous development orchestrator for the BMad Method. Runs fully autonomous, parallel, multi-agent pipelines through the full story lifecycle (create \u2192 dev \u2192 review \u2192 PR) driv", "url": "https://github.com/stephenleo/bmad-autonomous-development", "_star_group": "multi_agent"}, {"id": "star_ExTV_Podroid", "label": "Podroid", "full_name": "ExTV/Podroid", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 19.836442479637586, "font": {"size": 0}, "title": "ExTV/Podroid\n1020\u2605 \u00b7 Kotlin\nRootless Podman for Android \u2014 run Linux containers on your phone", "url": "https://github.com/ExTV/Podroid", "_star_group": "multi_agent"}, {"id": "star_Ligo-Biosciences_AlphaFold3", "label": "AlphaFold3", "full_name": "Ligo-Biosciences/AlphaFold3", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 19.974490871952177, "font": {"size": 0}, "title": "Ligo-Biosciences/AlphaFold3\n1064\u2605 \u00b7 Python\nOpen source implementation of AlphaFold3", "url": "https://github.com/Ligo-Biosciences/AlphaFold3", "_star_group": "mac"}, {"id": "star_chrispyroberts_imc-prosperity-4", "label": "imc-prosperity-4", "full_name": "chrispyroberts/imc-prosperity-4", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 13.562806968803505, "font": {"size": 0}, "title": "chrispyroberts/imc-prosperity-4\n47\u2605 \u00b7 Python\nProsperity 4 Monte Carlo backtester, Rust simulator, and dashboard visualizer.", "url": "https://github.com/chrispyroberts/imc-prosperity-4", "_star_group": "quant"}, {"id": "star_nasty-project_nasty", "label": "nasty", "full_name": "nasty-project/nasty", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.562806968803505, "font": {"size": 0}, "title": "nasty-project/nasty\n47\u2605 \u00b7 Rust\nbcachefs based NAS solution", "url": "https://github.com/nasty-project/nasty", "_star_group": "misc"}, {"id": "star_chrislgarry_Apollo-11", "label": "Apollo-11", "full_name": "chrislgarry/Apollo-11", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "chrislgarry/Apollo-11\n65686\u2605 \u00b7 Assembly\nOriginal Apollo 11 Guidance Computer (AGC) source code for the command and lunar modules.", "url": "https://github.com/chrislgarry/Apollo-11", "_star_group": "misc"}, {"id": "star_NousResearch_hermes-agent-self-evolution", "label": "hermes-agent-self-evolution", "full_name": "NousResearch/hermes-agent-self-evolution", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 21.479790376508355, "font": {"size": 0}, "title": "NousResearch/hermes-agent-self-evolution\n1629\u2605 \u00b7 Python\n\u2692 Evolutionary self-improvement for Hermes Agent \u2014 optimize skills, prompts, and code using DSPy + GEPA", "url": "https://github.com/NousResearch/hermes-agent-self-evolution", "_star_group": "misc"}, {"id": "star_newaetech_ChipShover", "label": "ChipShover", "full_name": "newaetech/ChipShover", "color": {"background": "#E7298A", "border": "#E7298A"}, "size": 13.562806968803505, "font": {"size": 0}, "title": "newaetech/ChipShover\n47\u2605 \u00b7 \u2014\nChipSHOVER is an XYZ table & driver, with open-source firmware for the controller.", "url": "https://github.com/newaetech/ChipShover", "_star_group": "hw_iot"}, {"id": "star_NousResearch_nomos", "label": "nomos", "full_name": "NousResearch/nomos", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.639393447570896, "font": {"size": 0}, "title": "NousResearch/nomos\n189\u2605 \u00b7 Python\n", "url": "https://github.com/NousResearch/nomos", "_star_group": "misc"}, {"id": "star_meshtastic_meshtastic", "label": "meshtastic", "full_name": "meshtastic/meshtastic", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 21.789813380335385, "font": {"size": 0}, "title": "meshtastic/meshtastic\n1766\u2605 \u00b7 TypeScript\nMeshtastic project website and documentation", "url": "https://github.com/meshtastic/meshtastic", "_star_group": "misc"}, {"id": "star_isaac-mason_crashcat", "label": "crashcat", "full_name": "isaac-mason/crashcat", "color": {"background": "#0072B2", "border": "#0072B2"}, "size": 16.65381950857812, "font": {"size": 0}, "title": "isaac-mason/crashcat\n312\u2605 \u00b7 TypeScript\nphysics engine for javascript, built for games, simulations, and creative websites", "url": "https://github.com/isaac-mason/crashcat", "_star_group": "gaming"}, {"id": "star_flarkflarkflark_STEMwerk-reaper", "label": "STEMwerk-reaper", "full_name": "flarkflarkflark/STEMwerk-reaper", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 12.444050163747711, "font": {"size": 0}, "title": "flarkflarkflark/STEMwerk-reaper\n15\u2605 \u00b7 Lua\nSTEM separation for Reaper", "url": "https://github.com/flarkflarkflark/STEMwerk-reaper", "_star_group": "misc"}, {"id": "star_numman-ali_openskills", "label": "openskills", "full_name": "numman-ali/openskills", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "numman-ali/openskills\n9702\u2605 \u00b7 TypeScript\nUniversal skills loader for AI coding agents - npm i -g openskills", "url": "https://github.com/numman-ali/openskills", "_star_group": "misc"}, {"id": "star_Matticusnicholas_KupkaProd-Cinema-Pipeline", "label": "KupkaProd-Cinema-Pipeline", "full_name": "Matticusnicholas/KupkaProd-Cinema-Pipeline", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.009442514996433, "font": {"size": 0}, "title": "Matticusnicholas/KupkaProd-Cinema-Pipeline\n132\u2605 \u00b7 Python\nAutonomous AI movie studio \u2014 turn a text prompt into a fully produced video. 100% local, no cloud, no API keys.", "url": "https://github.com/Matticusnicholas/KupkaProd-Cinema-Pipeline", "_star_group": "misc"}, {"id": "star_labarba_sciwrite", "label": "sciwrite", "full_name": "labarba/sciwrite", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 17.29900257806306, "font": {"size": 0}, "title": "labarba/sciwrite\n413\u2605 \u00b7 \u2014\nAgent Skill for AI-assisted manuscript writing review, based on Dr. Kristin Sainani's "Writing in the Sciences" methodology.", "url": "https://github.com/labarba/sciwrite", "_star_group": "misc"}, {"id": "star_storybookjs_addon-designs", "label": "addon-designs", "full_name": "storybookjs/addon-designs", "color": {"background": "#66A61E", "border": "#66A61E"}, "size": 19.581572672923308, "font": {"size": 0}, "title": "storybookjs/addon-designs\n942\u2605 \u00b7 TypeScript\nA Storybook addon that embeds Figma, websites, or images in the addon panel.", "url": "https://github.com/storybookjs/addon-designs", "_star_group": "ui_design"}, {"id": "star_math-ai-org_mathcode", "label": "mathcode", "full_name": "math-ai-org/mathcode", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 17.402484371418993, "font": {"size": 0}, "title": "math-ai-org/mathcode\n431\u2605 \u00b7 Python\nMathCode: A Frontier Mathematical Coding Agent", "url": "https://github.com/math-ai-org/mathcode", "_star_group": "mac"}, {"id": "star_wilsonfreitas_awesome-quant", "label": "awesome-quant", "full_name": "wilsonfreitas/awesome-quant", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 28, "font": {"size": 0}, "title": "wilsonfreitas/awesome-quant\n25474\u2605 \u00b7 HTML\nA curated list of insanely awesome libraries, packages and resources for Quants (Quantitative Finance)", "url": "https://github.com/wilsonfreitas/awesome-quant", "_star_group": "quant"}, {"id": "star_The-FinAI_The-FinData", "label": "The-FinData", "full_name": "The-FinAI/The-FinData", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 12.206274706440643, "font": {"size": 0}, "title": "The-FinAI/The-FinData\n11\u2605 \u00b7 \u2014\nthe benchmark for finance", "url": "https://github.com/The-FinAI/The-FinData", "_star_group": "misc"}, {"id": "star_rongwang0824_Prepare-Data-for-Asset-Pricing-Projects", "label": "Prepare-Data-for-Asset-Pricing-Projects", "full_name": "rongwang0824/Prepare-Data-for-Asset-Pricing-Projects", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 11.806300127685335, "font": {"size": 0}, "title": "rongwang0824/Prepare-Data-for-Asset-Pricing-Projects\n6\u2605 \u00b7 Jupyter Notebook\n", "url": "https://github.com/rongwang0824/Prepare-Data-for-Asset-Pricing-Projects", "_star_group": "misc"}, {"id": "star_karlyndiary_Real-Estate-Price-Prediction", "label": "Real-Estate-Price-Prediction", "full_name": "karlyndiary/Real-Estate-Price-Prediction", "color": {"background": "#D37295", "border": "#D37295"}, "size": 11.43697765218485, "font": {"size": 0}, "title": "karlyndiary/Real-Estate-Price-Prediction\n3\u2605 \u00b7 Jupyter Notebook\nReal Estate Price Prediction based on Bangalore Dataset", "url": "https://github.com/karlyndiary/Real-Estate-Price-Prediction", "_star_group": "data_ds"}, {"id": "star_Findeton_real-state-10k", "label": "real-state-10k", "full_name": "Findeton/real-state-10k", "color": {"background": "#D37295", "border": "#D37295"}, "size": 13.840441586563236, "font": {"size": 0}, "title": "Findeton/real-state-10k\n59\u2605 \u00b7 Python\nThe real state 10k dataset from https://google.github.io/realestate10k", "url": "https://github.com/Findeton/real-state-10k", "_star_group": "data_ds"}, {"id": "star_datasets_house-prices-global", "label": "house-prices-global", "full_name": "datasets/house-prices-global", "color": {"background": "#D37295", "border": "#D37295"}, "size": 11.986184990874072, "font": {"size": 0}, "title": "datasets/house-prices-global\n8\u2605 \u00b7 Python\nResidential property price statistics from different countries (from bis.org)", "url": "https://github.com/datasets/house-prices-global", "_star_group": "data_ds"}, {"id": "star_luminati-io_Zoopla-dataset-samples", "label": "Zoopla-dataset-samples", "full_name": "luminati-io/Zoopla-dataset-samples", "color": {"background": "#D37295", "border": "#D37295"}, "size": 11.25701337452183, "font": {"size": 0}, "title": "luminati-io/Zoopla-dataset-samples\n2\u2605 \u00b7 \u2014\nA sample dataset of over 1000 Zoopla property listings , extracted using the Bright Data API, ideal for housing market demand analysis, price trends analysis, and smart business de", "url": "https://github.com/luminati-io/Zoopla-dataset-samples", "_star_group": "data_ds"}, {"id": "star_subashgandyer_datasets", "label": "datasets", "full_name": "subashgandyer/datasets", "color": {"background": "#D37295", "border": "#D37295"}, "size": 11.986184990874072, "font": {"size": 0}, "title": "subashgandyer/datasets\n8\u2605 \u00b7 Perl\n", "url": "https://github.com/subashgandyer/datasets", "_star_group": "data_ds"}, {"id": "star_martkir_crypto-prices-download", "label": "crypto-prices-download", "full_name": "martkir/crypto-prices-download", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.00304714553802, "font": {"size": 0}, "title": "martkir/crypto-prices-download\n28\u2605 \u00b7 Python\nFor downloading historical 1min resolution OHLC crypto price data", "url": "https://github.com/martkir/crypto-prices-download", "_star_group": "misc"}, {"id": "star_xFFFFF_Gekko-Datasets", "label": "Gekko-Datasets", "full_name": "xFFFFF/Gekko-Datasets", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 15.497972409190307, "font": {"size": 0}, "title": "xFFFFF/Gekko-Datasets\n175\u2605 \u00b7 Perl\nGekko Trading Bot dataset dumps. Ready to use and download history files in SQLite format.", "url": "https://github.com/xFFFFF/Gekko-Datasets", "_star_group": "quant"}, {"id": "star_sjdseu_Real-CATS", "label": "Real-CATS", "full_name": "sjdseu/Real-CATS", "color": {"background": "#D37295", "border": "#D37295"}, "size": 12.270543418900951, "font": {"size": 0}, "title": "sjdseu/Real-CATS\n12\u2605 \u00b7 \u2014\nReal-CATS: Real World Dataset of Cryptocurrency Address with Transaction Profiles", "url": "https://github.com/sjdseu/Real-CATS", "_star_group": "data_ds"}, {"id": "star_soheilrahsaz_cryptoNewsDataset", "label": "cryptoNewsDataset", "full_name": "soheilrahsaz/cryptoNewsDataset", "color": {"background": "#D37295", "border": "#D37295"}, "size": 14.024648358507653, "font": {"size": 0}, "title": "soheilrahsaz/cryptoNewsDataset\n68\u2605 \u00b7 \u2014\n248k Cryptocurrency news fetched from Cryptopanic.com", "url": "https://github.com/soheilrahsaz/cryptoNewsDataset", "_star_group": "data_ds"}, {"id": "star_mouadja02_bitcoin-news-data", "label": "bitcoin-news-data", "full_name": "mouadja02/bitcoin-news-data", "color": {"background": "#D37295", "border": "#D37295"}, "size": 11.900563363234188, "font": {"size": 0}, "title": "mouadja02/bitcoin-news-data\n7\u2605 \u00b7 Python\nComprehensive dataset of Bitcoin news articles and Fear & Greed Index data collected hourly from major cryptocurrency publications (May 2025 - June 2025)", "url": "https://github.com/mouadja02/bitcoin-news-data", "_star_group": "data_ds"}, {"id": "star_mouadja02_bitcoin-technical-indicators-dataset", "label": "bitcoin-technical-indicators-dataset", "full_name": "mouadja02/bitcoin-technical-indicators-dataset", "color": {"background": "#D37295", "border": "#D37295"}, "size": 12.814298672885464, "font": {"size": 0}, "title": "mouadja02/bitcoin-technical-indicators-dataset\n23\u2605 \u00b7 Python\nBitcoin Hourly OHLCV with 70+ Technical Indicators | Daily Updated Dataset for ML & Trading Analysis", "url": "https://github.com/mouadja02/bitcoin-technical-indicators-dataset", "_star_group": "data_ds"}, {"id": "star_HansjoergW_sec-fincancial-statement-data-set", "label": "sec-fincancial-statement-data-set", "full_name": "HansjoergW/sec-fincancial-statement-data-set", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.263831721057189, "font": {"size": 0}, "title": "HansjoergW/sec-fincancial-statement-data-set\n81\u2605 \u00b7 Jupyter Notebook\nHelper tools to analyze the " Financial Statement Data Sets" from the U.S. securities and exchange commission (sec.gov)", "url": "https://github.com/HansjoergW/sec-fincancial-statement-data-set", "_star_group": "misc"}, {"id": "star_sec-gov_python-for-dera-financial-datasets", "label": "python-for-dera-financial-datasets", "full_name": "sec-gov/python-for-dera-financial-datasets", "color": {"background": "#D37295", "border": "#D37295"}, "size": 13.512045466124189, "font": {"size": 0}, "title": "sec-gov/python-for-dera-financial-datasets\n45\u2605 \u00b7 Python\nPython code examples for accessing and analyzing SEC's XBRL Data Sets", "url": "https://github.com/sec-gov/python-for-dera-financial-datasets", "_star_group": "data_ds"}, {"id": "star_Zdong104_FNSPID_Financial_News_Dataset", "label": "FNSPID_Financial_News_Dataset", "full_name": "Zdong104/FNSPID_Financial_News_Dataset", "color": {"background": "#D37295", "border": "#D37295"}, "size": 17.228324532061823, "font": {"size": 0}, "title": "Zdong104/FNSPID_Financial_News_Dataset\n401\u2605 \u00b7 Python\nFNSPID: A Comprehensive Financial News Dataset in Time Series", "url": "https://github.com/Zdong104/FNSPID_Financial_News_Dataset", "_star_group": "data_ds"}, {"id": "star_virattt_financial-datasets", "label": "financial-datasets", "full_name": "virattt/financial-datasets", "color": {"background": "#D37295", "border": "#D37295"}, "size": 17.316456571842302, "font": {"size": 0}, "title": "virattt/financial-datasets\n416\u2605 \u00b7 Python\nFinancial datasets for LLMs \ud83e\uddea", "url": "https://github.com/virattt/financial-datasets", "_star_group": "data_ds"}, {"id": "star_financial-datasets_web-crawler", "label": "web-crawler", "full_name": "financial-datasets/web-crawler", "color": {"background": "#D37295", "border": "#D37295"}, "size": 16.25732802146521, "font": {"size": 0}, "title": "financial-datasets/web-crawler\n259\u2605 \u00b7 Python\nAn open source web crawler that searches the internet", "url": "https://github.com/financial-datasets/web-crawler", "_star_group": "data_ds"}, {"id": "star_financial-datasets_mcp-server", "label": "mcp-server", "full_name": "financial-datasets/mcp-server", "color": {"background": "#D37295", "border": "#D37295"}, "size": 22.19415526975917, "font": {"size": 0}, "title": "financial-datasets/mcp-server\n1956\u2605 \u00b7 Python\nAn MCP server for interacting with the Financial Datasets stock market API.", "url": "https://github.com/financial-datasets/mcp-server", "_star_group": "data_ds"}, {"id": "star_yumoxu_stocknet-dataset", "label": "stocknet-dataset", "full_name": "yumoxu/stocknet-dataset", "color": {"background": "#D37295", "border": "#D37295"}, "size": 18.58361529657023, "font": {"size": 0}, "title": "yumoxu/stocknet-dataset\n675\u2605 \u00b7 \u2014\nA comprehensive dataset for stock movement prediction from tweets and historical stock prices. ", "url": "https://github.com/yumoxu/stocknet-dataset", "_star_group": "data_ds"}, {"id": "star_datasets_s-and-p-500", "label": "s-and-p-500", "full_name": "datasets/s-and-p-500", "color": {"background": "#D37295", "border": "#D37295"}, "size": 16.61131836230635, "font": {"size": 0}, "title": "datasets/s-and-p-500\n306\u2605 \u00b7 Python\nS&P 500 index data (aka Standard and Poor's index of 500 major US stocks)", "url": "https://github.com/datasets/s-and-p-500", "_star_group": "data_ds"}, {"id": "star_JerBouma_FinanceDatabase", "label": "FinanceDatabase", "full_name": "JerBouma/FinanceDatabase", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "JerBouma/FinanceDatabase\n7439\u2605 \u00b7 Python\nThis is a database of 300.000+ symbols containing Equities, ETFs, Funds, Indices, Currencies, Cryptocurrencies and Money Markets.", "url": "https://github.com/JerBouma/FinanceDatabase", "_star_group": "misc"}, {"id": "star_ChrisWiles_claude-code-showcase", "label": "claude-code-showcase", "full_name": "ChrisWiles/claude-code-showcase", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 27.43756216250687, "font": {"size": 0}, "title": "ChrisWiles/claude-code-showcase\n5782\u2605 \u00b7 JavaScript\nComprehensive Claude Code project configuration example with hooks, skills, agents, commands, and GitHub Actions workflows", "url": "https://github.com/ChrisWiles/claude-code-showcase", "_star_group": "ai_code"}, {"id": "star_5bhuv4n35h_pentestmindmap", "label": "pentestmindmap", "full_name": "5bhuv4n35h/pentestmindmap", "color": {"background": "#9C755F", "border": "#9C755F"}, "size": 16.40523079020172, "font": {"size": 0}, "title": "5bhuv4n35h/pentestmindmap\n278\u2605 \u00b7 HTML\na mindmap on pentest #pentestmindmap #oscp #lpt #ecsa #ceh #bugbounty", "url": "https://github.com/5bhuv4n35h/pentestmindmap", "_star_group": "security"}, {"id": "star_playcanvas_model-viewer", "label": "model-viewer", "full_name": "playcanvas/model-viewer", "color": {"background": "#D95F02", "border": "#D95F02"}, "size": 18.545677429254717, "font": {"size": 0}, "title": "playcanvas/model-viewer\n666\u2605 \u00b7 TypeScript\n3D Model Viewer supporting glTF and 3D Gaussian Splats", "url": "https://github.com/playcanvas/model-viewer", "_star_group": "rl"}, {"id": "star_goharbor_harbor", "label": "harbor", "full_name": "goharbor/harbor", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "goharbor/harbor\n28252\u2605 \u00b7 Go\nAn open source trusted cloud native registry project that stores, signs, and scans content.", "url": "https://github.com/goharbor/harbor", "_star_group": "misc"}, {"id": "star_virattt_ai-hedge-fund", "label": "ai-hedge-fund", "full_name": "virattt/ai-hedge-fund", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "virattt/ai-hedge-fund\n52833\u2605 \u00b7 Python\nAn AI Hedge Fund Team", "url": "https://github.com/virattt/ai-hedge-fund", "_star_group": "misc"}, {"id": "star_newton-physics_newton", "label": "newton", "full_name": "newton-physics/newton", "color": {"background": "#0072B2", "border": "#0072B2"}, "size": 25.83107646077319, "font": {"size": 0}, "title": "newton-physics/newton\n4314\u2605 \u00b7 Python\nAn open-source, GPU-accelerated physics simulation engine built upon NVIDIA Warp, specifically targeting roboticists and simulation researchers.", "url": "https://github.com/newton-physics/newton", "_star_group": "gaming"}, {"id": "star_statice_awesome-synthetic-data", "label": "awesome-synthetic-data", "full_name": "statice/awesome-synthetic-data", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.160131662424554, "font": {"size": 0}, "title": "statice/awesome-synthetic-data\n247\u2605 \u00b7 \u2014\nA curated list of awesome synthetic data tools (open source and commercial).", "url": "https://github.com/statice/awesome-synthetic-data", "_star_group": "misc"}, {"id": "star_noworneverev_Awesome-RAG", "label": "Awesome-RAG", "full_name": "noworneverev/Awesome-RAG", "color": {"background": "#59A14F", "border": "#59A14F"}, "size": 13.459748983023843, "font": {"size": 0}, "title": "noworneverev/Awesome-RAG\n43\u2605 \u00b7 TypeScript\nAwesome-RAG: a curated list of Retrieval-Augmented Generation", "url": "https://github.com/noworneverev/Awesome-RAG", "_star_group": "kg_rag"}, {"id": "star_caramaschiHG_awesome-ai-agents-2026", "label": "awesome-ai-agents-2026", "full_name": "caramaschiHG/awesome-ai-agents-2026", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 16.531926139722568, "font": {"size": 0}, "title": "caramaschiHG/awesome-ai-agents-2026\n295\u2605 \u00b7 \u2014\n\ud83e\udd16 The most comprehensive list of AI agents, frameworks & tools in 2026. 300+ resources \u00b7 20+ categories \u00b7 Updated monthly.", "url": "https://github.com/caramaschiHG/awesome-ai-agents-2026", "_star_group": "ai_agent_fw"}, {"id": "star_EthicalML_awesome-production-machine-learning", "label": "awesome-production-machine-learning", "full_name": "EthicalML/awesome-production-machine-learning", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "EthicalML/awesome-production-machine-learning\n20377\u2605 \u00b7 \u2014\nA curated list of awesome open source libraries to deploy, monitor, version and scale your machine learning", "url": "https://github.com/EthicalML/awesome-production-machine-learning", "_star_group": "misc"}, {"id": "star_jdorfman_awesome-json-datasets", "label": "awesome-json-datasets", "full_name": "jdorfman/awesome-json-datasets", "color": {"background": "#D37295", "border": "#D37295"}, "size": 24.87650441034649, "font": {"size": 0}, "title": "jdorfman/awesome-json-datasets\n3573\u2605 \u00b7 JavaScript\nA curated list of awesome JSON datasets that don't require authentication.", "url": "https://github.com/jdorfman/awesome-json-datasets", "_star_group": "data_ds"}, {"id": "star_krzjoa_awesome-python-data-science", "label": "awesome-python-data-science", "full_name": "krzjoa/awesome-python-data-science", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 24.627736448388845, "font": {"size": 0}, "title": "krzjoa/awesome-python-data-science\n3395\u2605 \u00b7 \u2014\nProbably the best curated list of data science software in Python.", "url": "https://github.com/krzjoa/awesome-python-data-science", "_star_group": "misc"}, {"id": "star_geniusrise_awesome-healthcare-datasets", "label": "awesome-healthcare-datasets", "full_name": "geniusrise/awesome-healthcare-datasets", "color": {"background": "#D37295", "border": "#D37295"}, "size": 14.840948887874754, "font": {"size": 0}, "title": "geniusrise/awesome-healthcare-datasets\n119\u2605 \u00b7 \u2014\nHealthcare and biomedical datasets, for AI/ML", "url": "https://github.com/geniusrise/awesome-healthcare-datasets", "_star_group": "data_ds"}, {"id": "star_openmedlab_Awesome-Medical-Dataset", "label": "Awesome-Medical-Dataset", "full_name": "openmedlab/Awesome-Medical-Dataset", "color": {"background": "#D37295", "border": "#D37295"}, "size": 21.905421908439454, "font": {"size": 0}, "title": "openmedlab/Awesome-Medical-Dataset\n1819\u2605 \u00b7 \u2014\nCollection of awesome medical dataset resources.", "url": "https://github.com/openmedlab/Awesome-Medical-Dataset", "_star_group": "data_ds"}, {"id": "star_jonathanwvd_awesome-industrial-datasets", "label": "awesome-industrial-datasets", "full_name": "jonathanwvd/awesome-industrial-datasets", "color": {"background": "#D37295", "border": "#D37295"}, "size": 17.240201702293813, "font": {"size": 0}, "title": "jonathanwvd/awesome-industrial-datasets\n403\u2605 \u00b7 HTML\nA curated collection of public industrial datasets.", "url": "https://github.com/jonathanwvd/awesome-industrial-datasets", "_star_group": "data_ds"}, {"id": "star_bytewax_awesome-public-real-time-datasets", "label": "awesome-public-real-time-datasets", "full_name": "bytewax/awesome-public-real-time-datasets", "color": {"background": "#D37295", "border": "#D37295"}, "size": 23.0547324808176, "font": {"size": 0}, "title": "bytewax/awesome-public-real-time-datasets\n2405\u2605 \u00b7 \u2014\nA list of publicly available datasets with real-time data maintained by the team at bytewax.io", "url": "https://github.com/bytewax/awesome-public-real-time-datasets", "_star_group": "data_ds"}, {"id": "star_ComposioHQ_awesome-claude-plugins", "label": "awesome-claude-plugins", "full_name": "ComposioHQ/awesome-claude-plugins", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 20.65887840497604, "font": {"size": 0}, "title": "ComposioHQ/awesome-claude-plugins\n1301\u2605 \u00b7 JavaScript\nA curated list of Plugins that let you extend Claude Code with custom commands, agents, hooks, and MCP servers through the plugin system.", "url": "https://github.com/ComposioHQ/awesome-claude-plugins", "_star_group": "ai_code"}, {"id": "star_pixijs_pixijs", "label": "pixijs", "full_name": "pixijs/pixijs", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "pixijs/pixijs\n46922\u2605 \u00b7 TypeScript\nThe HTML5 Creation Engine: Create beautiful digital content with the fastest, most flexible 2D WebGL renderer.", "url": "https://github.com/pixijs/pixijs", "_star_group": "misc"}, {"id": "star_coree_awesome-rag", "label": "awesome-rag", "full_name": "coree/awesome-rag", "color": {"background": "#59A14F", "border": "#59A14F"}, "size": 17.08879298778738, "font": {"size": 0}, "title": "coree/awesome-rag\n378\u2605 \u00b7 \u2014\nA curated list of retrieval-augmented generation (RAG) in large language models", "url": "https://github.com/coree/awesome-rag", "_star_group": "kg_rag"}, {"id": "star_josephmisiti_awesome-machine-learning", "label": "awesome-machine-learning", "full_name": "josephmisiti/awesome-machine-learning", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "josephmisiti/awesome-machine-learning\n72171\u2605 \u00b7 Python\nA curated list of awesome Machine Learning frameworks, libraries and software.", "url": "https://github.com/josephmisiti/awesome-machine-learning", "_star_group": "misc"}, {"id": "star_academic_awesome-datascience", "label": "awesome-datascience", "full_name": "academic/awesome-datascience", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "academic/awesome-datascience\n28816\u2605 \u00b7 \u2014\n:memo: An awesome Data Science repository to learn and apply for real world problems.", "url": "https://github.com/academic/awesome-datascience", "_star_group": "misc"}, {"id": "star_e2b-dev_awesome-ai-agents", "label": "awesome-ai-agents", "full_name": "e2b-dev/awesome-ai-agents", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "e2b-dev/awesome-ai-agents\n27236\u2605 \u00b7 \u2014\nA list of AI autonomous agents", "url": "https://github.com/e2b-dev/awesome-ai-agents", "_star_group": "ai_agent_fw"}, {"id": "star_awesome-selfhosted_awesome-selfhosted", "label": "awesome-selfhosted", "full_name": "awesome-selfhosted/awesome-selfhosted", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "awesome-selfhosted/awesome-selfhosted\n285788\u2605 \u00b7 \u2014\nA list of Free Software network services and web applications which can be hosted on your own servers", "url": "https://github.com/awesome-selfhosted/awesome-selfhosted", "_star_group": "misc"}, {"id": "star_andrew_ultimate-awesome", "label": "ultimate-awesome", "full_name": "andrew/ultimate-awesome", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.497972409190307, "font": {"size": 0}, "title": "andrew/ultimate-awesome\n175\u2605 \u00b7 \u2014\nEvery awesome list on every topic, including awesome lists of awesome lists, updated daily.", "url": "https://github.com/andrew/ultimate-awesome", "_star_group": "misc"}, {"id": "star_Vesely_skills", "label": "skills", "full_name": "Vesely/skills", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 12.814298672885464, "font": {"size": 0}, "title": "Vesely/skills\n23\u2605 \u00b7 \u2014\nMy personal collection of Claude Code skills", "url": "https://github.com/Vesely/skills", "_star_group": "ai_code"}, {"id": "star_AssetRipper_AssetRipper", "label": "AssetRipper", "full_name": "AssetRipper/AssetRipper", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "AssetRipper/AssetRipper\n7273\u2605 \u00b7 C#\nGUI Application to work with engine assets, asset bundles, and serialized files", "url": "https://github.com/AssetRipper/AssetRipper", "_star_group": "ai_code"}, {"id": "star_simonw_datasette", "label": "datasette", "full_name": "simonw/datasette", "color": {"background": "#D37295", "border": "#D37295"}, "size": 28, "font": {"size": 0}, "title": "simonw/datasette\n10944\u2605 \u00b7 Python\nAn open source multi-tool for exploring and publishing data", "url": "https://github.com/simonw/datasette", "_star_group": "data_ds"}, {"id": "star_jbrownlee_Datasets", "label": "Datasets", "full_name": "jbrownlee/Datasets", "color": {"background": "#D37295", "border": "#D37295"}, "size": 20.47171503391379, "font": {"size": 0}, "title": "jbrownlee/Datasets\n1233\u2605 \u00b7 \u2014\nMachine learning datasets used in tutorials on MachineLearningMastery.com", "url": "https://github.com/jbrownlee/Datasets", "_star_group": "data_ds"}, {"id": "star_tensorflow_datasets", "label": "datasets", "full_name": "tensorflow/datasets", "color": {"background": "#D37295", "border": "#D37295"}, "size": 26.11646163422953, "font": {"size": 0}, "title": "tensorflow/datasets\n4554\u2605 \u00b7 Python\nTFDS is a collection of datasets ready to use with TensorFlow, Jax, ...", "url": "https://github.com/tensorflow/datasets", "_star_group": "data_ds"}, {"id": "star_huggingface_datasets", "label": "datasets", "full_name": "huggingface/datasets", "color": {"background": "#D37295", "border": "#D37295"}, "size": 28, "font": {"size": 0}, "title": "huggingface/datasets\n21396\u2605 \u00b7 Python\n\ud83e\udd17 The largest hub of ready-to-use datasets for AI models with fast, easy-to-use and efficient data manipulation tools", "url": "https://github.com/huggingface/datasets", "_star_group": "data_ds"}, {"id": "star_awesomedata_awesome-public-datasets", "label": "awesome-public-datasets", "full_name": "awesomedata/awesome-public-datasets", "color": {"background": "#D37295", "border": "#D37295"}, "size": 28, "font": {"size": 0}, "title": "awesomedata/awesome-public-datasets\n73987\u2605 \u00b7 \u2014\nA topic-centric list of HQ open datasets.", "url": "https://github.com/awesomedata/awesome-public-datasets", "_star_group": "data_ds"}, {"id": "star_openimages_dataset", "label": "dataset", "full_name": "openimages/dataset", "color": {"background": "#D37295", "border": "#D37295"}, "size": 25.893795886243865, "font": {"size": 0}, "title": "openimages/dataset\n4366\u2605 \u00b7 Python\nThe Open Images dataset", "url": "https://github.com/openimages/dataset", "_star_group": "data_ds"}, {"id": "star_Jon-Becker_prediction-market-analysis", "label": "prediction-market-analysis", "full_name": "Jon-Becker/prediction-market-analysis", "color": {"background": "#D37295", "border": "#D37295"}, "size": 23.897505688789106, "font": {"size": 0}, "title": "Jon-Becker/prediction-market-analysis\n2907\u2605 \u00b7 Python\nA framework for collecting and analyzing prediction market data, including the largest publicly available dataset of Polymarket and Kalshi market and trade data.", "url": "https://github.com/Jon-Becker/prediction-market-analysis", "_star_group": "data_ds"}, {"id": "star_fastly_fastly-agent-toolkit", "label": "fastly-agent-toolkit", "full_name": "fastly/fastly-agent-toolkit", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 12.642339933726461, "font": {"size": 0}, "title": "fastly/fastly-agent-toolkit\n19\u2605 \u00b7 Shell\nFastly skills for AI Agents.", "url": "https://github.com/fastly/fastly-agent-toolkit", "_star_group": "misc"}, {"id": "star_meshtastic_firmware", "label": "firmware", "full_name": "meshtastic/firmware", "color": {"background": "#E7298A", "border": "#E7298A"}, "size": 28, "font": {"size": 0}, "title": "meshtastic/firmware\n7248\u2605 \u00b7 C++\nThe official firmware for Meshtastic, an open-source, off-grid mesh communication system.", "url": "https://github.com/meshtastic/firmware", "_star_group": "hw_iot"}, {"id": "star_vudovn_antigravity-kit", "label": "antigravity-kit", "full_name": "vudovn/antigravity-kit", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "vudovn/antigravity-kit\n7064\u2605 \u00b7 TypeScript\n", "url": "https://github.com/vudovn/antigravity-kit", "_star_group": "misc"}, {"id": "star_hjdhjd_homebridge-unifi-protect", "label": "homebridge-unifi-protect", "full_name": "hjdhjd/homebridge-unifi-protect", "color": {"background": "#D95F02", "border": "#D95F02"}, "size": 21.685331552387467, "font": {"size": 0}, "title": "hjdhjd/homebridge-unifi-protect\n1719\u2605 \u00b7 TypeScript\n:video_camera: Complete HomeKit integration for all UniFi Protect device types with full support for most features including HomeKit Secure Video, and more. https://homebridge.io", "url": "https://github.com/hjdhjd/homebridge-unifi-protect", "_star_group": "rl"}, {"id": "star_Yuyz0112_claude-code-reverse", "label": "claude-code-reverse", "full_name": "Yuyz0112/claude-code-reverse", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 22.94269912077668, "font": {"size": 0}, "title": "Yuyz0112/claude-code-reverse\n2343\u2605 \u00b7 JavaScript\nA Tool to Visualize Claude Code's LLM Interactions", "url": "https://github.com/Yuyz0112/claude-code-reverse", "_star_group": "ai_code"}, {"id": "star_missuo_mailclaw", "label": "mailclaw", "full_name": "missuo/mailclaw", "color": {"background": "#A6761D", "border": "#A6761D"}, "size": 13.537611071716059, "font": {"size": 0}, "title": "missuo/mailclaw\n46\u2605 \u00b7 Rust\nCloudflare Workers email inbox with token-protected API. Catch-all receiving, full-text search, and AI agent skill included.", "url": "https://github.com/missuo/mailclaw", "_star_group": "search_ret"}, {"id": "star_oxda_usb-cereal", "label": "usb-cereal", "full_name": "oxda/usb-cereal", "color": {"background": "#E7298A", "border": "#E7298A"}, "size": 15.009442514996433, "font": {"size": 0}, "title": "oxda/usb-cereal\n132\u2605 \u00b7 \u2014\nUSB-Cereal is a powerful, fully open source development tool that simplifies testing, development, debugging, and manufacturing of devices that utilize USB-C. Using USB-C\u2019s extende", "url": "https://github.com/oxda/usb-cereal", "_star_group": "hw_iot"}, {"id": "star_bbepis_XUnity_AutoTranslator", "label": "XUnity.AutoTranslator", "full_name": "bbepis/XUnity.AutoTranslator", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 24.122542639791867, "font": {"size": 0}, "title": "bbepis/XUnity.AutoTranslator\n3052\u2605 \u00b7 C#\n", "url": "https://github.com/bbepis/XUnity.AutoTranslator", "_star_group": "misc"}, {"id": "star_kulunkilabs_vibenetbackup", "label": "vibenetbackup", "full_name": "kulunkilabs/vibenetbackup", "color": {"background": "#D95F02", "border": "#D95F02"}, "size": 13.562806968803505, "font": {"size": 0}, "title": "kulunkilabs/vibenetbackup\n47\u2605 \u00b7 Python\nNetwork device configuration backup manager with multi-engine support, automated scheduling, and retention policies", "url": "https://github.com/kulunkilabs/vibenetbackup", "_star_group": "rl"}, {"id": "star_santifer_career-ops", "label": "career-ops", "full_name": "santifer/career-ops", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "santifer/career-ops\n32463\u2605 \u00b7 JavaScript\nAI-powered job search system built on Claude Code. 14 skill modes, Go dashboard, PDF generation, batch processing.", "url": "https://github.com/santifer/career-ops", "_star_group": "llm_api"}, {"id": "star_Lu3ky13_Search-for-all-leaked-keys-secrets-using-one-regex-", "label": "Search-for-all-leaked-keys-secrets-using", "full_name": "Lu3ky13/Search-for-all-leaked-keys-secrets-using-one-regex-", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.999547547021795, "font": {"size": 0}, "title": "Lu3ky13/Search-for-all-leaked-keys-secrets-using-one-regex-\n228\u2605 \u00b7 \u2014\nSearch for all leaked keys/secrets using one regex! bugbounty", "url": "https://github.com/Lu3ky13/Search-for-all-leaked-keys-secrets-using-one-regex-", "_star_group": "misc"}, {"id": "star_briatte_awesome-network-analysis", "label": "awesome-network-analysis", "full_name": "briatte/awesome-network-analysis", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 25.450067565565114, "font": {"size": 0}, "title": "briatte/awesome-network-analysis\n4007\u2605 \u00b7 R\nA curated list of awesome network analysis resources.", "url": "https://github.com/briatte/awesome-network-analysis", "_star_group": "misc"}, {"id": "star_JanDitzen_comtrade", "label": "comtrade", "full_name": "JanDitzen/comtrade", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 12.642339933726461, "font": {"size": 0}, "title": "JanDitzen/comtrade\n19\u2605 \u00b7 Stata\nDownload trade data from UN Comtrade using jsonio and parsing the output in a user friendly format.", "url": "https://github.com/JanDitzen/comtrade", "_star_group": "misc"}, {"id": "star_ravila4_claude-adhd-skills", "label": "claude-adhd-skills", "full_name": "ravila4/claude-adhd-skills", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 13.660143882499947, "font": {"size": 0}, "title": "ravila4/claude-adhd-skills\n51\u2605 \u00b7 Python\nClaude Code skills and hooks for staying organized with AI agents.", "url": "https://github.com/ravila4/claude-adhd-skills", "_star_group": "ai_code"}, {"id": "star_kuleshov_teaching-material", "label": "teaching-material", "full_name": "kuleshov/teaching-material", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 20.236579338993977, "font": {"size": 0}, "title": "kuleshov/teaching-material\n1151\u2605 \u00b7 Jupyter Notebook\nTeaching materials for the machine learning and deep learning classes at Stanford and Cornell", "url": "https://github.com/kuleshov/teaching-material", "_star_group": "misc"}, {"id": "star_personalrobotics_OpenChisel", "label": "OpenChisel", "full_name": "personalrobotics/OpenChisel", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 17.769144160024762, "font": {"size": 0}, "title": "personalrobotics/OpenChisel\n499\u2605 \u00b7 C++\nAn open-source version of the Chisel chunked TSDF library.", "url": "https://github.com/personalrobotics/OpenChisel", "_star_group": "misc"}, {"id": "star_quemsah_awesome-claude-plugins", "label": "awesome-claude-plugins", "full_name": "quemsah/awesome-claude-plugins", "color": {"background": "#CC79A7", "border": "#CC79A7"}, "size": 17.25794363370317, "font": {"size": 0}, "title": "quemsah/awesome-claude-plugins\n406\u2605 \u00b7 TypeScript\nAutomated collection of Claude Code plugin adoption metrics across GitHub repositories using n8n workflows", "url": "https://github.com/quemsah/awesome-claude-plugins", "_star_group": "workflow"}, {"id": "star_Houseofmvps_codesight", "label": "codesight", "full_name": "Houseofmvps/codesight", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 19.372210834071737, "font": {"size": 0}, "title": "Houseofmvps/codesight\n881\u2605 \u00b7 TypeScript\nUniversal AI context generator. Saves thousands of tokens per conversation in Claude Code, Cursor, Copilot, Codex, and more.", "url": "https://github.com/Houseofmvps/codesight", "_star_group": "ai_code"}, {"id": "star_microsoft_markitdown", "label": "markitdown", "full_name": "microsoft/markitdown", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "microsoft/markitdown\n106703\u2605 \u00b7 Python\nPython tool for converting files and office documents to Markdown.", "url": "https://github.com/microsoft/markitdown", "_star_group": "ai_agent_fw"}, {"id": "star_yaph_tts-samples", "label": "tts-samples", "full_name": "yaph/tts-samples", "color": {"background": "#7293CB", "border": "#7293CB"}, "size": 14.263831721057189, "font": {"size": 0}, "title": "yaph/tts-samples\n81\u2605 \u00b7 Python\nThis repository provides text-to-speech (TTS) audio samples in MP3 format for a wide range of languages, generated using the Microsoft Edge TTS engine.", "url": "https://github.com/yaph/tts-samples", "_star_group": "voice"}, {"id": "star_k06a_macpow", "label": "macpow", "full_name": "k06a/macpow", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 18.625373071309383, "font": {"size": 0}, "title": "k06a/macpow\n685\u2605 \u00b7 Rust\n\ud83d\udcbb\ud83d\udd0b Real-time power tree TUI for Apple Silicon", "url": "https://github.com/k06a/macpow", "_star_group": "dev_cli"}, {"id": "star_vultuk_whatsapp-translator", "label": "whatsapp-translator", "full_name": "vultuk/whatsapp-translator", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 11.0, "font": {"size": 0}, "title": "vultuk/whatsapp-translator\n1\u2605 \u00b7 Rust\n", "url": "https://github.com/vultuk/whatsapp-translator", "_star_group": "misc"}, {"id": "star_NVlabs_FastGen", "label": "FastGen", "full_name": "NVlabs/FastGen", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 18.67905198085186, "font": {"size": 0}, "title": "NVlabs/FastGen\n698\u2605 \u00b7 Python\nNVIDIA FastGen: Fast Generation from Diffusion Models", "url": "https://github.com/NVlabs/FastGen", "_star_group": "misc"}, {"id": "star_ClosedXML_ClosedXML_Report", "label": "ClosedXML.Report", "full_name": "ClosedXML/ClosedXML.Report", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 18.438459099444184, "font": {"size": 0}, "title": "ClosedXML/ClosedXML.Report\n641\u2605 \u00b7 C#\nClosedXML.Report is a tool for report generation with which you can easily export any data from your .NET classes to Excel using a XLSX-template.", "url": "https://github.com/ClosedXML/ClosedXML.Report", "_star_group": "misc"}, {"id": "star_crowded-street_3s-decomp", "label": "3s-decomp", "full_name": "crowded-street/3s-decomp", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.06821501836618, "font": {"size": 0}, "title": "crowded-street/3s-decomp\n236\u2605 \u00b7 C\nDecompilation of Street Fighter III: 3rd Strike for PlayStation 2", "url": "https://github.com/crowded-street/3s-decomp", "_star_group": "misc"}, {"id": "star_itigges22_ATLAS", "label": "ATLAS", "full_name": "itigges22/ATLAS", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 22.058914182864, "font": {"size": 0}, "title": "itigges22/ATLAS\n1891\u2605 \u00b7 Python\nAdaptive Test-time Learning and Autonomous Specialization", "url": "https://github.com/itigges22/ATLAS", "_star_group": "misc"}, {"id": "star_Nako0_devglobe-extension", "label": "devglobe-extension", "full_name": "Nako0/devglobe-extension", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 14.600849812976683, "font": {"size": 0}, "title": "Nako0/devglobe-extension\n102\u2605 \u00b7 TypeScript\nOfficial IDE extensions for DevGlobe ! All improvements are welcome", "url": "https://github.com/Nako0/devglobe-extension", "_star_group": "ai_code"}, {"id": "star_brendanhogan_loophole", "label": "loophole", "full_name": "brendanhogan/loophole", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.988336813160025, "font": {"size": 0}, "title": "brendanhogan/loophole\n362\u2605 \u00b7 Python\n", "url": "https://github.com/brendanhogan/loophole", "_star_group": "misc"}, {"id": "star_mattmireles_gemma-tuner-multimodal", "label": "gemma-tuner-multimodal", "full_name": "mattmireles/gemma-tuner-multimodal", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 20.52191798286024, "font": {"size": 0}, "title": "mattmireles/gemma-tuner-multimodal\n1251\u2605 \u00b7 Python\nFine-tune Gemma 4 and 3n with audio, images and text on Apple Silicon, using PyTorch and Metal Performance Shaders.", "url": "https://github.com/mattmireles/gemma-tuner-multimodal", "_star_group": "mac"}, {"id": "star_jackwener_OpenCLI", "label": "OpenCLI", "full_name": "jackwener/OpenCLI", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 28, "font": {"size": 0}, "title": "jackwener/OpenCLI\n15464\u2605 \u00b7 JavaScript\nMake Any Website & Tool Your CLI. A universal CLI Hub and AI-native runtime. Transform any website, Electron app, or local binary into a standardized command-line interface. Built ", "url": "https://github.com/jackwener/OpenCLI", "_star_group": "dev_cli"}, {"id": "star_ysharma3501_LuxTTS", "label": "LuxTTS", "full_name": "ysharma3501/LuxTTS", "color": {"background": "#7293CB", "border": "#7293CB"}, "size": 24.95712513722897, "font": {"size": 0}, "title": "ysharma3501/LuxTTS\n3632\u2605 \u00b7 Python\nA high-quality rapid TTS voice cloning model that reaches speeds of 150x realtime.", "url": "https://github.com/ysharma3501/LuxTTS", "_star_group": "voice"}, {"id": "star_IAmTomShaw_f1-race-replay", "label": "f1-race-replay", "full_name": "IAmTomShaw/f1-race-replay", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 27.209630196440575, "font": {"size": 0}, "title": "IAmTomShaw/f1-race-replay\n5556\u2605 \u00b7 Python\nAn interactive Formula 1 race visualisation and data analysis tool built with Python! \ud83c\udfce\ufe0f", "url": "https://github.com/IAmTomShaw/f1-race-replay", "_star_group": "misc"}, {"id": "star_collaborator-ai_collab-public", "label": "collab-public", "full_name": "collaborator-ai/collab-public", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 22.964536679863585, "font": {"size": 0}, "title": "collaborator-ai/collab-public\n2355\u2605 \u00b7 TypeScript\nCollaborator is a place to create with agents.", "url": "https://github.com/collaborator-ai/collab-public", "_star_group": "dev_cli"}, {"id": "star_HKUDS_LightRAG", "label": "LightRAG", "full_name": "HKUDS/LightRAG", "color": {"background": "#59A14F", "border": "#59A14F"}, "size": 28, "font": {"size": 0}, "title": "HKUDS/LightRAG\n33112\u2605 \u00b7 Python\n[EMNLP2025] "LightRAG: Simple and Fast Retrieval-Augmented Generation"", "url": "https://github.com/HKUDS/LightRAG", "_star_group": "kg_rag"}, {"id": "star_browser-use_browser-use", "label": "browser-use", "full_name": "browser-use/browser-use", "color": {"background": "#76B7B2", "border": "#76B7B2"}, "size": 28, "font": {"size": 0}, "title": "browser-use/browser-use\n87618\u2605 \u00b7 Python\n\ud83c\udf10 Make websites accessible for AI agents. Automate tasks online with ease.", "url": "https://github.com/browser-use/browser-use", "_star_group": "browser_auto"}, {"id": "star_shanraisshan_claude-code-best-practice", "label": "claude-code-best-practice", "full_name": "shanraisshan/claude-code-best-practice", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "shanraisshan/claude-code-best-practice\n41306\u2605 \u00b7 HTML\npractice made claude perfect", "url": "https://github.com/shanraisshan/claude-code-best-practice", "_star_group": "llm_api"}, {"id": "star_public-apis_public-apis", "label": "public-apis", "full_name": "public-apis/public-apis", "color": {"background": "#D37295", "border": "#D37295"}, "size": 28, "font": {"size": 0}, "title": "public-apis/public-apis\n421372\u2605 \u00b7 Python\nA collective list of free APIs", "url": "https://github.com/public-apis/public-apis", "_star_group": "data_ds"}, {"id": "star_codecrafters-io_build-your-own-x", "label": "build-your-own-x", "full_name": "codecrafters-io/build-your-own-x", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "codecrafters-io/build-your-own-x\n489863\u2605 \u00b7 Markdown\nMaster programming by recreating your favorite technologies from scratch.", "url": "https://github.com/codecrafters-io/build-your-own-x", "_star_group": "misc"}, {"id": "star_sindresorhus_awesome", "label": "awesome", "full_name": "sindresorhus/awesome", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "sindresorhus/awesome\n454924\u2605 \u00b7 \u2014\n\ud83d\ude0e Awesome lists about all kinds of interesting topics", "url": "https://github.com/sindresorhus/awesome", "_star_group": "misc"}, {"id": "star_markondej_fm_transmitter", "label": "fm_transmitter", "full_name": "markondej/fm_transmitter", "color": {"background": "#E7298A", "border": "#E7298A"}, "size": 21.097233403509303, "font": {"size": 0}, "title": "markondej/fm_transmitter\n1470\u2605 \u00b7 C++\nRaspberry Pi as FM transmitter", "url": "https://github.com/markondej/fm_transmitter", "_star_group": "hw_iot"}, {"id": "star_primaprashant_awesome-voice-typing", "label": "awesome-voice-typing", "full_name": "primaprashant/awesome-voice-typing", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 14.462717264934168, "font": {"size": 0}, "title": "primaprashant/awesome-voice-typing\n93\u2605 \u00b7 \u2014\nCurated list of open-source speech-to-text and voice typing tools for Linux, macOS, Windows, Android, and iOS. Offline, local, and cloud.", "url": "https://github.com/primaprashant/awesome-voice-typing", "_star_group": "mac"}, {"id": "star_triplea-game_triplea", "label": "triplea", "full_name": "triplea-game/triplea", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 21.21064851459785, "font": {"size": 0}, "title": "triplea-game/triplea\n1516\u2605 \u00b7 Java\nTripleA is a turn based strategy game and board game engine, similar to Axis & Allies or Risk.", "url": "https://github.com/triplea-game/triplea", "_star_group": "misc"}, {"id": "star_databricks_terraform-databricks-sra", "label": "terraform-databricks-sra", "full_name": "databricks/terraform-databricks-sra", "color": {"background": "#D37295", "border": "#D37295"}, "size": 15.668777424843135, "font": {"size": 0}, "title": "databricks/terraform-databricks-sra\n192\u2605 \u00b7 HCL\nThe Security Reference Architecture (SRA) with Terraform enables deployment of Databricks workspaces and cloud infrastructure configured with security best practices.", "url": "https://github.com/databricks/terraform-databricks-sra", "_star_group": "data_ds"}, {"id": "star_LucasDuys_forge", "label": "forge", "full_name": "LucasDuys/forge", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 12.444050163747711, "font": {"size": 0}, "title": "LucasDuys/forge\n15\u2605 \u00b7 JavaScript\nTurn a one-line idea into a branch with tested, reviewed, committed code. The brainstorm-to-commit pipeline for Claude Code.", "url": "https://github.com/LucasDuys/forge", "_star_group": "llm_api"}, {"id": "star_bytedance_trae-agent", "label": "trae-agent", "full_name": "bytedance/trae-agent", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "bytedance/trae-agent\n11333\u2605 \u00b7 Python\nTrae Agent is an LLM-based agent for general purpose software engineering tasks.", "url": "https://github.com/bytedance/trae-agent", "_star_group": "misc"}, {"id": "star_noahbaxter_chartchotic", "label": "chartchotic", "full_name": "noahbaxter/chartchotic", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.512045466124189, "font": {"size": 0}, "title": "noahbaxter/chartchotic\n45\u2605 \u00b7 C++\nAn au/vst plugin for DAWs that visualizes midi notes similar to how they appear in rhythm games like Clone Hero and YARG", "url": "https://github.com/noahbaxter/chartchotic", "_star_group": "misc"}, {"id": "star_wilpel_caveman-compression", "label": "caveman-compression", "full_name": "wilpel/caveman-compression", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 18.164530915820578, "font": {"size": 0}, "title": "wilpel/caveman-compression\n580\u2605 \u00b7 Python\nCaveman Compression is a semantic compression method for LLM contexts. It removes predictable grammar while preserving the unpredictable, factual content that defines meaning.", "url": "https://github.com/wilpel/caveman-compression", "_star_group": "misc"}, {"id": "star_mtolly_onyx", "label": "onyx", "full_name": "mtolly/onyx", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.374669681963223, "font": {"size": 0}, "title": "mtolly/onyx\n274\u2605 \u00b7 Haskell\nToolkit for converting and building songs for Rock Band, Guitar Hero, Clone Hero, and other similar rhythm games", "url": "https://github.com/mtolly/onyx", "_star_group": "misc"}, {"id": "star_pad3r_pad3r-public", "label": "pad3r-public", "full_name": "pad3r/pad3r-public", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 12.642339933726461, "font": {"size": 0}, "title": "pad3r/pad3r-public\n19\u2605 \u00b7 Python\nOfficial implementation of PAD3R, a pipeline for reconstructing dynamic 3D objects from a single casual monocular video by jointly modeling object deformation and camera motion.", "url": "https://github.com/pad3r/pad3r-public", "_star_group": "misc"}, {"id": "star_yanqinJiang_Animate3D", "label": "Animate3D", "full_name": "yanqinJiang/Animate3D", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.14362653992044, "font": {"size": 0}, "title": "yanqinJiang/Animate3D\n245\u2605 \u00b7 Python\n[NeurIPS 2024] Animate3D: Animating Any 3D Model with Multi-view Video Diffusion", "url": "https://github.com/yanqinJiang/Animate3D", "_star_group": "misc"}, {"id": "star_adamlyttleapps_claude-skill-app-onboarding-questionnaire", "label": "claude-skill-app-onboarding-questionnair", "full_name": "adamlyttleapps/claude-skill-app-onboarding-questionnaire", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 19.097302595889058, "font": {"size": 0}, "title": "adamlyttleapps/claude-skill-app-onboarding-questionnaire\n805\u2605 \u00b7 \u2014\n A Claude Code skill that designs and builds high-converting questionnaire-style app onboarding flows \u2014 modelled on proven conversion patterns from top subscription apps like Mo", "url": "https://github.com/adamlyttleapps/claude-skill-app-onboarding-questionnaire", "_star_group": "ai_code"}, {"id": "star_bee-san_pyWhat", "label": "pyWhat", "full_name": "bee-san/pyWhat", "color": {"background": "#9C755F", "border": "#9C755F"}, "size": 28, "font": {"size": 0}, "title": "bee-san/pyWhat\n7206\u2605 \u00b7 Python\n\ud83d\udc38 Identify anything. pyWhat easily lets you identify emails, IP addresses, and more. Feed it a .pcap file or some text and it'll tell you what it is! \ud83e\uddd9\u200d\u2640\ufe0f", "url": "https://github.com/bee-san/pyWhat", "_star_group": "security"}, {"id": "star_iv-org_smart-ipv6-rotator", "label": "smart-ipv6-rotator", "full_name": "iv-org/smart-ipv6-rotator", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.236756646723949, "font": {"size": 0}, "title": "iv-org/smart-ipv6-rotator\n151\u2605 \u00b7 Python\nIPv6 rotator for specific subnets - unblock restrictions on IPv6 enabled websites (Google by default but customizable for others)", "url": "https://github.com/iv-org/smart-ipv6-rotator", "_star_group": "misc"}, {"id": "star_Castien_Toshokanime-backend", "label": "Toshokanime-backend", "full_name": "Castien/Toshokanime-backend", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 12.68744694072494, "font": {"size": 0}, "title": "Castien/Toshokanime-backend\n20\u2605 \u00b7 JavaScript\nPS Capstone", "url": "https://github.com/Castien/Toshokanime-backend", "_star_group": "misc"}, {"id": "star_omeedcs_vibetracer", "label": "vibetracer", "full_name": "omeedcs/vibetracer", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 12.930496485197748, "font": {"size": 0}, "title": "omeedcs/vibetracer\n26\u2605 \u00b7 Rust\nReal-time tracing, replaying, and rewinding of AI coding assistant edits", "url": "https://github.com/omeedcs/vibetracer", "_star_group": "misc"}, {"id": "star_geerlingguy_pi-cluster", "label": "pi-cluster", "full_name": "geerlingguy/pi-cluster", "color": {"background": "#E7298A", "border": "#E7298A"}, "size": 18.88339554013161, "font": {"size": 0}, "title": "geerlingguy/pi-cluster\n749\u2605 \u00b7 Shell\nRaspberry Pi Cluster automation", "url": "https://github.com/geerlingguy/pi-cluster", "_star_group": "hw_iot"}, {"id": "star_RecapAI_Recap", "label": "Recap", "full_name": "RecapAI/Recap", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 18.670837537463463, "font": {"size": 0}, "title": "RecapAI/Recap\n696\u2605 \u00b7 Swift\nOpen Source, Privacy-First, macOS-Native AI Meeting Summary ", "url": "https://github.com/RecapAI/Recap", "_star_group": "mac"}, {"id": "star_SharKingStudios_Fracture", "label": "Fracture", "full_name": "SharKingStudios/Fracture", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 12.064904772878688, "font": {"size": 0}, "title": "SharKingStudios/Fracture\n9\u2605 \u00b7 C++\nAn infinitely expandable, velocity sensing split midi keyboard.", "url": "https://github.com/SharKingStudios/Fracture", "_star_group": "mac"}, {"id": "star_final-run_finalrun-agent", "label": "finalrun-agent", "full_name": "final-run/finalrun-agent", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 15.381439595475758, "font": {"size": 0}, "title": "final-run/finalrun-agent\n164\u2605 \u00b7 TypeScript\nAI QA Agent for mobile apps", "url": "https://github.com/final-run/finalrun-agent", "_star_group": "multi_agent"}, {"id": "star_JustGoscha_ray-tracing-audio", "label": "ray-tracing-audio", "full_name": "JustGoscha/ray-tracing-audio", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.03802497161793, "font": {"size": 0}, "title": "JustGoscha/ray-tracing-audio\n29\u2605 \u00b7 JavaScript\nAn experimental sound engine for the web", "url": "https://github.com/JustGoscha/ray-tracing-audio", "_star_group": "misc"}, {"id": "star_tw93_Waza", "label": "Waza", "full_name": "tw93/Waza", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 24.041135606592228, "font": {"size": 0}, "title": "tw93/Waza\n2999\u2605 \u00b7 Shell\n\ud83e\udd77 Engineering habits you already know, turned into skills Claude can run.", "url": "https://github.com/tw93/Waza", "_star_group": "misc"}, {"id": "star_safishamsi_graphify", "label": "graphify", "full_name": "safishamsi/graphify", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "safishamsi/graphify\n24924\u2605 \u00b7 Python\nAI coding assistant skill (Claude Code, Codex, OpenCode, Cursor, Gemini CLI, GitHub Copilot CLI, OpenClaw, Factory Droid, Trae, Google Antigravity). Turn any folder of code, docs, ", "url": "https://github.com/safishamsi/graphify", "_star_group": "ai_code"}, {"id": "star_onmyway133_ccview", "label": "ccview", "full_name": "onmyway133/ccview", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 12.38903356671156, "font": {"size": 0}, "title": "onmyway133/ccview\n14\u2605 \u00b7 TypeScript\n\u26f4\ufe0f View installed agents, skills, commands from Claude Code", "url": "https://github.com/onmyway133/ccview", "_star_group": "ai_code"}, {"id": "star_Kuberwastaken_claurst", "label": "claurst", "full_name": "Kuberwastaken/claurst", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "Kuberwastaken/claurst\n8996\u2605 \u00b7 Rust\nYour favorite Terminal Coding Agent, now in Rust", "url": "https://github.com/Kuberwastaken/claurst", "_star_group": "misc"}, {"id": "star_cporter202_agentic-ai-apis", "label": "agentic-ai-apis", "full_name": "cporter202/agentic-ai-apis", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 16.38998733054177, "font": {"size": 0}, "title": "cporter202/agentic-ai-apis\n276\u2605 \u00b7 JavaScript\nThe ultimate collection of APIs for building autonomous AI agents \u2014 2,036 production-ready APIs across Agents, AI Models, and MCP Servers. Stop wasting weeks building infrastructur", "url": "https://github.com/cporter202/agentic-ai-apis", "_star_group": "mcp_ext"}, {"id": "star_whoami-wiki_whoami", "label": "whoami", "full_name": "whoami-wiki/whoami", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 17.3854411824333, "font": {"size": 0}, "title": "whoami-wiki/whoami\n428\u2605 \u00b7 TypeScript\nyour personal encyclopedia, written by agents", "url": "https://github.com/whoami-wiki/whoami", "_star_group": "misc"}, {"id": "star_danneauxs_Pocket-TTS-Spokenword", "label": "Pocket-TTS-Spokenword", "full_name": "danneauxs/Pocket-TTS-Spokenword", "color": {"background": "#7293CB", "border": "#7293CB"}, "size": 13.321456636727284, "font": {"size": 0}, "title": "danneauxs/Pocket-TTS-Spokenword\n38\u2605 \u00b7 Python\nAn enhanced version of Kyutai's Pocket TTS that transforms plain text into emotionally expressive audiobooks", "url": "https://github.com/danneauxs/Pocket-TTS-Spokenword", "_star_group": "voice"}, {"id": "star_chainfeeds_RSSAggregatorforWeb3", "label": "RSSAggregatorforWeb3", "full_name": "chainfeeds/RSSAggregatorforWeb3", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 22.344505357792436, "font": {"size": 0}, "title": "chainfeeds/RSSAggregatorforWeb3\n2030\u2605 \u00b7 Python\nBootstrapping your personal Web3 info hub from more than 600 RSS Feeds.", "url": "https://github.com/chainfeeds/RSSAggregatorforWeb3", "_star_group": "misc"}, {"id": "star_keplergl_kepler_gl", "label": "kepler.gl", "full_name": "keplergl/kepler.gl", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "keplergl/kepler.gl\n11752\u2605 \u00b7 TypeScript\nKepler.gl is a powerful open source geospatial analysis tool for large-scale data sets.", "url": "https://github.com/keplergl/kepler.gl", "_star_group": "misc"}, {"id": "star_vuer-ai_vuer", "label": "vuer", "full_name": "vuer-ai/vuer", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 17.057711709380882, "font": {"size": 0}, "title": "vuer-ai/vuer\n373\u2605 \u00b7 Python\nVuer is a 3D visualization tool for robotics and VR applications.", "url": "https://github.com/vuer-ai/vuer", "_star_group": "misc"}, {"id": "star_nesquena_hermes-webui", "label": "hermes-webui", "full_name": "nesquena/hermes-webui", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 21.707720550303016, "font": {"size": 0}, "title": "nesquena/hermes-webui\n1729\u2605 \u00b7 Python\nHermes WebUI: The best way to use Hermes Agent from the web or from your phone!", "url": "https://github.com/nesquena/hermes-webui", "_star_group": "misc"}, {"id": "star_GarethManning_claude-education-skills", "label": "claude-education-skills", "full_name": "GarethManning/claude-education-skills", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 15.213765195147111, "font": {"size": 0}, "title": "GarethManning/claude-education-skills\n149\u2605 \u00b7 TypeScript\nAn open-source library of evidence-based Claude skills for educators \u2014 designed for teacher use and agent orchestration.", "url": "https://github.com/GarethManning/claude-education-skills", "_star_group": "multi_agent"}, {"id": "star_hoodini_whatsapp-public-logan", "label": "whatsapp-public-logan", "full_name": "hoodini/whatsapp-public-logan", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.005019960483919, "font": {"size": 0}, "title": "hoodini/whatsapp-public-logan\n67\u2605 \u00b7 TypeScript\nOpen-source WhatsApp bot with AI capabilities - Logan by YUV.AI", "url": "https://github.com/hoodini/whatsapp-public-logan", "_star_group": "misc"}, {"id": "star_standardebooks_web", "label": "web", "full_name": "standardebooks/web", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.443020656714825, "font": {"size": 0}, "title": "standardebooks/web\n283\u2605 \u00b7 PHP\nThe source code for the Standard Ebooks website.", "url": "https://github.com/standardebooks/web", "_star_group": "misc"}, {"id": "star_EbookFoundation_free-programming-books", "label": "free-programming-books", "full_name": "EbookFoundation/free-programming-books", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "EbookFoundation/free-programming-books\n385464\u2605 \u00b7 Python\n:books: Freely available programming books", "url": "https://github.com/EbookFoundation/free-programming-books", "_star_group": "mac"}, {"id": "star_dbooksorg_Free-Books", "label": "Free-Books", "full_name": "dbooksorg/Free-Books", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.119993623141175, "font": {"size": 0}, "title": "dbooksorg/Free-Books\n73\u2605 \u00b7 \u2014\nOpen Books Library - https://www.dbooks.org/", "url": "https://github.com/dbooksorg/Free-Books", "_star_group": "misc"}, {"id": "star_michael-elkabetz_bgagents", "label": "bgagents", "full_name": "michael-elkabetz/bgagents", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 13.43298784568398, "font": {"size": 0}, "title": "michael-elkabetz/bgagents\n42\u2605 \u00b7 TypeScript\nThe first open-source project that turns the most powerful code agents, such as ANTHROPIC ClaudeCode and OpenAI Codex into Background Agents, accessible via REST API, a user interf", "url": "https://github.com/michael-elkabetz/bgagents", "_star_group": "mcp_ext"}, {"id": "star_PredicateSystems_account-payable-multi-ai-agent-demo", "label": "account-payable-multi-ai-agent-demo", "full_name": "PredicateSystems/account-payable-multi-ai-agent-demo", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 11.986184990874072, "font": {"size": 0}, "title": "PredicateSystems/account-payable-multi-ai-agent-demo\n8\u2605 \u00b7 Python\nA real-world use case demo for multi-AI-agent with authorization and deterministic verification to secure money flows", "url": "https://github.com/PredicateSystems/account-payable-multi-ai-agent-demo", "_star_group": "misc"}, {"id": "star_msitarzewski_AGENT-ZERO", "label": "AGENT-ZERO", "full_name": "msitarzewski/AGENT-ZERO", "color": {"background": "#E6AB02", "border": "#E6AB02"}, "size": 15.518628734412705, "font": {"size": 0}, "title": "msitarzewski/AGENT-ZERO\n177\u2605 \u00b7 \u2014\nOperational framework and patterns for high-quality, AI-assisted software development. This repository provides a single canonical guide for AGENTS.md and a lightweight workflow fo", "url": "https://github.com/msitarzewski/AGENT-ZERO", "_star_group": "auto_agents"}, {"id": "star_wbnns_crypto-ecosystems", "label": "crypto-ecosystems", "full_name": "wbnns/crypto-ecosystems", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 11.900563363234188, "font": {"size": 0}, "title": "wbnns/crypto-ecosystems\n7\u2605 \u00b7 Rust\nA taxonomy for open source cryptocurrency, blockchain, and decentralized ecosystems", "url": "https://github.com/wbnns/crypto-ecosystems", "_star_group": "ai_code"}, {"id": "star_aiming-lab_MetaClaw", "label": "MetaClaw", "full_name": "aiming-lab/MetaClaw", "color": {"background": "#B6992D", "border": "#B6992D"}, "size": 24.61920034162305, "font": {"size": 0}, "title": "aiming-lab/MetaClaw\n3389\u2605 \u00b7 Python\n\ud83e\udd9e Just talk to your agent \u2014 it learns and EVOLVES \ud83e\uddec.", "url": "https://github.com/aiming-lab/MetaClaw", "_star_group": "spellbook"}, {"id": "star_0xble_notion-cli", "label": "notion-cli", "full_name": "0xble/notion-cli", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 11.0, "font": {"size": 0}, "title": "0xble/notion-cli\n1\u2605 \u00b7 Go\nCLI for Notion using the Model Context Protocol (MCP)", "url": "https://github.com/0xble/notion-cli", "_star_group": "dev_cli"}, {"id": "star_0xble_sentry-cli", "label": "sentry-cli", "full_name": "0xble/sentry-cli", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 11.0, "font": {"size": 0}, "title": "0xble/sentry-cli\n1\u2605 \u00b7 Rust\nA command line utility to work with Sentry.", "url": "https://github.com/0xble/sentry-cli", "_star_group": "dev_cli"}, {"id": "star_steipete_spogo", "label": "spogo", "full_name": "steipete/spogo", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 15.518628734412705, "font": {"size": 0}, "title": "steipete/spogo\n177\u2605 \u00b7 Go\n\ud83c\udfa7 Spotify, but make it terminal. Power CLI using web cookies.", "url": "https://github.com/steipete/spogo", "_star_group": "dev_cli"}, {"id": "star_steipete_goplaces", "label": "goplaces", "full_name": "steipete/goplaces", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 15.7926698142101, "font": {"size": 0}, "title": "steipete/goplaces\n205\u2605 \u00b7 Go\nModern Google Places CLI in Go", "url": "https://github.com/steipete/goplaces", "_star_group": "dev_cli"}, {"id": "star_steipete_sonoscli", "label": "sonoscli", "full_name": "steipete/sonoscli", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 14.78663472729906, "font": {"size": 0}, "title": "steipete/sonoscli\n115\u2605 \u00b7 Go\nControl SONOS speakers from your terminal.", "url": "https://github.com/steipete/sonoscli", "_star_group": "dev_cli"}, {"id": "star_steipete_sag", "label": "sag", "full_name": "steipete/sag", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 16.10196496490851, "font": {"size": 0}, "title": "steipete/sag\n240\u2605 \u00b7 Go\nLike the macOS say command, but with a modern voice.", "url": "https://github.com/steipete/sag", "_star_group": "mac"}, {"id": "star_steipete_discrawl", "label": "discrawl", "full_name": "steipete/discrawl", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 18.341764293539576, "font": {"size": 0}, "title": "steipete/discrawl\n619\u2605 \u00b7 Go\ncli for discord with sqlite backend", "url": "https://github.com/steipete/discrawl", "_star_group": "dev_cli"}, {"id": "star_steipete_RepoBar", "label": "RepoBar", "full_name": "steipete/RepoBar", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 20.280412041486688, "font": {"size": 0}, "title": "steipete/RepoBar\n1166\u2605 \u00b7 Swift\nShow status of GitHub Repos right in your menu bar and terminal: CI, Issues, Pull Requests, Latest Release.", "url": "https://github.com/steipete/RepoBar", "_star_group": "mac"}, {"id": "star_steipete_gogcli", "label": "gogcli", "full_name": "steipete/gogcli", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 28, "font": {"size": 0}, "title": "steipete/gogcli\n6823\u2605 \u00b7 Go\nGoogle Suite CLI: Gmail, GCal, GDrive, GContacts.", "url": "https://github.com/steipete/gogcli", "_star_group": "dev_cli"}, {"id": "star_amantus-ai_vibetunnel", "label": "vibetunnel", "full_name": "amantus-ai/vibetunnel", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 25.93214404422835, "font": {"size": 0}, "title": "amantus-ai/vibetunnel\n4398\u2605 \u00b7 TypeScript\nTurn any browser into your terminal & command your agents on the go.", "url": "https://github.com/amantus-ai/vibetunnel", "_star_group": "misc"}, {"id": "star_steipete_Matcha", "label": "Matcha", "full_name": "steipete/Matcha", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 13.840441586563236, "font": {"size": 0}, "title": "steipete/Matcha\n59\u2605 \u00b7 Swift\nMatcha \u2013 brew beautiful TUIs at Swift speed.", "url": "https://github.com/steipete/Matcha", "_star_group": "mac"}, {"id": "star_steipete_ordercli", "label": "ordercli", "full_name": "steipete/ordercli", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 13.903815261289878, "font": {"size": 0}, "title": "steipete/ordercli\n62\u2605 \u00b7 Go\nCLI for Foodora and Deliveroo", "url": "https://github.com/steipete/ordercli", "_star_group": "dev_cli"}, {"id": "star_steipete_CodeLooper", "label": "CodeLooper", "full_name": "steipete/CodeLooper", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 15.059036814391442, "font": {"size": 0}, "title": "steipete/CodeLooper\n136\u2605 \u00b7 Swift\nIt's all about the loop, baby.", "url": "https://github.com/steipete/CodeLooper", "_star_group": "mac"}, {"id": "star_steipete_sweetlink", "label": "sweetlink", "full_name": "steipete/sweetlink", "color": {"background": "#76B7B2", "border": "#76B7B2"}, "size": 14.840948887874754, "font": {"size": 0}, "title": "steipete/sweetlink\n119\u2605 \u00b7 TypeScript\nConnect your agent to your web app. Like playwright, but works in your current tab. Close the loop.", "url": "https://github.com/steipete/sweetlink", "_star_group": "browser_auto"}, {"id": "star_steipete_gifgrep", "label": "gifgrep", "full_name": "steipete/gifgrep", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 14.772858959678167, "font": {"size": 0}, "title": "steipete/gifgrep\n114\u2605 \u00b7 Go\nGrep the GIF. Stick the landing.", "url": "https://github.com/steipete/gifgrep", "_star_group": "dev_cli"}, {"id": "star_steipete_ElevenLabsKit", "label": "ElevenLabsKit", "full_name": "steipete/ElevenLabsKit", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 14.47849601062558, "font": {"size": 0}, "title": "steipete/ElevenLabsKit\n94\u2605 \u00b7 Swift\nSwift SDK to stream ElevenLabs Voices", "url": "https://github.com/steipete/ElevenLabsKit", "_star_group": "mac"}, {"id": "star_steipete_AXorcist", "label": "AXorcist", "full_name": "steipete/AXorcist", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 15.911404024025982, "font": {"size": 0}, "title": "steipete/AXorcist\n218\u2605 \u00b7 Swift\nAXorcist \u2022 Swift wrapper for macOS Accessibility\u2014chainable, fuzzy-matched queries that read, click, and inspect any UI. The power of Swift compels your UI to obey! ", "url": "https://github.com/steipete/AXorcist", "_star_group": "mac"}, {"id": "star_steipete_VibeMeter", "label": "VibeMeter", "full_name": "steipete/VibeMeter", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 17.08879298778738, "font": {"size": 0}, "title": "steipete/VibeMeter\n378\u2605 \u00b7 Swift\nA project to measure costs for Cursor and other AI provider.", "url": "https://github.com/steipete/VibeMeter", "_star_group": "mac"}, {"id": "star_steipete_wacli", "label": "wacli", "full_name": "steipete/wacli", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 19.517361408234578, "font": {"size": 0}, "title": "steipete/wacli\n923\u2605 \u00b7 Go\nWhatsApp CLI", "url": "https://github.com/steipete/wacli", "_star_group": "dev_cli"}, {"id": "star_steipete_oracle", "label": "oracle", "full_name": "steipete/oracle", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 22.073626831652355, "font": {"size": 0}, "title": "steipete/oracle\n1898\u2605 \u00b7 TypeScript\nAsk the oracle when you're stuck. Invoke GPT-5 Pro with a custom context and files.", "url": "https://github.com/steipete/oracle", "_star_group": "llm_api"}, {"id": "star_steipete_Aspects", "label": "Aspects", "full_name": "steipete/Aspects", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "steipete/Aspects\n8429\u2605 \u00b7 Objective-C\nDelightful, simple library for aspect oriented programming in Objective-C and Swift.", "url": "https://github.com/steipete/Aspects", "_star_group": "mac"}, {"id": "star_steipete_agent-rules", "label": "agent-rules", "full_name": "steipete/agent-rules", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 27.326373957619992, "font": {"size": 0}, "title": "steipete/agent-rules\n5671\u2605 \u00b7 Shell\nRules and Knowledge to work better with agents such as Claude Code or Cursor", "url": "https://github.com/steipete/agent-rules", "_star_group": "ai_code"}, {"id": "star_steipete_mcporter", "label": "mcporter", "full_name": "steipete/mcporter", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 25.382329125964187, "font": {"size": 0}, "title": "steipete/mcporter\n3954\u2605 \u00b7 TypeScript\nCall MCPs via TypeScript, masquerading as simple TypeScript API. Or package them as cli.", "url": "https://github.com/steipete/mcporter", "_star_group": "mcp_ext"}, {"id": "star_steipete_birdclaw", "label": "birdclaw", "full_name": "steipete/birdclaw", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.348752950884705, "font": {"size": 0}, "title": "steipete/birdclaw\n161\u2605 \u00b7 TypeScript\nStores all your tweets nicely claw-able for agents.", "url": "https://github.com/steipete/birdclaw", "_star_group": "misc"}, {"id": "star_steipete_summarize", "label": "summarize", "full_name": "steipete/summarize", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 27.229029224510604, "font": {"size": 0}, "title": "steipete/summarize\n5575\u2605 \u00b7 TypeScript\nPoint at any URL/YouTube/Podcast or file. Get the gist. CLI and Chrome Extension.", "url": "https://github.com/steipete/summarize", "_star_group": "dev_cli"}, {"id": "star_steipete_CodexBar", "label": "CodexBar", "full_name": "steipete/CodexBar", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "steipete/CodexBar\n10609\u2605 \u00b7 Swift\nShow usage stats for OpenAI Codex and Claude Code, without having to login.", "url": "https://github.com/steipete/CodexBar", "_star_group": "ai_code"}, {"id": "star_steipete_Peekaboo", "label": "Peekaboo", "full_name": "steipete/Peekaboo", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 24.215073507984503, "font": {"size": 0}, "title": "steipete/Peekaboo\n3113\u2605 \u00b7 Swift\nPeekaboo is a macOS CLI & optional MCP server that enables AI agents to capture screenshots of applications, or the entire system, with optional visual question answering through l", "url": "https://github.com/steipete/Peekaboo", "_star_group": "mcp_ext"}, {"id": "star_cloudflare_moltworker", "label": "moltworker", "full_name": "cloudflare/moltworker", "color": {"background": "#B6992D", "border": "#B6992D"}, "size": 28, "font": {"size": 0}, "title": "cloudflare/moltworker\n9826\u2605 \u00b7 TypeScript\nRun OpenClaw, (formerly Moltbot, formerly Clawdbot) on Cloudflare Workers", "url": "https://github.com/cloudflare/moltworker", "_star_group": "spellbook"}, {"id": "star_getsentry_warden", "label": "warden", "full_name": "getsentry/warden", "color": {"background": "#D55E00", "border": "#D55E00"}, "size": 15.083468052177679, "font": {"size": 0}, "title": "getsentry/warden\n138\u2605 \u00b7 TypeScript\nYour code is under new management. Agents that review your code.", "url": "https://github.com/getsentry/warden", "_star_group": "observability"}, {"id": "star_cloudflare_kumo", "label": "kumo", "full_name": "cloudflare/kumo", "color": {"background": "#66A61E", "border": "#66A61E"}, "size": 19.778817658678108, "font": {"size": 0}, "title": "cloudflare/kumo\n1002\u2605 \u00b7 TypeScript\nCloudflare's component library for building modern web applications.", "url": "https://github.com/cloudflare/kumo", "_star_group": "ui_design"}, {"id": "star_vercel-labs_portless", "label": "portless", "full_name": "vercel-labs/portless", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "vercel-labs/portless\n6849\u2605 \u00b7 TypeScript\nReplace port numbers with stable, named local URLs. For humans and agents.", "url": "https://github.com/vercel-labs/portless", "_star_group": "misc"}, {"id": "star_lochie_web-haptics", "label": "web-haptics", "full_name": "lochie/web-haptics", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 23.08332954216659, "font": {"size": 0}, "title": "lochie/web-haptics\n2421\u2605 \u00b7 TypeScript\nHaptic feedback for the mobile web", "url": "https://github.com/lochie/web-haptics", "_star_group": "misc"}, {"id": "star_googleworkspace_cli", "label": "cli", "full_name": "googleworkspace/cli", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 28, "font": {"size": 0}, "title": "googleworkspace/cli\n24576\u2605 \u00b7 Rust\nGoogle Workspace CLI \u2014 one command-line tool for Drive, Gmail, Calendar, Sheets, Docs, Chat, Admin, and more. Dynamically built from Google Discovery Service. Includes AI agent ski", "url": "https://github.com/googleworkspace/cli", "_star_group": "dev_cli"}, {"id": "star_BloopAI_vibe-kanban", "label": "vibe-kanban", "full_name": "BloopAI/vibe-kanban", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "BloopAI/vibe-kanban\n24965\u2605 \u00b7 Rust\nGet 10X more out of Claude Code, Codex or any coding agent", "url": "https://github.com/BloopAI/vibe-kanban", "_star_group": "ai_code"}, {"id": "star_millionco_expect", "label": "expect", "full_name": "millionco/expect", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 24.530395126984175, "font": {"size": 0}, "title": "millionco/expect\n3327\u2605 \u00b7 TypeScript\nExpect tests your agent's code in a real browser", "url": "https://github.com/millionco/expect", "_star_group": "misc"}, {"id": "star_slavingia_skills", "label": "skills", "full_name": "slavingia/skills", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "slavingia/skills\n7813\u2605 \u00b7 \u2014\nClaude Code skills based on The Minimalist Entrepreneur by Sahil Lavingia", "url": "https://github.com/slavingia/skills", "_star_group": "ai_code"}, {"id": "star_Arthur-Ficial_apfel", "label": "apfel", "full_name": "Arthur-Ficial/apfel", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 25.994063046764044, "font": {"size": 0}, "title": "Arthur-Ficial/apfel\n4450\u2605 \u00b7 Swift\nThe free AI already on your Mac. CLI tool, OpenAI-compatible server, and interactive chat \u2014 all on-device via Apple Intelligence. No API keys, no cloud, no downloads.", "url": "https://github.com/Arthur-Ficial/apfel", "_star_group": "mac"}, {"id": "star_VoltAgent_awesome-design-md", "label": "awesome-design-md", "full_name": "VoltAgent/awesome-design-md", "color": {"background": "#66A61E", "border": "#66A61E"}, "size": 28, "font": {"size": 0}, "title": "VoltAgent/awesome-design-md\n48008\u2605 \u00b7 \u2014\nA collection of DESIGN.md files inspired by popular brand design systems. Drop one into your project and let coding agents generate a matching UI.", "url": "https://github.com/VoltAgent/awesome-design-md", "_star_group": "ui_design"}, {"id": "star_addyosmani_agent-skills", "label": "agent-skills", "full_name": "addyosmani/agent-skills", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "addyosmani/agent-skills\n14693\u2605 \u00b7 Shell\nProduction-grade engineering skills for AI coding agents.", "url": "https://github.com/addyosmani/agent-skills", "_star_group": "ai_agent_fw"}, {"id": "star_louislam_uptime-kuma", "label": "uptime-kuma", "full_name": "louislam/uptime-kuma", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "louislam/uptime-kuma\n85198\u2605 \u00b7 JavaScript\nA fancy self-hosted monitoring tool", "url": "https://github.com/louislam/uptime-kuma", "_star_group": "misc"}, {"id": "star_Roblox_FlashTex", "label": "FlashTex", "full_name": "Roblox/FlashTex", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.413728044856574, "font": {"size": 0}, "title": "Roblox/FlashTex\n167\u2605 \u00b7 Python\nFlashTex: Fast Relightable Mesh Texturing with LightControlNet", "url": "https://github.com/Roblox/FlashTex", "_star_group": "misc"}, {"id": "star_lllyasviel_PaintingLight", "label": "PaintingLight", "full_name": "lllyasviel/PaintingLight", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 18.844080046678446, "font": {"size": 0}, "title": "lllyasviel/PaintingLight\n739\u2605 \u00b7 Python\nGenerating Digital Painting Lighting Effects via RGB-space Geometry (SIGGRAPH2020/TOG2020)", "url": "https://github.com/lllyasviel/PaintingLight", "_star_group": "misc"}, {"id": "star_lllyasviel_DanbooRegion", "label": "DanbooRegion", "full_name": "lllyasviel/DanbooRegion", "color": {"background": "#D37295", "border": "#D37295"}, "size": 17.228324532061823, "font": {"size": 0}, "title": "lllyasviel/DanbooRegion\n401\u2605 \u00b7 Python\nDanbooRegion: An Illustration Region Dataset (ECCV 2020)", "url": "https://github.com/lllyasviel/DanbooRegion", "_star_group": "data_ds"}, {"id": "star_lllyasviel_style2paints", "label": "style2paints", "full_name": "lllyasviel/style2paints", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "lllyasviel/style2paints\n18193\u2605 \u00b7 JavaScript\nsketch + style = paints :art: (TOG2018/SIGGRAPH2018ASIA)", "url": "https://github.com/lllyasviel/style2paints", "_star_group": "misc"}, {"id": "star_lllyasviel_Omost", "label": "Omost", "full_name": "lllyasviel/Omost", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "lllyasviel/Omost\n7637\u2605 \u00b7 Python\nYour image is almost there!", "url": "https://github.com/lllyasviel/Omost", "_star_group": "misc"}, {"id": "star_lllyasviel_Paints-UNDO", "label": "Paints-UNDO", "full_name": "lllyasviel/Paints-UNDO", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 25.51594698159454, "font": {"size": 0}, "title": "lllyasviel/Paints-UNDO\n4059\u2605 \u00b7 Python\nUnderstand Human Behavior to Align True Needs", "url": "https://github.com/lllyasviel/Paints-UNDO", "_star_group": "misc"}, {"id": "star_lllyasviel_VCC-experiments", "label": "VCC-experiments", "full_name": "lllyasviel/VCC-experiments", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 12.38903356671156, "font": {"size": 0}, "title": "lllyasviel/VCC-experiments\n14\u2605 \u00b7 Python\nExperiments in VCC paper", "url": "https://github.com/lllyasviel/VCC-experiments", "_star_group": "misc"}, {"id": "star_lllyasviel_VCC", "label": "VCC", "full_name": "lllyasviel/VCC", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.38233783611583, "font": {"size": 0}, "title": "lllyasviel/VCC\n275\u2605 \u00b7 Python\nCompile agent conversations!", "url": "https://github.com/lllyasviel/VCC", "_star_group": "misc"}, {"id": "star_imneckro_emulatorjs", "label": "emulatorjs", "full_name": "imneckro/emulatorjs", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 11.25701337452183, "font": {"size": 0}, "title": "imneckro/emulatorjs\n2\u2605 \u00b7 \u2014\nThe original decompilation of emulatorjs. Retroarch in your browser!", "url": "https://github.com/imneckro/emulatorjs", "_star_group": "misc"}, {"id": "star_levelsio_xdr-boost", "label": "xdr-boost", "full_name": "levelsio/xdr-boost", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 15.236756646723949, "font": {"size": 0}, "title": "levelsio/xdr-boost\n151\u2605 \u00b7 Swift\nXDR Boost is an open source alternative to Vivid without the bug that stops it working when you close your MacBook Pro and open it again", "url": "https://github.com/levelsio/xdr-boost", "_star_group": "mac"}, {"id": "star_vinta_awesome-python", "label": "awesome-python", "full_name": "vinta/awesome-python", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "vinta/awesome-python\n292111\u2605 \u00b7 Python\nAn opinionated list of Python frameworks, libraries, tools, and resources", "url": "https://github.com/vinta/awesome-python", "_star_group": "misc"}, {"id": "star_levelsio_awesome-remote-job", "label": "awesome-remote-job", "full_name": "levelsio/awesome-remote-job", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 17.28146343065097, "font": {"size": 0}, "title": "levelsio/awesome-remote-job\n410\u2605 \u00b7 \u2014\nA curated list of awesome remote jobs and resources. Inspired by https://github.com/vinta/awesome-python", "url": "https://github.com/levelsio/awesome-remote-job", "_star_group": "misc"}, {"id": "star_MichaelSebsbe_FlyPieter", "label": "FlyPieter", "full_name": "MichaelSebsbe/FlyPieter", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 12.137962089502231, "font": {"size": 0}, "title": "MichaelSebsbe/FlyPieter\n10\u2605 \u00b7 Swift\nA WKWebview Wrapper for @levelsio's flight simulator", "url": "https://github.com/MichaelSebsbe/FlyPieter", "_star_group": "mac"}, {"id": "star_everettjf_liney", "label": "liney", "full_name": "everettjf/liney", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 14.659624665720777, "font": {"size": 0}, "title": "everettjf/liney\n106\u2605 \u00b7 Swift\nLiney is a native macOS terminal workspace built with AppKit, SwiftUI, and Ghostty, designed for multi-repo workflows, worktree switching, and focused vibe coding.", "url": "https://github.com/everettjf/liney", "_star_group": "mac"}, {"id": "star_Vector-Wangel_XLeRobot", "label": "XLeRobot", "full_name": "Vector-Wangel/XLeRobot", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 26.60244280448821, "font": {"size": 0}, "title": "Vector-Wangel/XLeRobot\n4983\u2605 \u00b7 Python\nXLeRobot: Practical Dual-Arm Mobile Home Robot for $660", "url": "https://github.com/Vector-Wangel/XLeRobot", "_star_group": "misc"}, {"id": "star_SteamClientHomebrew_Installer", "label": "Installer", "full_name": "SteamClientHomebrew/Installer", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.861801195254287, "font": {"size": 0}, "title": "SteamClientHomebrew/Installer\n60\u2605 \u00b7 C++\nA simple standalone program which automates the installation, removal and maintenance of Millennium. ", "url": "https://github.com/SteamClientHomebrew/Installer", "_star_group": "misc"}, {"id": "star_sandroandric_AgentHandover", "label": "AgentHandover", "full_name": "sandroandric/AgentHandover", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 18.25184100339112, "font": {"size": 0}, "title": "sandroandric/AgentHandover\n599\u2605 \u00b7 Python\nWhat if OpenClaw, Claude Code, Codex etc. knew how to do your work without you saying it? AgentHandover observes you, learns and teaches your agents with self-improving skills.", "url": "https://github.com/sandroandric/AgentHandover", "_star_group": "ai_code"}, {"id": "star_NVIDIA_DreamDojo", "label": "DreamDojo", "full_name": "NVIDIA/DreamDojo", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 18.796428066819466, "font": {"size": 0}, "title": "NVIDIA/DreamDojo\n727\u2605 \u00b7 Python\nOfficial Codebase for "DreamDojo: A Generalist Robot World Model from Large-Scale Human Videos"", "url": "https://github.com/NVIDIA/DreamDojo", "_star_group": "misc"}, {"id": "star_Accoil_product-tracking-skills", "label": "product-tracking-skills", "full_name": "Accoil/product-tracking-skills", "color": {"background": "#D95F02", "border": "#D95F02"}, "size": 12.89281195015483, "font": {"size": 0}, "title": "Accoil/product-tracking-skills\n25\u2605 \u00b7 \u2014\nAI skills that scan your codebase, design a tracking plan, and generate instrumentation code for product analytics. Supports Segment, Amplitude, Mixpanel, PostHog, Accoil, and 20 o", "url": "https://github.com/Accoil/product-tracking-skills", "_star_group": "rl"}, {"id": "star_WICG_html-in-canvas", "label": "html-in-canvas", "full_name": "WICG/html-in-canvas", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 22.73140467320592, "font": {"size": 0}, "title": "WICG/html-in-canvas\n2229\u2605 \u00b7 \u2014\n", "url": "https://github.com/WICG/html-in-canvas", "_star_group": "misc"}, {"id": "star_atilaahmettaner_tradingview-mcp", "label": "tradingview-mcp", "full_name": "atilaahmettaner/tradingview-mcp", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 21.842448376283137, "font": {"size": 0}, "title": "atilaahmettaner/tradingview-mcp\n1790\u2605 \u00b7 Python\nReal-time crypto & stock screening, advanced technical indicators, Bollinger Bands intelligence, candlestick patterns + native Claude Desktop integration. Multi-exchange (Binance, ", "url": "https://github.com/atilaahmettaner/tradingview-mcp", "_star_group": "mcp_ext"}, {"id": "star_Anil-matcha_Open-Generative-AI", "label": "Open-Generative-AI", "full_name": "Anil-matcha/Open-Generative-AI", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 26.235851054988707, "font": {"size": 0}, "title": "Anil-matcha/Open-Generative-AI\n4657\u2605 \u00b7 JavaScript\nOpen-source alternative to Higgsfield AI, Freepik, Krea, Openart AI \u2014 Free AI image generation & cinema studio with 20+ models (Flux, SDXL, Midjourney, Ideogram). Self-hosted, cust", "url": "https://github.com/Anil-matcha/Open-Generative-AI", "_star_group": "misc"}, {"id": "star_jpcima_ADLplug", "label": "ADLplug", "full_name": "jpcima/ADLplug", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 17.860530899201635, "font": {"size": 0}, "title": "jpcima/ADLplug\n517\u2605 \u00b7 C++\nFM Chip Synthesizer \u2014 OPL & OPN \u2014 VST/LV2/Standalone", "url": "https://github.com/jpcima/ADLplug", "_star_group": "misc"}, {"id": "star_qodo-ai_qodo-skills", "label": "qodo-skills", "full_name": "qodo-ai/qodo-skills", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 12.89281195015483, "font": {"size": 0}, "title": "qodo-ai/qodo-skills\n25\u2605 \u00b7 \u2014\n", "url": "https://github.com/qodo-ai/qodo-skills", "_star_group": "misc"}, {"id": "star_HKUDS_CatchMe", "label": "CatchMe", "full_name": "HKUDS/CatchMe", "color": {"background": "#B6992D", "border": "#B6992D"}, "size": 16.66786477740625, "font": {"size": 0}, "title": "HKUDS/CatchMe\n314\u2605 \u00b7 Python\n"CatchMe: Make Your AI Agents Truly Personal"", "url": "https://github.com/HKUDS/CatchMe", "_star_group": "spellbook"}, {"id": "star_RobotBase_Q1-nano", "label": "Q1-nano", "full_name": "RobotBase/Q1-nano", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 12.547112599096362, "font": {"size": 0}, "title": "RobotBase/Q1-nano\n17\u2605 \u00b7 \u2014\n", "url": "https://github.com/RobotBase/Q1-nano", "_star_group": "misc"}, {"id": "star_utahmobl_opencap-monocular", "label": "opencap-monocular", "full_name": "utahmobl/opencap-monocular", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.854335752179022, "font": {"size": 0}, "title": "utahmobl/opencap-monocular\n120\u2605 \u00b7 Python\nOpenCap Monocular: 3D Human Kinematics and Dynamics From a Single Smartphone Video", "url": "https://github.com/utahmobl/opencap-monocular", "_star_group": "misc"}, {"id": "star_onllm-dev_4DPocket", "label": "4DPocket", "full_name": "onllm-dev/4DPocket", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.459748983023843, "font": {"size": 0}, "title": "onllm-dev/4DPocket\n43\u2605 \u00b7 Python\nSelf-hosted AI-powered personal knowledge base. Save content from 17+ platforms, auto-tag, summarize, and connect with semantic search.", "url": "https://github.com/onllm-dev/4DPocket", "_star_group": "misc"}, {"id": "star_eudk_awesome-ai-tools", "label": "awesome-ai-tools", "full_name": "eudk/awesome-ai-tools", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 16.336044990552804, "font": {"size": 0}, "title": "eudk/awesome-ai-tools\n269\u2605 \u00b7 \u2014\n\ud83d\udd34 VERY LARGE AI TOOL LIST! \ud83d\udd34 Curated list of AI Tools - Updated 2026", "url": "https://github.com/eudk/awesome-ai-tools", "_star_group": "ai_code"}, {"id": "star_AnjieCheng_CanonicalVAE", "label": "CanonicalVAE", "full_name": "AnjieCheng/CanonicalVAE", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.660143882499947, "font": {"size": 0}, "title": "AnjieCheng/CanonicalVAE\n51\u2605 \u00b7 Python\n[ECCV'22] This repository is the implementation of "Autoregressive 3D Shape Generation via Canonical Mapping".", "url": "https://github.com/AnjieCheng/CanonicalVAE", "_star_group": "misc"}, {"id": "star_ranaroussi_yfinance", "label": "yfinance", "full_name": "ranaroussi/yfinance", "color": {"background": "#D37295", "border": "#D37295"}, "size": 28, "font": {"size": 0}, "title": "ranaroussi/yfinance\n22918\u2605 \u00b7 Python\nDownload market data from Yahoo! Finance's API", "url": "https://github.com/ranaroussi/yfinance", "_star_group": "data_ds"}, {"id": "star_christian-byrne_audio-separation-nodes-comfyui", "label": "audio-separation-nodes-comfyui", "full_name": "christian-byrne/audio-separation-nodes-comfyui", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 17.910382847245863, "font": {"size": 0}, "title": "christian-byrne/audio-separation-nodes-comfyui\n527\u2605 \u00b7 Python\nSeparate stems (vocals, bass, drums, other) from audio. Recombine, tempo match, slice/crop audio", "url": "https://github.com/christian-byrne/audio-separation-nodes-comfyui", "_star_group": "misc"}, {"id": "star_elie222_inbox-zero", "label": "inbox-zero", "full_name": "elie222/inbox-zero", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "elie222/inbox-zero\n10448\u2605 \u00b7 TypeScript\nThe world's best AI personal assistant for email. Open source app to help you reach inbox zero fast.", "url": "https://github.com/elie222/inbox-zero", "_star_group": "llm_api"}, {"id": "star_leonardomso_33-js-concepts", "label": "33-js-concepts", "full_name": "leonardomso/33-js-concepts", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "leonardomso/33-js-concepts\n66312\u2605 \u00b7 JavaScript\n\ud83d\udcdc 33 JavaScript concepts every developer should know.", "url": "https://github.com/leonardomso/33-js-concepts", "_star_group": "misc"}, {"id": "star_gtsteffaniak_filebrowser", "label": "filebrowser", "full_name": "gtsteffaniak/filebrowser", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "gtsteffaniak/filebrowser\n6817\u2605 \u00b7 Go\n\ud83d\udcc2 Web File Browser", "url": "https://github.com/gtsteffaniak/filebrowser", "_star_group": "misc"}, {"id": "star_homanp_infinite-monitor", "label": "infinite-monitor", "full_name": "homanp/infinite-monitor", "color": {"background": "#9C755F", "border": "#9C755F"}, "size": 18.350648971981755, "font": {"size": 0}, "title": "homanp/infinite-monitor\n621\u2605 \u00b7 TypeScript\nMonitor anything in real time", "url": "https://github.com/homanp/infinite-monitor", "_star_group": "security"}, {"id": "star_jrouwe_JoltPhysics", "label": "JoltPhysics", "full_name": "jrouwe/JoltPhysics", "color": {"background": "#0072B2", "border": "#0072B2"}, "size": 28, "font": {"size": 0}, "title": "jrouwe/JoltPhysics\n10161\u2605 \u00b7 C++\nA multi core friendly rigid body physics and collision detection library. Written in C++. Suitable for games and VR applications. Used by Horizon Forbidden West and Death Stranding", "url": "https://github.com/jrouwe/JoltPhysics", "_star_group": "gaming"}, {"id": "star_njbrake_agent-of-empires", "label": "agent-of-empires", "full_name": "njbrake/agent-of-empires", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 21.36229610404813, "font": {"size": 0}, "title": "njbrake/agent-of-empires\n1579\u2605 \u00b7 Rust\nManage your Claude Code, OpenCode agents from either TUI or Web for easy access on mobile. Also supports Mistral Vibe, Codex CLI, Gemini CLI, Pi.dev, Copilot CLI, Factory Droid Cod", "url": "https://github.com/njbrake/agent-of-empires", "_star_group": "ai_code"}, {"id": "star_LalitMaganti_syntaqlite", "label": "syntaqlite", "full_name": "LalitMaganti/syntaqlite", "color": {"background": "#FF9DA7", "border": "#FF9DA7"}, "size": 18.575214083813606, "font": {"size": 0}, "title": "LalitMaganti/syntaqlite\n673\u2605 \u00b7 Rust\nA parser, formatter, validator, and language server for SQLite SQL. Built on SQLite's own grammar and tokenizer", "url": "https://github.com/LalitMaganti/syntaqlite", "_star_group": "code_intel"}, {"id": "star_karpathy_llama2_c", "label": "llama2.c", "full_name": "karpathy/llama2.c", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "karpathy/llama2.c\n19390\u2605 \u00b7 C\nInference Llama 2 in one file of pure C", "url": "https://github.com/karpathy/llama2.c", "_star_group": "misc"}, {"id": "star_moritzWa_cronus", "label": "cronus", "full_name": "moritzWa/cronus", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.716931681397762, "font": {"size": 0}, "title": "moritzWa/cronus\n110\u2605 \u00b7 TypeScript\nAI Smart Screen Time Desktopp App", "url": "https://github.com/moritzWa/cronus", "_star_group": "misc"}, {"id": "star_robinebers_openusage", "label": "openusage", "full_name": "robinebers/openusage", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 22.048382792682617, "font": {"size": 0}, "title": "robinebers/openusage\n1886\u2605 \u00b7 JavaScript\nBurning through your subscriptions too fast? Paying for stuff you never use? Stop guessing. OpenUsage is free and open source.", "url": "https://github.com/robinebers/openusage", "_star_group": "ai_code"}, {"id": "star_MemPalace_mempalace", "label": "mempalace", "full_name": "MemPalace/mempalace", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 28, "font": {"size": 0}, "title": "MemPalace/mempalace\n44653\u2605 \u00b7 Python\nThe highest-scoring AI memory system ever benchmarked. And it's free.", "url": "https://github.com/MemPalace/mempalace", "_star_group": "mcp_ext"}, {"id": "star_theonlyhennygod_zeroclaw", "label": "zeroclaw", "full_name": "theonlyhennygod/zeroclaw", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.281131533324277, "font": {"size": 0}, "title": "theonlyhennygod/zeroclaw\n82\u2605 \u00b7 Rust\nFast, small, and fully autonomous AI assistant infrastructure \u2014 deploy anywhere, swap anything \ud83e\udd80", "url": "https://github.com/theonlyhennygod/zeroclaw", "_star_group": "misc"}, {"id": "star_SvenGDK_RetroMultiTools", "label": "RetroMultiTools", "full_name": "SvenGDK/RetroMultiTools", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.649222605885017, "font": {"size": 0}, "title": "SvenGDK/RetroMultiTools\n190\u2605 \u00b7 C#\nA cross-platform desktop utility for managing, inspecting, modifying, patching & launching retro game ROMs.", "url": "https://github.com/SvenGDK/RetroMultiTools", "_star_group": "misc"}, {"id": "star_operational-co_operational_co", "label": "operational.co", "full_name": "operational-co/operational.co", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 17.552410854433695, "font": {"size": 0}, "title": "operational-co/operational.co\n458\u2605 \u00b7 Vue\nOperational - open-source tool to track important events and receive push notifications on your device.", "url": "https://github.com/operational-co/operational.co", "_star_group": "misc"}, {"id": "star_sooryathejas_METATRON", "label": "METATRON", "full_name": "sooryathejas/METATRON", "color": {"background": "#E15759", "border": "#E15759"}, "size": 22.811935627557016, "font": {"size": 0}, "title": "sooryathejas/METATRON\n2272\u2605 \u00b7 Python\nAI-powered penetration testing assistant using local LLM on linux (Parrot OS)", "url": "https://github.com/sooryathejas/METATRON", "_star_group": "local_ai_inf"}, {"id": "star_nauvalazhar_build-your-own-ai-coding-agent", "label": "build-your-own-ai-coding-agent", "full_name": "nauvalazhar/build-your-own-ai-coding-agent", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.246388213227103, "font": {"size": 0}, "title": "nauvalazhar/build-your-own-ai-coding-agent\n80\u2605 \u00b7 TypeScript\nLearn how AI coding agents work by building one from scratch.", "url": "https://github.com/nauvalazhar/build-your-own-ai-coding-agent", "_star_group": "misc"}, {"id": "star_EnidPinxit_awesome-openclaw-agents", "label": "awesome-openclaw-agents", "full_name": "EnidPinxit/awesome-openclaw-agents", "color": {"background": "#B6992D", "border": "#B6992D"}, "size": 13.37815674780902, "font": {"size": 0}, "title": "EnidPinxit/awesome-openclaw-agents\n40\u2605 \u00b7 \u2014\n162 production-ready AI agent templates for OpenClaw. SOUL.md configs across 19 categories. Submit yours!", "url": "https://github.com/EnidPinxit/awesome-openclaw-agents", "_star_group": "spellbook"}, {"id": "star_cedarconnor_SPAG4d", "label": "SPAG4d", "full_name": "cedarconnor/SPAG4d", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.190566033887439, "font": {"size": 0}, "title": "cedarconnor/SPAG4d\n147\u2605 \u00b7 Python\nConvert 360\u00b0 equirectangular panoramas into viewable 3D Gaussian Splat files.", "url": "https://github.com/cedarconnor/SPAG4d", "_star_group": "misc"}, {"id": "star_pydantic_genai-prices", "label": "genai-prices", "full_name": "pydantic/genai-prices", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.38998733054177, "font": {"size": 0}, "title": "pydantic/genai-prices\n276\u2605 \u00b7 Python\nCalculate prices for calling LLM inference APIs.", "url": "https://github.com/pydantic/genai-prices", "_star_group": "misc"}, {"id": "star_sanchomuzax_hermes-webui", "label": "hermes-webui", "full_name": "sanchomuzax/hermes-webui", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.246388213227103, "font": {"size": 0}, "title": "sanchomuzax/hermes-webui\n80\u2605 \u00b7 Python\nProcess monitoring and configuration dashboard for Hermes Agent", "url": "https://github.com/sanchomuzax/hermes-webui", "_star_group": "misc"}, {"id": "star_wxtsky_CodeIsland", "label": "CodeIsland", "full_name": "wxtsky/CodeIsland", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 19.46259831375125, "font": {"size": 0}, "title": "wxtsky/CodeIsland\n907\u2605 \u00b7 Swift\n", "url": "https://github.com/wxtsky/CodeIsland", "_star_group": "mac"}, {"id": "star_pansalasamarth_System-Design-LLD", "label": "System-Design-LLD", "full_name": "pansalasamarth/System-Design-LLD", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.678503685285506, "font": {"size": 0}, "title": "pansalasamarth/System-Design-LLD\n193\u2605 \u00b7 C++\nThis repository contains my structured notes for Low Level Design (LLD) preparation.", "url": "https://github.com/pansalasamarth/System-Design-LLD", "_star_group": "misc"}, {"id": "star_openai_parameter-golf", "label": "parameter-golf", "full_name": "openai/parameter-golf", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 26.36934103717085, "font": {"size": 0}, "title": "openai/parameter-golf\n4774\u2605 \u00b7 Python\nTrain the smallest LM you can that fits in 16MB. Best model wins!", "url": "https://github.com/openai/parameter-golf", "_star_group": "llm_api"}, {"id": "star_m8e_graphify", "label": "graphify", "full_name": "m8e/graphify", "color": {"background": "#59A14F", "border": "#59A14F"}, "size": 12.331316869490365, "font": {"size": 0}, "title": "m8e/graphify\n13\u2605 \u00b7 \u2014\nClaude Code skill. Drop code, papers, images, or notes into a folder and get a knowledge graph with community detection, god nodes, and honest audit trail.", "url": "https://github.com/m8e/graphify", "_star_group": "kg_rag"}, {"id": "star_rtitmuss_torn", "label": "torn", "full_name": "rtitmuss/torn", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 18.625373071309383, "font": {"size": 0}, "title": "rtitmuss/torn\n685\u2605 \u00b7 Shell\nTorn keyboard", "url": "https://github.com/rtitmuss/torn", "_star_group": "misc"}, {"id": "star_dominikmartn_nothing-design-skill", "label": "nothing-design-skill", "full_name": "dominikmartn/nothing-design-skill", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 21.65609501268757, "font": {"size": 0}, "title": "dominikmartn/nothing-design-skill\n1706\u2605 \u00b7 \u2014\nA Claude Code skill for generating UI in the Nothing design language. Monochrome, typographic, industrial.", "url": "https://github.com/dominikmartn/nothing-design-skill", "_star_group": "ai_code"}, {"id": "star_duo121_termhub", "label": "termhub", "full_name": "duo121/termhub", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 13.612141097668044, "font": {"size": 0}, "title": "duo121/termhub\n49\u2605 \u00b7 JavaScript\nTermHub: Open-source native terminal control gateway for AI Agents. Let LLMs/AI Agents fully control & automate iTerm2 / Windows Terminal: manage tabs, panes, sessions, send comman", "url": "https://github.com/duo121/termhub", "_star_group": "dev_cli"}, {"id": "star_aloshdenny_reverse-SynthID", "label": "reverse-SynthID", "full_name": "aloshdenny/reverse-SynthID", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 23.175404529495175, "font": {"size": 0}, "title": "aloshdenny/reverse-SynthID\n2473\u2605 \u00b7 Python\nreverse engineering Gemini's SynthID detection", "url": "https://github.com/aloshdenny/reverse-SynthID", "_star_group": "llm_api"}, {"id": "star_juliensimon_ocel-generator", "label": "ocel-generator", "full_name": "juliensimon/ocel-generator", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 12.444050163747711, "font": {"size": 0}, "title": "juliensimon/ocel-generator\n15\u2605 \u00b7 Python\nGenerate realistic multi-agent workflow traces with LLM-enriched content, semantic validation, and PM4Py compatibility. pip install open-agent-traces", "url": "https://github.com/juliensimon/ocel-generator", "_star_group": "multi_agent"}, {"id": "star_MuseumofModernArt_exhibitions", "label": "exhibitions", "full_name": "MuseumofModernArt/exhibitions", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.674085438022306, "font": {"size": 0}, "title": "MuseumofModernArt/exhibitions\n107\u2605 \u00b7 \u2014\nThe Museum of Modern Art (MoMA) exhibitions data", "url": "https://github.com/MuseumofModernArt/exhibitions", "_star_group": "misc"}, {"id": "star_fayerman-source_startup-growth-playbook", "label": "startup-growth-playbook", "full_name": "fayerman-source/startup-growth-playbook", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 12.814298672885464, "font": {"size": 0}, "title": "fayerman-source/startup-growth-playbook\n23\u2605 \u00b7 \u2014\nClone into any startup repo. An LLM agent auto-generates and executes a marketing plan from your codebase. 7 distribution-first strategies.", "url": "https://github.com/fayerman-source/startup-growth-playbook", "_star_group": "mcp_ext"}, {"id": "star_a-makelky_write-better-x-articles", "label": "write-better-x-articles", "full_name": "a-makelky/write-better-x-articles", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 11.900563363234188, "font": {"size": 0}, "title": "a-makelky/write-better-x-articles\n7\u2605 \u00b7 \u2014\nhelps format your long form writing for an X article", "url": "https://github.com/a-makelky/write-better-x-articles", "_star_group": "misc"}, {"id": "star_mskayyali_deep-research-test", "label": "deep-research-test", "full_name": "mskayyali/deep-research-test", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 11.986184990874072, "font": {"size": 0}, "title": "mskayyali/deep-research-test\n8\u2605 \u00b7 TypeScript\nBrowse the web and summarize findings", "url": "https://github.com/mskayyali/deep-research-test", "_star_group": "misc"}, {"id": "star_ymx10086_ResearchClaw", "label": "ResearchClaw", "full_name": "ymx10086/ResearchClaw", "color": {"background": "#B6992D", "border": "#B6992D"}, "size": 16.328262447239453, "font": {"size": 0}, "title": "ymx10086/ResearchClaw\n268\u2605 \u00b7 Python\nResearchClaw is a personal AI assistant built for research: fast to set up, easy to run locally or in the cloud, and ready to integrate with the chat apps you already use. With ext", "url": "https://github.com/ymx10086/ResearchClaw", "_star_group": "spellbook"}, {"id": "star_jeasonstudio_chrome-ai", "label": "chrome-ai", "full_name": "jeasonstudio/chrome-ai", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 17.070177520467244, "font": {"size": 0}, "title": "jeasonstudio/chrome-ai\n375\u2605 \u00b7 TypeScript\nVercel AI provider for Chrome built-in model (Gemini Nano)", "url": "https://github.com/jeasonstudio/chrome-ai", "_star_group": "llm_api"}, {"id": "star_project-vera_vera", "label": "vera", "full_name": "project-vera/vera", "color": {"background": "#0072B2", "border": "#0072B2"}, "size": 15.920338763597968, "font": {"size": 0}, "title": "project-vera/vera\n219\u2605 \u00b7 Python\nHigh-fidelity, anycloud emulators running in your laptop. For DevOps programming, testing, and simulation.", "url": "https://github.com/project-vera/vera", "_star_group": "gaming"}, {"id": "star_mnfst_awesome-free-llm-apis", "label": "awesome-free-llm-apis", "full_name": "mnfst/awesome-free-llm-apis", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 22.565229462076893, "font": {"size": 0}, "title": "mnfst/awesome-free-llm-apis\n2142\u2605 \u00b7 \u2014\nPermanent Free LLM API List (API Keys) \ud83d\ude0e\ud83d\udd11", "url": "https://github.com/mnfst/awesome-free-llm-apis", "_star_group": "llm_api"}, {"id": "star_pbakaus_impeccable", "label": "impeccable", "full_name": "pbakaus/impeccable", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "pbakaus/impeccable\n18949\u2605 \u00b7 JavaScript\nThe design language that makes your AI harness better at design.", "url": "https://github.com/pbakaus/impeccable", "_star_group": "misc"}, {"id": "star_alibaba_page-agent", "label": "page-agent", "full_name": "alibaba/page-agent", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 28, "font": {"size": 0}, "title": "alibaba/page-agent\n16915\u2605 \u00b7 TypeScript\nJavaScript in-page GUI agent. Control web interfaces with natural language.", "url": "https://github.com/alibaba/page-agent", "_star_group": "mcp_ext"}, {"id": "star_nvim-treesitter_nvim-treesitter", "label": "nvim-treesitter", "full_name": "nvim-treesitter/nvim-treesitter", "color": {"background": "#FF9DA7", "border": "#FF9DA7"}, "size": 28, "font": {"size": 0}, "title": "nvim-treesitter/nvim-treesitter\n13666\u2605 \u00b7 Tree-sitter Query\nNvim Treesitter configurations and abstraction layer", "url": "https://github.com/nvim-treesitter/nvim-treesitter", "_star_group": "code_intel"}, {"id": "star_tailcallhq_forgecode", "label": "forgecode", "full_name": "tailcallhq/forgecode", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 28, "font": {"size": 0}, "title": "tailcallhq/forgecode\n6507\u2605 \u00b7 Rust\nAI enabled pair programmer for Claude, GPT, O Series, Grok, Deepseek, Gemini and 300+ models", "url": "https://github.com/tailcallhq/forgecode", "_star_group": "multi_agent"}, {"id": "star_HKUDS_DeepTutor", "label": "DeepTutor", "full_name": "HKUDS/DeepTutor", "color": {"background": "#59A14F", "border": "#59A14F"}, "size": 28, "font": {"size": 0}, "title": "HKUDS/DeepTutor\n17685\u2605 \u00b7 Python\n"DeepTutor: Agent-Native Personalized Learning Assistant"", "url": "https://github.com/HKUDS/DeepTutor", "_star_group": "kg_rag"}, {"id": "star_TheCraigHewitt_seomachine", "label": "seomachine", "full_name": "TheCraigHewitt/seomachine", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 27.611940808862027, "font": {"size": 0}, "title": "TheCraigHewitt/seomachine\n5959\u2605 \u00b7 Python\nA specialized Claude Code workspace for creating long-form, SEO-optimized blog content for any business. This system helps you research, write, analyze, and optimize content that r", "url": "https://github.com/TheCraigHewitt/seomachine", "_star_group": "ai_code"}, {"id": "star_elebumm_RedditVideoMakerBot", "label": "RedditVideoMakerBot", "full_name": "elebumm/RedditVideoMakerBot", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "elebumm/RedditVideoMakerBot\n11120\u2605 \u00b7 Python\nCreate Reddit Videos with just\u2728 one command \u2728", "url": "https://github.com/elebumm/RedditVideoMakerBot", "_star_group": "misc"}, {"id": "star_forrestchang_andrej-karpathy-skills", "label": "andrej-karpathy-skills", "full_name": "forrestchang/andrej-karpathy-skills", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "forrestchang/andrej-karpathy-skills\n23563\u2605 \u00b7 \u2014\nA single CLAUDE.md file to improve Claude Code behavior, derived from Andrej Karpathy's observations on LLM coding pitfalls.", "url": "https://github.com/forrestchang/andrej-karpathy-skills", "_star_group": "ai_code"}, {"id": "star_tobi_qmd", "label": "qmd", "full_name": "tobi/qmd", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 28, "font": {"size": 0}, "title": "tobi/qmd\n21374\u2605 \u00b7 TypeScript\nmini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local", "url": "https://github.com/tobi/qmd", "_star_group": "dev_cli"}, {"id": "star_NVIDIA_personaplex", "label": "personaplex", "full_name": "NVIDIA/personaplex", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "NVIDIA/personaplex\n9187\u2605 \u00b7 Python\nPersonaPlex code.", "url": "https://github.com/NVIDIA/personaplex", "_star_group": "misc"}, {"id": "star_zubair-trabzada_ai-sales-team-claude", "label": "ai-sales-team-claude", "full_name": "zubair-trabzada/ai-sales-team-claude", "color": {"background": "#79706E", "border": "#79706E"}, "size": 16.184722281490046, "font": {"size": 0}, "title": "zubair-trabzada/ai-sales-team-claude\n250\u2605 \u00b7 Python\nAI-powered sales team for Claude Code. Research prospects, qualify leads (BANT + MEDDIC), find decision makers, generate outreach sequences, prepare for meetings, write proposals, ", "url": "https://github.com/zubair-trabzada/ai-sales-team-claude", "_star_group": "doc_proc"}, {"id": "star_FujiwaraChoki_MoneyPrinterV2", "label": "MoneyPrinterV2", "full_name": "FujiwaraChoki/MoneyPrinterV2", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 28, "font": {"size": 0}, "title": "FujiwaraChoki/MoneyPrinterV2\n29415\u2605 \u00b7 Python\nAutomate the process of making money online.", "url": "https://github.com/FujiwaraChoki/MoneyPrinterV2", "_star_group": "dev_cli"}, {"id": "star_mattpocock_skills", "label": "skills", "full_name": "mattpocock/skills", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "mattpocock/skills\n14679\u2605 \u00b7 Shell\nMy personal directory of skills, straight from my .claude directory.", "url": "https://github.com/mattpocock/skills", "_star_group": "misc"}, {"id": "star_asgeirtj_system_prompts_leaks", "label": "system_prompts_leaks", "full_name": "asgeirtj/system_prompts_leaks", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "asgeirtj/system_prompts_leaks\n38268\u2605 \u00b7 \u2014\nExtracted system prompts from ChatGPT (GPT-5.4, GPT-5.3, Codex), Claude (Opus 4.6, Sonnet 4.6, Claude Code), Gemini (3.1 Pro, 3 Flash, CLI), Grok (4.2, 4), Perplexity, and more. Up", "url": "https://github.com/asgeirtj/system_prompts_leaks", "_star_group": "llm_api"}, {"id": "star_roboflow_supervision", "label": "supervision", "full_name": "roboflow/supervision", "color": {"background": "#86BCB6", "border": "#86BCB6"}, "size": 28, "font": {"size": 0}, "title": "roboflow/supervision\n37995\u2605 \u00b7 Python\nWe write your reusable computer vision tools. \ud83d\udc9c", "url": "https://github.com/roboflow/supervision", "_star_group": "cv"}, {"id": "star_vas3k_TaxHacker", "label": "TaxHacker", "full_name": "vas3k/TaxHacker", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 26.74414636384005, "font": {"size": 0}, "title": "vas3k/TaxHacker\n5113\u2605 \u00b7 TypeScript\nSelf-hosted AI accounting app. LLM analyzer for receipts, invoices, transactions with custom prompts and categories", "url": "https://github.com/vas3k/TaxHacker", "_star_group": "llm_api"}, {"id": "star_sherlock-project_sherlock", "label": "sherlock", "full_name": "sherlock-project/sherlock", "color": {"background": "#9C755F", "border": "#9C755F"}, "size": 28, "font": {"size": 0}, "title": "sherlock-project/sherlock\n80915\u2605 \u00b7 Python\nHunt down social media accounts by username across social networks", "url": "https://github.com/sherlock-project/sherlock", "_star_group": "security"}, {"id": "star_dmtrKovalenko_fff_nvim", "label": "fff.nvim", "full_name": "dmtrKovalenko/fff.nvim", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 26.09658314243525, "font": {"size": 0}, "title": "dmtrKovalenko/fff.nvim\n4537\u2605 \u00b7 Rust\nThe fastest and the most accurate file search toolkit for AI agents, Neovim, Rust, C, and NodeJS", "url": "https://github.com/dmtrKovalenko/fff.nvim", "_star_group": "misc"}, {"id": "star_freeCodeCamp_freeCodeCamp", "label": "freeCodeCamp", "full_name": "freeCodeCamp/freeCodeCamp", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "freeCodeCamp/freeCodeCamp\n442795\u2605 \u00b7 TypeScript\nfreeCodeCamp.org's open-source codebase and curriculum. Learn math, programming, and computer science for free.", "url": "https://github.com/freeCodeCamp/freeCodeCamp", "_star_group": "misc"}, {"id": "star_telegramdesktop_tdesktop", "label": "tdesktop", "full_name": "telegramdesktop/tdesktop", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "telegramdesktop/tdesktop\n31390\u2605 \u00b7 C++\nTelegram Desktop messaging app", "url": "https://github.com/telegramdesktop/tdesktop", "_star_group": "misc"}, {"id": "star_google-ai-edge_LiteRT-LM", "label": "LiteRT-LM", "full_name": "google-ai-edge/LiteRT-LM", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 24.97612648024482, "font": {"size": 0}, "title": "google-ai-edge/LiteRT-LM\n3646\u2605 \u00b7 C++\n", "url": "https://github.com/google-ai-edge/LiteRT-LM", "_star_group": "misc"}, {"id": "star_badlogic_pi-mono", "label": "pi-mono", "full_name": "badlogic/pi-mono", "color": {"background": "#E15759", "border": "#E15759"}, "size": 28, "font": {"size": 0}, "title": "badlogic/pi-mono\n35172\u2605 \u00b7 TypeScript\nAI agent toolkit: coding agent CLI, unified LLM API, TUI & web UI libraries, Slack bot, vLLM pods", "url": "https://github.com/badlogic/pi-mono", "_star_group": "local_ai_inf"}, {"id": "star_aaif-goose_goose", "label": "goose", "full_name": "aaif-goose/goose", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 28, "font": {"size": 0}, "title": "aaif-goose/goose\n41787\u2605 \u00b7 Rust\nan open source, extensible AI agent that goes beyond code suggestions - install, execute, edit, and test with any LLM", "url": "https://github.com/aaif-goose/goose", "_star_group": "mcp_ext"}, {"id": "star_siddharthvaddem_openscreen", "label": "openscreen", "full_name": "siddharthvaddem/openscreen", "color": {"background": "#7293CB", "border": "#7293CB"}, "size": 28, "font": {"size": 0}, "title": "siddharthvaddem/openscreen\n29292\u2605 \u00b7 TypeScript\nCreate stunning demos for free. Open-source, no subscriptions, no watermarks, and free for commercial use. An alternative to Screen Studio. ", "url": "https://github.com/siddharthvaddem/openscreen", "_star_group": "voice"}, {"id": "star_google-ai-edge_gallery", "label": "gallery", "full_name": "google-ai-edge/gallery", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "google-ai-edge/gallery\n20872\u2605 \u00b7 Kotlin\nA gallery that showcases on-device ML/GenAI use cases and allows people to try and use models locally.", "url": "https://github.com/google-ai-edge/gallery", "_star_group": "misc"}, {"id": "star_Developer-Y_cs-video-courses", "label": "cs-video-courses", "full_name": "Developer-Y/cs-video-courses", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "Developer-Y/cs-video-courses\n80042\u2605 \u00b7 \u2014\nList of Computer Science courses with video lectures.", "url": "https://github.com/Developer-Y/cs-video-courses", "_star_group": "misc"}, {"id": "star_vixhal-baraiya_microgpt-c", "label": "microgpt-c", "full_name": "vixhal-baraiya/microgpt-c", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 17.026350014192378, "font": {"size": 0}, "title": "vixhal-baraiya/microgpt-c\n368\u2605 \u00b7 C\nThe most atomic way to train and inference a GPT in pure, dependency-free C", "url": "https://github.com/vixhal-baraiya/microgpt-c", "_star_group": "misc"}, {"id": "star_peth-eth_agent-ready-by-sero", "label": "agent-ready-by-sero", "full_name": "peth-eth/agent-ready-by-sero", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.512045466124189, "font": {"size": 0}, "title": "peth-eth/agent-ready-by-sero\n45\u2605 \u00b7 \u2014\nMakes your codebase agent-friendly and keeps it that way. Small files so agents don't waste tokens. CLAUDE.md in every directory so they don't have to guess. Tests so they check th", "url": "https://github.com/peth-eth/agent-ready-by-sero", "_star_group": "misc"}, {"id": "star_abhigyanpatwari_GitNexus", "label": "GitNexus", "full_name": "abhigyanpatwari/GitNexus", "color": {"background": "#59A14F", "border": "#59A14F"}, "size": 28, "font": {"size": 0}, "title": "abhigyanpatwari/GitNexus\n27115\u2605 \u00b7 TypeScript\nGitNexus: The Zero-Server Code Intelligence Engine - GitNexus is a client-side knowledge graph creator that runs entirely in your browser. Drop in a GitHub repo or ZIP file, ", "url": "https://github.com/abhigyanpatwari/GitNexus", "_star_group": "kg_rag"}, {"id": "star_NVIDIA-NeMo_DataDesigner", "label": "DataDesigner", "full_name": "NVIDIA-NeMo/DataDesigner", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 21.44245837495724, "font": {"size": 0}, "title": "NVIDIA-NeMo/DataDesigner\n1613\u2605 \u00b7 Python\n\ud83c\udfa8 NeMo Data Designer: Generate high-quality synthetic data from scratch or from seed data.", "url": "https://github.com/NVIDIA-NeMo/DataDesigner", "_star_group": "mcp_ext"}, {"id": "star_HKUDS_ClawWork", "label": "ClawWork", "full_name": "HKUDS/ClawWork", "color": {"background": "#B6992D", "border": "#B6992D"}, "size": 28, "font": {"size": 0}, "title": "HKUDS/ClawWork\n7950\u2605 \u00b7 Python\n"ClawWork: OpenClaw as Your AI Coworker - \ud83d\udcb0 $15K earned in 11 Hours"", "url": "https://github.com/HKUDS/ClawWork", "_star_group": "spellbook"}, {"id": "star_unitedbyai_droidclaw", "label": "droidclaw", "full_name": "unitedbyai/droidclaw", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 20.868261978751633, "font": {"size": 0}, "title": "unitedbyai/droidclaw\n1380\u2605 \u00b7 TypeScript\nturn old phones into ai agents - give it a goal in plain english. it reads the screen, thinks about what to do, taps and types via adb, and repeats until the job is done. ", "url": "https://github.com/unitedbyai/droidclaw", "_star_group": "multi_agent"}, {"id": "star_openhome-dev_abilities", "label": "abilities", "full_name": "openhome-dev/abilities", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 17.222371059211838, "font": {"size": 0}, "title": "openhome-dev/abilities\n400\u2605 \u00b7 Python\nOpen-source abilities for OpenHome agents. ", "url": "https://github.com/openhome-dev/abilities", "_star_group": "misc"}, {"id": "star_marshallrichards_ClawPhone", "label": "ClawPhone", "full_name": "marshallrichards/ClawPhone", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 17.601067173730197, "font": {"size": 0}, "title": "marshallrichards/ClawPhone\n467\u2605 \u00b7 Python\nTweaks for running OpenClaw on a Android smartphone", "url": "https://github.com/marshallrichards/ClawPhone", "_star_group": "multi_agent"}, {"id": "star_sebastianvkl_pizero-openclaw", "label": "pizero-openclaw", "full_name": "sebastianvkl/pizero-openclaw", "color": {"background": "#B6992D", "border": "#B6992D"}, "size": 17.541511507686025, "font": {"size": 0}, "title": "sebastianvkl/pizero-openclaw\n456\u2605 \u00b7 Python\n", "url": "https://github.com/sebastianvkl/pizero-openclaw", "_star_group": "spellbook"}, {"id": "star_KeygraphHQ_shannon", "label": "shannon", "full_name": "KeygraphHQ/shannon", "color": {"background": "#9C755F", "border": "#9C755F"}, "size": 28, "font": {"size": 0}, "title": "KeygraphHQ/shannon\n38187\u2605 \u00b7 TypeScript\nShannon Lite is an autonomous, white-box AI pentester for web applications and APIs. It analyzes your source code, identifies attack vectors, and executes real exploits to prove vu", "url": "https://github.com/KeygraphHQ/shannon", "_star_group": "security"}, {"id": "star_feremabraz_bloomberg-terminal", "label": "bloomberg-terminal", "full_name": "feremabraz/bloomberg-terminal", "color": {"background": "#0072B2", "border": "#0072B2"}, "size": 19.899676475901394, "font": {"size": 0}, "title": "feremabraz/bloomberg-terminal\n1040\u2605 \u00b7 TypeScript\nBloomberg-like terminal with AI. It uses Redis with AlphaVantage data and local simulations to avoid hitting the API too much.", "url": "https://github.com/feremabraz/bloomberg-terminal", "_star_group": "gaming"}, {"id": "star_The-Vibe-Company_companion", "label": "companion", "full_name": "The-Vibe-Company/companion", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 22.865672264990607, "font": {"size": 0}, "title": "The-Vibe-Company/companion\n2301\u2605 \u00b7 TypeScript\nWeb & Mobile UI for Claude Code & Codex . Launch sessions, stream responses, approve tools. All from your browser / mobile", "url": "https://github.com/The-Vibe-Company/companion", "_star_group": "ai_code"}, {"id": "star_Shubhamsaboo_awesome-llm-apps", "label": "awesome-llm-apps", "full_name": "Shubhamsaboo/awesome-llm-apps", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "Shubhamsaboo/awesome-llm-apps\n105311\u2605 \u00b7 Python\nCollection of awesome LLM apps with AI Agents and RAG using OpenAI, Anthropic, Gemini and opensource models.", "url": "https://github.com/Shubhamsaboo/awesome-llm-apps", "_star_group": "llm_api"}, {"id": "star_unchartedsoftware_torflow", "label": "torflow", "full_name": "unchartedsoftware/torflow", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 17.9742517199892, "font": {"size": 0}, "title": "unchartedsoftware/torflow\n540\u2605 \u00b7 JavaScript\nData flow in the Tor network", "url": "https://github.com/unchartedsoftware/torflow", "_star_group": "misc"}, {"id": "star_h9zdev_GeoSentinel", "label": "GeoSentinel", "full_name": "h9zdev/GeoSentinel", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 19.1196229301945, "font": {"size": 0}, "title": "h9zdev/GeoSentinel\n811\u2605 \u00b7 HTML\n**GeoSentinel** is a geospatial monitoring platform that tracks global movement in real time. It aggregates ship and flight routes, live coordinates, and geodata into a unified sy", "url": "https://github.com/h9zdev/GeoSentinel", "_star_group": "misc"}, {"id": "star_VictoriaMetrics_VictoriaLogs", "label": "VictoriaLogs", "full_name": "VictoriaMetrics/VictoriaLogs", "color": {"background": "#D55E00", "border": "#D55E00"}, "size": 21.763316018290325, "font": {"size": 0}, "title": "VictoriaMetrics/VictoriaLogs\n1754\u2605 \u00b7 Go\nFast and easy to use database for logs, which can efficiently handle terabytes of logs", "url": "https://github.com/VictoriaMetrics/VictoriaLogs", "_star_group": "observability"}, {"id": "star_VoltAgent_awesome-agent-skills", "label": "awesome-agent-skills", "full_name": "VoltAgent/awesome-agent-skills", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "VoltAgent/awesome-agent-skills\n15543\u2605 \u00b7 \u2014\nA curated collection of 1000+ agent skills from official dev teams and the community, compatible with Claude Code, Codex, Gemini CLI, Cursor, and more.", "url": "https://github.com/VoltAgent/awesome-agent-skills", "_star_group": "ai_code"}, {"id": "star_wisupai_e2m", "label": "e2m", "full_name": "wisupai/e2m", "color": {"background": "#79706E", "border": "#79706E"}, "size": 20.61544078602362, "font": {"size": 0}, "title": "wisupai/e2m\n1285\u2605 \u00b7 Jupyter Notebook\nE2M converts various file types (doc, docx, epub, html, htm, url, pdf, ppt, pptx, mp3, m4a) into Markdown. It\u2019s easy to install, with dedicated parsers and converters, supporting c", "url": "https://github.com/wisupai/e2m", "_star_group": "doc_proc"}, {"id": "star_dvdsgl_claude-canvas", "label": "claude-canvas", "full_name": "dvdsgl/claude-canvas", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 21.077267233272092, "font": {"size": 0}, "title": "dvdsgl/claude-canvas\n1462\u2605 \u00b7 TypeScript\nGive Claude Code an external monitor", "url": "https://github.com/dvdsgl/claude-canvas", "_star_group": "ai_code"}, {"id": "star_anthropics_claude-quickstarts", "label": "claude-quickstarts", "full_name": "anthropics/claude-quickstarts", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "anthropics/claude-quickstarts\n16069\u2605 \u00b7 Python\nA collection of projects designed to help developers quickly get started with building deployable applications using the Claude API", "url": "https://github.com/anthropics/claude-quickstarts", "_star_group": "llm_api"}, {"id": "star_mickasmt_next-saas-stripe-starter", "label": "next-saas-stripe-starter", "full_name": "mickasmt/next-saas-stripe-starter", "color": {"background": "#66A61E", "border": "#66A61E"}, "size": 23.99618351657996, "font": {"size": 0}, "title": "mickasmt/next-saas-stripe-starter\n2970\u2605 \u00b7 TypeScript\nOpen-source SaaS Starter with User Roles & Admin Panel. Built using Next.js 14, Prisma, Neon, Auth.js v5, Resend, React Email, Shadcn/ui, Stripe, Server Actions.", "url": "https://github.com/mickasmt/next-saas-stripe-starter", "_star_group": "ui_design"}, {"id": "star_Dimillian_CodexMonitor", "label": "CodexMonitor", "full_name": "Dimillian/CodexMonitor", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 24.83655002881239, "font": {"size": 0}, "title": "Dimillian/CodexMonitor\n3544\u2605 \u00b7 TypeScript\nAn app to monitor the (Codex) situation", "url": "https://github.com/Dimillian/CodexMonitor", "_star_group": "mac"}, {"id": "star_arifszn_gitprofile", "label": "gitprofile", "full_name": "arifszn/gitprofile", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 22.716307588966362, "font": {"size": 0}, "title": "arifszn/gitprofile\n2221\u2605 \u00b7 TypeScript\n\ud83d\ude80 Create and publish a dynamic portfolio by just providing your GitHub username.", "url": "https://github.com/arifszn/gitprofile", "_star_group": "quant"}, {"id": "star_MemoriLabs_Memori", "label": "Memori", "full_name": "MemoriLabs/Memori", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "MemoriLabs/Memori\n13295\u2605 \u00b7 Python\nMemori is agent-native memory infrastructure. A SQL-native, LLM-agnostic layer that turns agent execution and conversation into structured, persistent state for production systems.", "url": "https://github.com/MemoriLabs/Memori", "_star_group": "misc"}, {"id": "star_Scrut1ny_GrapheneOS-Guide", "label": "GrapheneOS-Guide", "full_name": "Scrut1ny/GrapheneOS-Guide", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 15.838917879920167, "font": {"size": 0}, "title": "Scrut1ny/GrapheneOS-Guide\n210\u2605 \u00b7 \u2014\nA resource for users intent on optimizing their usage of this highly secure and privacy focused mobile operating system.", "url": "https://github.com/Scrut1ny/GrapheneOS-Guide", "_star_group": "multi_agent"}, {"id": "star_punkpeye_awesome-mcp-servers", "label": "awesome-mcp-servers", "full_name": "punkpeye/awesome-mcp-servers", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 28, "font": {"size": 0}, "title": "punkpeye/awesome-mcp-servers\n84722\u2605 \u00b7 \u2014\nA collection of MCP servers.", "url": "https://github.com/punkpeye/awesome-mcp-servers", "_star_group": "mcp_ext"}, {"id": "star_jamiepine_voicebox", "label": "voicebox", "full_name": "jamiepine/voicebox", "color": {"background": "#7293CB", "border": "#7293CB"}, "size": 28, "font": {"size": 0}, "title": "jamiepine/voicebox\n16083\u2605 \u00b7 TypeScript\nThe open-source voice synthesis studio", "url": "https://github.com/jamiepine/voicebox", "_star_group": "voice"}, {"id": "star_ALucek_agentic-memory", "label": "agentic-memory", "full_name": "ALucek/agentic-memory", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 17.910382847245863, "font": {"size": 0}, "title": "ALucek/agentic-memory\n527\u2605 \u00b7 Jupyter Notebook\nImplementing cognitive architecture and psychological memory concepts into Agentic LLM Systems", "url": "https://github.com/ALucek/agentic-memory", "_star_group": "misc"}, {"id": "star_sbilly_awesome-security", "label": "awesome-security", "full_name": "sbilly/awesome-security", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "sbilly/awesome-security\n14213\u2605 \u00b7 \u2014\nA collection of awesome software, libraries, documents, books, resources and cools stuffs about security.", "url": "https://github.com/sbilly/awesome-security", "_star_group": "misc"}, {"id": "star_agenticnotetaking_arscontexta", "label": "arscontexta", "full_name": "agenticnotetaking/arscontexta", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 24.243646232304336, "font": {"size": 0}, "title": "agenticnotetaking/arscontexta\n3132\u2605 \u00b7 Shell\nClaude Code plugin that generates individualized knowledge systems from conversation. You describe how you think and work, have a conversation and get a complete second brain as ma", "url": "https://github.com/agenticnotetaking/arscontexta", "_star_group": "ai_code"}, {"id": "star_louisho5_picobot", "label": "picobot", "full_name": "louisho5/picobot", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 20.300738071089448, "font": {"size": 0}, "title": "louisho5/picobot\n1173\u2605 \u00b7 Go\nA lightweight self-hosted bot in a single binary, written in Go.", "url": "https://github.com/louisho5/picobot", "_star_group": "misc"}, {"id": "star_arpanghosh8453_open-dronelog", "label": "open-dronelog", "full_name": "arpanghosh8453/open-dronelog", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 20.731374840022575, "font": {"size": 0}, "title": "arpanghosh8453/open-dronelog\n1328\u2605 \u00b7 TypeScript\nDrone Log analyzer: A high-performance universal dashboard application for organizing and analyzing DJI/Litchi flight logs privately in one place. Built with Tauri v2, DuckDB, and ", "url": "https://github.com/arpanghosh8453/open-dronelog", "_star_group": "misc"}, {"id": "star_ffplayout_ffplayout", "label": "ffplayout", "full_name": "ffplayout/ffplayout", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 18.061006765474136, "font": {"size": 0}, "title": "ffplayout/ffplayout\n558\u2605 \u00b7 Rust\nRust and ffmpeg based playout ", "url": "https://github.com/ffplayout/ffplayout", "_star_group": "misc"}, {"id": "star_luchina-gabriel_OSX-PROXMOX", "label": "OSX-PROXMOX", "full_name": "luchina-gabriel/OSX-PROXMOX", "color": {"background": "#D95F02", "border": "#D95F02"}, "size": 28, "font": {"size": 0}, "title": "luchina-gabriel/OSX-PROXMOX\n6712\u2605 \u00b7 Shell\nVoil\u00e0, install macOS on ANY Computer! This is really and magic easiest way! PVE 7.XX ~ 8.XX Support and macOS High Sierra ~ macOS Sequoia Support.", "url": "https://github.com/luchina-gabriel/OSX-PROXMOX", "_star_group": "rl"}, {"id": "star_PKRoma_ProcessHacker", "label": "ProcessHacker", "full_name": "PKRoma/ProcessHacker", "color": {"background": "#9C755F", "border": "#9C755F"}, "size": 19.949679535932376, "font": {"size": 0}, "title": "PKRoma/ProcessHacker\n1056\u2605 \u00b7 C\nA free, powerful, multi-purpose tool that helps you monitor system resources, debug software and detect malware\u2014mirror of https://github.com/processhacker2/processhacker.git", "url": "https://github.com/PKRoma/ProcessHacker", "_star_group": "security"}, {"id": "star_TEN-framework_ten-framework", "label": "ten-framework", "full_name": "TEN-framework/ten-framework", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "TEN-framework/ten-framework\n10400\u2605 \u00b7 Python\n Open-source framework for conversational voice AI agents", "url": "https://github.com/TEN-framework/ten-framework", "_star_group": "misc"}, {"id": "star_pmxt-dev_pmxt", "label": "pmxt", "full_name": "pmxt-dev/pmxt", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 21.14683233079073, "font": {"size": 0}, "title": "pmxt-dev/pmxt\n1490\u2605 \u00b7 TypeScript\nCCXT for prediction markets. PMXT is a unified API for trading on Polymarket, Kalshi, and more.", "url": "https://github.com/pmxt-dev/pmxt", "_star_group": "quant"}, {"id": "star_nickarchuleta_VisionClaw---Audio-focus", "label": "VisionClaw---Audio-focus", "full_name": "nickarchuleta/VisionClaw---Audio-focus", "color": {"background": "#B6992D", "border": "#B6992D"}, "size": 11.0, "font": {"size": 0}, "title": "nickarchuleta/VisionClaw---Audio-focus\n1\u2605 \u00b7 \u2014\nReal-time AI assistant for Meta Ray-Ban smart glasses -- voice + vision + agentic actions via Gemini Live and OpenClaw. I just barely forked this and am still figuring this stuff o", "url": "https://github.com/nickarchuleta/VisionClaw---Audio-focus", "_star_group": "spellbook"}, {"id": "star_Intent-Lab_VisionClaw", "label": "VisionClaw", "full_name": "Intent-Lab/VisionClaw", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 22.497101489195643, "font": {"size": 0}, "title": "Intent-Lab/VisionClaw\n2107\u2605 \u00b7 \u2014\nReal-time AI assistant for Meta Ray-Ban smart glasses -- voice + vision + agentic actions via Gemini Live and OpenClaw", "url": "https://github.com/Intent-Lab/VisionClaw", "_star_group": "llm_api"}, {"id": "star_manaflow-ai_cmux", "label": "cmux", "full_name": "manaflow-ai/cmux", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "manaflow-ai/cmux\n13925\u2605 \u00b7 Swift\nGhostty-based macOS terminal with vertical tabs and notifications for AI coding agents", "url": "https://github.com/manaflow-ai/cmux", "_star_group": "mac"}, {"id": "star_OpenBB-finance_OpenBB", "label": "OpenBB", "full_name": "OpenBB-finance/OpenBB", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 28, "font": {"size": 0}, "title": "OpenBB-finance/OpenBB\n65822\u2605 \u00b7 Python\nFinancial data platform for analysts, quants and AI agents.", "url": "https://github.com/OpenBB-finance/OpenBB", "_star_group": "quant"}, {"id": "star_Prograda_Skybolt", "label": "Skybolt", "full_name": "Prograda/Skybolt", "color": {"background": "#0072B2", "border": "#0072B2"}, "size": 18.460124046760296, "font": {"size": 0}, "title": "Prograda/Skybolt\n646\u2605 \u00b7 C++\nC++/Python-based 3D geospatial application for simulating and visualizing dynamic objects in planetary environments", "url": "https://github.com/Prograda/Skybolt", "_star_group": "gaming"}, {"id": "star_zerowand01_markplane", "label": "markplane", "full_name": "zerowand01/markplane", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 14.175115415260485, "font": {"size": 0}, "title": "zerowand01/markplane\n76\u2605 \u00b7 Rust\nAI-native, markdown-first project management. Your repo is the project manager.", "url": "https://github.com/zerowand01/markplane", "_star_group": "mcp_ext"}, {"id": "star_prajwal-y_video_explainer", "label": "video_explainer", "full_name": "prajwal-y/video_explainer", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.143525441854976, "font": {"size": 0}, "title": "prajwal-y/video_explainer\n143\u2605 \u00b7 Python\n", "url": "https://github.com/prajwal-y/video_explainer", "_star_group": "misc"}, {"id": "star_phiat_claude-esp", "label": "claude-esp", "full_name": "phiat/claude-esp", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 14.880886898080256, "font": {"size": 0}, "title": "phiat/claude-esp\n122\u2605 \u00b7 Go\nStream Claude Code's hidden output (thinking, tool calls, subagents) to a separate terminal in real-time", "url": "https://github.com/phiat/claude-esp", "_star_group": "dev_cli"}, {"id": "star_CasberryIndia_Physics-Notebook", "label": "Physics-Notebook", "full_name": "CasberryIndia/Physics-Notebook", "color": {"background": "#0072B2", "border": "#0072B2"}, "size": 15.477157303794856, "font": {"size": 0}, "title": "CasberryIndia/Physics-Notebook\n173\u2605 \u00b7 HTML\nAn interactive collection of physics concepts with beautiful visualizations and real-time simulations", "url": "https://github.com/CasberryIndia/Physics-Notebook", "_star_group": "gaming"}, {"id": "star_ssrajadh_sentrysearch", "label": "sentrysearch", "full_name": "ssrajadh/sentrysearch", "color": {"background": "#59A14F", "border": "#59A14F"}, "size": 24.26163237409247, "font": {"size": 0}, "title": "ssrajadh/sentrysearch\n3144\u2605 \u00b7 Python\nSemantic search over videos using Gemini Embedding 2 or Qwen3-VL.", "url": "https://github.com/ssrajadh/sentrysearch", "_star_group": "kg_rag"}, {"id": "star_primeline-ai_claude-tmux-orchestration", "label": "claude-tmux-orchestration", "full_name": "primeline-ai/claude-tmux-orchestration", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 12.89281195015483, "font": {"size": 0}, "title": "primeline-ai/claude-tmux-orchestration\n25\u2605 \u00b7 Shell\nClaude Code tmux orchestration \u2014 spawn full AI sessions as parallel workers with heartbeat monitoring and file-based coordination", "url": "https://github.com/primeline-ai/claude-tmux-orchestration", "_star_group": "mcp_ext"}, {"id": "star_paoloanzn_free-code", "label": "free-code", "full_name": "paoloanzn/free-code", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "paoloanzn/free-code\n7774\u2605 \u00b7 TypeScript\n[NOTE] Parent repo is migrating ownership, until the operation is done this repo is blocked. The free build of Claude Code. All telemetry removed, security-prompt guardrails stripp", "url": "https://github.com/paoloanzn/free-code", "_star_group": "ai_code"}, {"id": "star_decolua_9router", "label": "9router", "full_name": "decolua/9router", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 23.02600766571608, "font": {"size": 0}, "title": "decolua/9router\n2389\u2605 \u00b7 JavaScript\nConnect All AI Code Tools (Claude Code, Cursor, Antigravity, Copilot, Codex, Gemini, OpenCode, Cline, OpenClaw...) to 40+ AI Providers & 100+ Models", "url": "https://github.com/decolua/9router", "_star_group": "ai_code"}, {"id": "star_torvalds_linux", "label": "linux", "full_name": "torvalds/linux", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "torvalds/linux\n228511\u2605 \u00b7 C\nLinux kernel source tree", "url": "https://github.com/torvalds/linux", "_star_group": "misc"}, {"id": "star_ARahim3_mlx-tune", "label": "mlx-tune", "full_name": "ARahim3/mlx-tune", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 20.005329897672574, "font": {"size": 0}, "title": "ARahim3/mlx-tune\n1074\u2605 \u00b7 Python\nFine-tune LLMs on your Mac with Apple Silicon. SFT, DPO, GRPO, Vision, TTS, STT, Embedding, and OCR fine-tuning \u2014 natively on MLX. Unsloth-compatible API.", "url": "https://github.com/ARahim3/mlx-tune", "_star_group": "mac"}, {"id": "star_jelly-ssh_jelly-ssh", "label": "jelly-ssh", "full_name": "jelly-ssh/jelly-ssh", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 15.095594780475814, "font": {"size": 0}, "title": "jelly-ssh/jelly-ssh\n139\u2605 \u00b7 \u2014\nJelly is a SSH social network", "url": "https://github.com/jelly-ssh/jelly-ssh", "_star_group": "misc"}, {"id": "star_permissionlesstech_bitchat", "label": "bitchat", "full_name": "permissionlesstech/bitchat", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "permissionlesstech/bitchat\n25704\u2605 \u00b7 Swift\nbluetooth mesh chat, IRC vibes", "url": "https://github.com/permissionlesstech/bitchat", "_star_group": "mac"}, {"id": "star_dabiggm0e_autoresearch-opencode", "label": "autoresearch-opencode", "full_name": "dabiggm0e/autoresearch-opencode", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 15.424404442430403, "font": {"size": 0}, "title": "dabiggm0e/autoresearch-opencode\n168\u2605 \u00b7 Shell\n", "url": "https://github.com/dabiggm0e/autoresearch-opencode", "_star_group": "ai_code"}, {"id": "star_dweymouth_supersonic", "label": "supersonic", "full_name": "dweymouth/supersonic", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 22.45979976706053, "font": {"size": 0}, "title": "dweymouth/supersonic\n2088\u2605 \u00b7 Go\nA lightweight and full-featured cross-platform desktop client for self-hosted music servers", "url": "https://github.com/dweymouth/supersonic", "_star_group": "misc"}, {"id": "star_Epistates_treemd", "label": "treemd", "full_name": "Epistates/treemd", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 18.24273863582892, "font": {"size": 0}, "title": "Epistates/treemd\n597\u2605 \u00b7 Rust\nA (TUI/CLI) markdown navigator with tree-based structural navigation.", "url": "https://github.com/Epistates/treemd", "_star_group": "dev_cli"}, {"id": "star_useautumn_autumn", "label": "autumn", "full_name": "useautumn/autumn", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 23.185944815129815, "font": {"size": 0}, "title": "useautumn/autumn\n2479\u2605 \u00b7 TypeScript\nAutumn is an open-source pricing & billing platform", "url": "https://github.com/useautumn/autumn", "_star_group": "misc"}, {"id": "star_wonjongg_instant-mesh-intersection-repair", "label": "instant-mesh-intersection-repair", "full_name": "wonjongg/instant-mesh-intersection-repair", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.537611071716059, "font": {"size": 0}, "title": "wonjongg/instant-mesh-intersection-repair\n46\u2605 \u00b7 Python\n[SIGGRAPH 2025] Official Implementation of "Instant Self-Intersection Repair for 3D Meshes"", "url": "https://github.com/wonjongg/instant-mesh-intersection-repair", "_star_group": "misc"}, {"id": "star_lux-org_lux", "label": "lux", "full_name": "lux-org/lux", "color": {"background": "#D37295", "border": "#D37295"}, "size": 27.03300537708766, "font": {"size": 0}, "title": "lux-org/lux\n5385\u2605 \u00b7 Python\nAutomatically visualize your pandas dataframe via a single print! \ud83d\udcca \ud83d\udca1", "url": "https://github.com/lux-org/lux", "_star_group": "data_ds"}, {"id": "star_stvlynn_skills", "label": "skills", "full_name": "stvlynn/skills", "color": {"background": "#B6992D", "border": "#B6992D"}, "size": 13.77487042626089, "font": {"size": 0}, "title": "stvlynn/skills\n56\u2605 \u00b7 TypeScript\nOpenClaw Agent Skills", "url": "https://github.com/stvlynn/skills", "_star_group": "spellbook"}, {"id": "star_rt-bishop_Look4Sat", "label": "Look4Sat", "full_name": "rt-bishop/Look4Sat", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 20.02374106383012, "font": {"size": 0}, "title": "rt-bishop/Look4Sat\n1080\u2605 \u00b7 Kotlin\nSatellite tracker and pass predictor for Android, inspired by Gpredict", "url": "https://github.com/rt-bishop/Look4Sat", "_star_group": "multi_agent"}, {"id": "star_leo-lilinxiao_codex-autoresearch", "label": "codex-autoresearch", "full_name": "leo-lilinxiao/codex-autoresearch", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 20.77122465830344, "font": {"size": 0}, "title": "leo-lilinxiao/codex-autoresearch\n1343\u2605 \u00b7 Python\nCodex Autoresearch Skill \u2014 A self-directed iterative system for Codex that continuously cycles through: modify, verify, retain or discard, and repeat indefinitely. Inspired by Karp", "url": "https://github.com/leo-lilinxiao/codex-autoresearch", "_star_group": "ai_code"}, {"id": "star_ehrlich-b_wingthing", "label": "wingthing", "full_name": "ehrlich-b/wingthing", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.405796326513098, "font": {"size": 0}, "title": "ehrlich-b/wingthing\n41\u2605 \u00b7 Go\nSandboxed AI agents, reachable from anywhere", "url": "https://github.com/ehrlich-b/wingthing", "_star_group": "misc"}, {"id": "star_zenc-lang_zenc", "label": "zenc", "full_name": "zenc-lang/zenc", "color": {"background": "#FF9DA7", "border": "#FF9DA7"}, "size": 25.641065824083533, "font": {"size": 0}, "title": "zenc-lang/zenc\n4159\u2605 \u00b7 C\nWrite like a high-level language, run like C.", "url": "https://github.com/zenc-lang/zenc", "_star_group": "code_intel"}, {"id": "star_humanlayer_12-factor-agents", "label": "12-factor-agents", "full_name": "humanlayer/12-factor-agents", "color": {"background": "#59A14F", "border": "#59A14F"}, "size": 28, "font": {"size": 0}, "title": "humanlayer/12-factor-agents\n19242\u2605 \u00b7 TypeScript\nWhat are the principles we can use to build LLM-powered software that is actually good enough to put in the hands of production customers?", "url": "https://github.com/humanlayer/12-factor-agents", "_star_group": "kg_rag"}, {"id": "star_philippemerle_KubeDiagrams", "label": "KubeDiagrams", "full_name": "philippemerle/KubeDiagrams", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 22.80262431688469, "font": {"size": 0}, "title": "philippemerle/KubeDiagrams\n2267\u2605 \u00b7 JavaScript\nGenerate Kubernetes architecture diagrams from Kubernetes manifest files, kustomization files, Helm charts, helmfiles, and actual cluster state", "url": "https://github.com/philippemerle/KubeDiagrams", "_star_group": "misc"}, {"id": "star_karpathy_micrograd", "label": "micrograd", "full_name": "karpathy/micrograd", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "karpathy/micrograd\n15444\u2605 \u00b7 Jupyter Notebook\nA tiny scalar-valued autograd engine and a neural net library on top of it with PyTorch-like API", "url": "https://github.com/karpathy/micrograd", "_star_group": "misc"}, {"id": "star_karpathy_llm_c", "label": "llm.c", "full_name": "karpathy/llm.c", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "karpathy/llm.c\n29551\u2605 \u00b7 Cuda\nLLM training in simple, raw C/CUDA", "url": "https://github.com/karpathy/llm.c", "_star_group": "misc"}, {"id": "star_karpathy_nanochat", "label": "nanochat", "full_name": "karpathy/nanochat", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "karpathy/nanochat\n51754\u2605 \u00b7 Python\nThe best ChatGPT that $100 can buy.", "url": "https://github.com/karpathy/nanochat", "_star_group": "misc"}, {"id": "star_karpathy_nanoGPT", "label": "nanoGPT", "full_name": "karpathy/nanoGPT", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "karpathy/nanoGPT\n56616\u2605 \u00b7 Python\nThe simplest, fastest repository for training/finetuning medium-sized GPTs.", "url": "https://github.com/karpathy/nanoGPT", "_star_group": "ai_code"}, {"id": "star_trevin-creator_autoresearch-mlx", "label": "autoresearch-mlx", "full_name": "trevin-creator/autoresearch-mlx", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 20.9251358130648, "font": {"size": 0}, "title": "trevin-creator/autoresearch-mlx\n1402\u2605 \u00b7 Python\nApple Silicon (MLX) port of Karpathy's autoresearch \u2014 autonomous AI research loops on Mac, no PyTorch required.", "url": "https://github.com/trevin-creator/autoresearch-mlx", "_star_group": "mac"}, {"id": "star_ml-explore_mlx-swift", "label": "mlx-swift", "full_name": "ml-explore/mlx-swift", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 21.761102428819257, "font": {"size": 0}, "title": "ml-explore/mlx-swift\n1753\u2605 \u00b7 C++\nSwift API for MLX", "url": "https://github.com/ml-explore/mlx-swift", "_star_group": "mac"}, {"id": "star_Blaizzy_mlx-vlm", "label": "mlx-vlm", "full_name": "Blaizzy/mlx-vlm", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 25.83591895806455, "font": {"size": 0}, "title": "Blaizzy/mlx-vlm\n4318\u2605 \u00b7 Python\nMLX-VLM is a package for inference and fine-tuning of Vision Language Models (VLMs) on your Mac using MLX.", "url": "https://github.com/Blaizzy/mlx-vlm", "_star_group": "mac"}, {"id": "star_Blaizzy_mlx-audio", "label": "mlx-audio", "full_name": "Blaizzy/mlx-audio", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "Blaizzy/mlx-audio\n6686\u2605 \u00b7 Python\nA text-to-speech (TTS), speech-to-text (STT) and speech-to-speech (STS) library built on Apple's MLX framework, providing efficient speech analysis on Apple Silicon.", "url": "https://github.com/Blaizzy/mlx-audio", "_star_group": "mac"}, {"id": "star_ml-explore_mlx-lm", "label": "mlx-lm", "full_name": "ml-explore/mlx-lm", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 26.321676390755954, "font": {"size": 0}, "title": "ml-explore/mlx-lm\n4732\u2605 \u00b7 Python\nRun LLMs with MLX", "url": "https://github.com/ml-explore/mlx-lm", "_star_group": "mac"}, {"id": "star_ml-explore_mlx", "label": "mlx", "full_name": "ml-explore/mlx", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "ml-explore/mlx\n25373\u2605 \u00b7 C++\nMLX: An array framework for Apple silicon", "url": "https://github.com/ml-explore/mlx", "_star_group": "mac"}, {"id": "star_karpathy_autoresearch", "label": "autoresearch", "full_name": "karpathy/autoresearch", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "karpathy/autoresearch\n71524\u2605 \u00b7 Python\nAI agents running research on single-GPU nanochat training automatically", "url": "https://github.com/karpathy/autoresearch", "_star_group": "misc"}, {"id": "star_jaechang-hits_SciAgent-Skills", "label": "SciAgent-Skills", "full_name": "jaechang-hits/SciAgent-Skills", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 14.525167635142942, "font": {"size": 0}, "title": "jaechang-hits/SciAgent-Skills\n97\u2605 \u00b7 Python\n197 bioinformatics & life science skills for Claude Code and AI agents \u2014 BixBench 92.0% accuracy. RNA-seq, single-cell, drug discovery, proteomics, and more. Powers OmicsHorizon.", "url": "https://github.com/jaechang-hits/SciAgent-Skills", "_star_group": "mac"}, {"id": "star_clemcer_LoggiFly", "label": "LoggiFly", "full_name": "clemcer/LoggiFly", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 21.64932693611474, "font": {"size": 0}, "title": "clemcer/LoggiFly\n1703\u2605 \u00b7 Python\nGet Alerts from your Docker Container Logs", "url": "https://github.com/clemcer/LoggiFly", "_star_group": "misc"}, {"id": "star_ishtms_learn-nodejs-hard-way", "label": "learn-nodejs-hard-way", "full_name": "ishtms/learn-nodejs-hard-way", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 21.87510553872872, "font": {"size": 0}, "title": "ishtms/learn-nodejs-hard-way\n1805\u2605 \u00b7 JavaScript\nLearn NodeJS and master the art of server-side programming by creating a backend framework with 0 dependencies.", "url": "https://github.com/ishtms/learn-nodejs-hard-way", "_star_group": "misc"}, {"id": "star_sgoudelis_ground-station", "label": "ground-station", "full_name": "sgoudelis/ground-station", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 25.448795055305283, "font": {"size": 0}, "title": "sgoudelis/ground-station\n4006\u2605 \u00b7 JavaScript\nGround Station is all-in-one satellite monitoring suite", "url": "https://github.com/sgoudelis/ground-station", "_star_group": "misc"}, {"id": "star_CoderLuii_HolyClaude", "label": "HolyClaude", "full_name": "CoderLuii/HolyClaude", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 22.22084079189903, "font": {"size": 0}, "title": "CoderLuii/HolyClaude\n1969\u2605 \u00b7 Dockerfile\nAI coding workstation: Claude Code + web UI + 7 AI CLIs + headless browser + 50+ tools", "url": "https://github.com/CoderLuii/HolyClaude", "_star_group": "llm_api"}, {"id": "star_SharpAI_SwiftLM", "label": "SwiftLM", "full_name": "SharpAI/SwiftLM", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 16.709644229318243, "font": {"size": 0}, "title": "SharpAI/SwiftLM\n320\u2605 \u00b7 Swift\n\u26a1 Native MLX Swift LLM inference server for Apple Silicon. OpenAI-compatible API, SSD streaming for 100B+ MoE models, TurboQuant KV cache compression, MACOS + iOS iPhone app.", "url": "https://github.com/SharpAI/SwiftLM", "_star_group": "mac"}, {"id": "star_onyx-dot-app_onyx", "label": "onyx", "full_name": "onyx-dot-app/onyx", "color": {"background": "#59A14F", "border": "#59A14F"}, "size": 28, "font": {"size": 0}, "title": "onyx-dot-app/onyx\n26911\u2605 \u00b7 Python\nOpen Source AI Platform - AI Chat with advanced features that works with every LLM", "url": "https://github.com/onyx-dot-app/onyx", "_star_group": "kg_rag"}, {"id": "star_langchain-ai_deepagents", "label": "deepagents", "full_name": "langchain-ai/deepagents", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "langchain-ai/deepagents\n20599\u2605 \u00b7 Python\nAgent harness built with LangChain and LangGraph. Equipped with a planning tool, a filesystem backend, and the ability to spawn subagents - well-equipped to handle complex agentic ", "url": "https://github.com/langchain-ai/deepagents", "_star_group": "ai_agent_fw"}, {"id": "star_microsoft_BitNet", "label": "BitNet", "full_name": "microsoft/BitNet", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "microsoft/BitNet\n38215\u2605 \u00b7 Python\nOfficial inference framework for 1-bit LLMs", "url": "https://github.com/microsoft/BitNet", "_star_group": "misc"}, {"id": "star_promptfoo_promptfoo", "label": "promptfoo", "full_name": "promptfoo/promptfoo", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "promptfoo/promptfoo\n20031\u2605 \u00b7 TypeScript\nTest your prompts, agents, and RAGs. Red teaming/pentesting/vulnerability scanning for AI. Compare performance of GPT, Claude, Gemini, Llama, and more. Simple declarative configs w", "url": "https://github.com/promptfoo/promptfoo", "_star_group": "llm_api"}, {"id": "star_moeru-ai_airi", "label": "airi", "full_name": "moeru-ai/airi", "color": {"background": "#B6992D", "border": "#B6992D"}, "size": 28, "font": {"size": 0}, "title": "moeru-ai/airi\n38039\u2605 \u00b7 TypeScript\n\ud83d\udc96\ud83e\uddf8 Self hosted, you-owned Grok Companion, a container of souls of waifu, cyber livings to bring them into our worlds, wishing to achieve Neuro-sama's altitude. Capable of realtime ", "url": "https://github.com/moeru-ai/airi", "_star_group": "spellbook"}, {"id": "star_pascalorg_editor", "label": "editor", "full_name": "pascalorg/editor", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "pascalorg/editor\n10298\u2605 \u00b7 TypeScript\nCreate and share 3D architectural projects.", "url": "https://github.com/pascalorg/editor", "_star_group": "misc"}, {"id": "star_bytedance_deer-flow", "label": "deer-flow", "full_name": "bytedance/deer-flow", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "bytedance/deer-flow\n61106\u2605 \u00b7 Python\nAn open-source long-horizon SuperAgent harness that researches, codes, and creates. With the help of sandboxes, memories, tools, skill, subagents and message gateway, it handles di", "url": "https://github.com/bytedance/deer-flow", "_star_group": "ai_agent_fw"}, {"id": "star_axios_axios", "label": "axios", "full_name": "axios/axios", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "axios/axios\n108999\u2605 \u00b7 JavaScript\nPromise based HTTP client for the browser and node.js", "url": "https://github.com/axios/axios", "_star_group": "mac"}, {"id": "star_zai-org_GLM-OCR", "label": "GLM-OCR", "full_name": "zai-org/GLM-OCR", "color": {"background": "#79706E", "border": "#79706E"}, "size": 27.512868683594657, "font": {"size": 0}, "title": "zai-org/GLM-OCR\n5858\u2605 \u00b7 Python\nGLM-OCR: Accurate \u00d7 Fast \u00d7 Comprehensive", "url": "https://github.com/zai-org/GLM-OCR", "_star_group": "doc_proc"}, {"id": "star_google-research_timesfm", "label": "timesfm", "full_name": "google-research/timesfm", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "google-research/timesfm\n16894\u2605 \u00b7 Python\nTimesFM (Time Series Foundation Model) is a pretrained time-series foundation model developed by Google Research for time-series forecasting.", "url": "https://github.com/google-research/timesfm", "_star_group": "mac"}, {"id": "star_Yeachan-Heo_oh-my-codex", "label": "oh-my-codex", "full_name": "Yeachan-Heo/oh-my-codex", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "Yeachan-Heo/oh-my-codex\n22178\u2605 \u00b7 TypeScript\nOmX - Oh My codeX: Your codex is not alone. Add hooks, agent teams, HUDs, and so much more.", "url": "https://github.com/Yeachan-Heo/oh-my-codex", "_star_group": "ai_code"}, {"id": "star_msitarzewski_agency-agents", "label": "agency-agents", "full_name": "msitarzewski/agency-agents", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "msitarzewski/agency-agents\n79368\u2605 \u00b7 Shell\nA complete AI agency at your fingertips - From frontend wizards to Reddit community ninjas, from whimsy injectors to reality checkers. Each agent is a specialized expert with perso", "url": "https://github.com/msitarzewski/agency-agents", "_star_group": "ai_code"}, {"id": "star_Gen-Verse_LatentMAS", "label": "LatentMAS", "full_name": "Gen-Verse/LatentMAS", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 19.333431691663165, "font": {"size": 0}, "title": "Gen-Verse/LatentMAS\n870\u2605 \u00b7 Python\nLatent Collaboration in Multi-Agent Systems", "url": "https://github.com/Gen-Verse/LatentMAS", "_star_group": "multi_agent"}, {"id": "star_ambarish-3012_technical-writeup-assistant", "label": "technical-writeup-assistant", "full_name": "ambarish-3012/technical-writeup-assistant", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 12.064904772878688, "font": {"size": 0}, "title": "ambarish-3012/technical-writeup-assistant\n9\u2605 \u00b7 TypeScript\nAI-powered local-first technical writing assistant that generates architect-level articles for Medium using Claude. Staged pipeline: outline \u2192 draft \u2192 diagrams \u2192 export. ~$0.15 p", "url": "https://github.com/ambarish-3012/technical-writeup-assistant", "_star_group": "misc"}, {"id": "star_unmta_emailmd", "label": "emailmd", "full_name": "unmta/emailmd", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 19.980674164146038, "font": {"size": 0}, "title": "unmta/emailmd\n1066\u2605 \u00b7 TypeScript\nRender markdown into email-safe HTML", "url": "https://github.com/unmta/emailmd", "_star_group": "misc"}, {"id": "star_rustyrussell_million-channels-project", "label": "million-channels-project", "full_name": "rustyrussell/million-channels-project", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.729837754908832, "font": {"size": 0}, "title": "rustyrussell/million-channels-project\n54\u2605 \u00b7 Python\nCreating a test corpus for a lightning network with 1M public channels", "url": "https://github.com/rustyrussell/million-channels-project", "_star_group": "misc"}, {"id": "star_ericboy0224_learn-docker-and-k8s", "label": "learn-docker-and-k8s", "full_name": "ericboy0224/learn-docker-and-k8s", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 17.269722843860947, "font": {"size": 0}, "title": "ericboy0224/learn-docker-and-k8s\n408\u2605 \u00b7 Shell\nInteractive AI-driven game to learn Docker, Linux, networking & Kubernetes. Open in Claude Code or Cursor, type 'let's play'.", "url": "https://github.com/ericboy0224/learn-docker-and-k8s", "_star_group": "ai_code"}, {"id": "star_kepano_obsidian-skills", "label": "obsidian-skills", "full_name": "kepano/obsidian-skills", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "kepano/obsidian-skills\n23535\u2605 \u00b7 \u2014\nAgent skills for Obsidian. Teach your agent to use Markdown, Bases, JSON Canvas, and use the CLI.", "url": "https://github.com/kepano/obsidian-skills", "_star_group": "ai_code"}, {"id": "star_jwhelland_bevyearth", "label": "bevyearth", "full_name": "jwhelland/bevyearth", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 12.967222012516512, "font": {"size": 0}, "title": "jwhelland/bevyearth\n27\u2605 \u00b7 Rust\nPlaying with bevy", "url": "https://github.com/jwhelland/bevyearth", "_star_group": "misc"}, {"id": "star_javabuddy_best-system-design-resources", "label": "best-system-design-resources", "full_name": "javabuddy/best-system-design-resources", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 25.670793771543064, "font": {"size": 0}, "title": "javabuddy/best-system-design-resources\n4183\u2605 \u00b7 \u2014\nA collection of best resources to learn System Design, Software architecture, and prepare for System Design Interviews", "url": "https://github.com/javabuddy/best-system-design-resources", "_star_group": "misc"}, {"id": "star_flipbit03_terminal-use", "label": "terminal-use", "full_name": "flipbit03/terminal-use", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.512045466124189, "font": {"size": 0}, "title": "flipbit03/terminal-use\n45\u2605 \u00b7 Rust\nHeadless virtual terminal for AI agents. Spawn apps, read the screen, send keystrokes.", "url": "https://github.com/flipbit03/terminal-use", "_star_group": "misc"}, {"id": "star_Tencent-Hunyuan_Hunyuan3D-2_1", "label": "Hunyuan3D-2.1", "full_name": "Tencent-Hunyuan/Hunyuan3D-2.1", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 24.425863804064278, "font": {"size": 0}, "title": "Tencent-Hunyuan/Hunyuan3D-2.1\n3255\u2605 \u00b7 Python\nFrom Images to High-Fidelity 3D Assets with Production-Ready PBR Material", "url": "https://github.com/Tencent-Hunyuan/Hunyuan3D-2.1", "_star_group": "misc"}, {"id": "star_mmalmi_nostr-vpn", "label": "nostr-vpn", "full_name": "mmalmi/nostr-vpn", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.660849659244498, "font": {"size": 0}, "title": "mmalmi/nostr-vpn\n313\u2605 \u00b7 Rust\n", "url": "https://github.com/mmalmi/nostr-vpn", "_star_group": "misc"}, {"id": "star_pierotofy_OpenSplat", "label": "OpenSplat", "full_name": "pierotofy/OpenSplat", "color": {"background": "#D95F02", "border": "#D95F02"}, "size": 22.15700918990622, "font": {"size": 0}, "title": "pierotofy/OpenSplat\n1938\u2605 \u00b7 C++\nProduction-grade 3D gaussian splatting with CPU/GPU support for Windows, Mac and Linux \ud83d\ude80", "url": "https://github.com/pierotofy/OpenSplat", "_star_group": "rl"}, {"id": "star_BuilderIO_agent-native", "label": "agent-native", "full_name": "BuilderIO/agent-native", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.43298784568398, "font": {"size": 0}, "title": "BuilderIO/agent-native\n42\u2605 \u00b7 TypeScript\nA framework for building agent-native applications.", "url": "https://github.com/BuilderIO/agent-native", "_star_group": "misc"}, {"id": "star_Yambr_open-computer-use", "label": "open-computer-use", "full_name": "Yambr/open-computer-use", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 13.587646202622532, "font": {"size": 0}, "title": "Yambr/open-computer-use\n48\u2605 \u00b7 Python\nMCP server that gives any LLM its own computer \u2014 managed Docker workspaces with live browser, terminal, code execution, document skills, and autonomous sub-agents. Self-hosted, ope", "url": "https://github.com/Yambr/open-computer-use", "_star_group": "mcp_ext"}, {"id": "star_alibaba-flyai_flyai-skill", "label": "flyai-skill", "full_name": "alibaba-flyai/flyai-skill", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 17.69652658330572, "font": {"size": 0}, "title": "alibaba-flyai/flyai-skill\n485\u2605 \u00b7 \u2014\nfly ai agent skill", "url": "https://github.com/alibaba-flyai/flyai-skill", "_star_group": "misc"}, {"id": "star_Lionel-Lim_asciimap", "label": "asciimap", "full_name": "Lionel-Lim/asciimap", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 14.246388213227103, "font": {"size": 0}, "title": "Lionel-Lim/asciimap\n80\u2605 \u00b7 TypeScript\nasciimap is a browser-based ASCII cartography app that renders live map features", "url": "https://github.com/Lionel-Lim/asciimap", "_star_group": "misc"}, {"id": "star_imorte_passport-index-data", "label": "passport-index-data", "full_name": "imorte/passport-index-data", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.924482359900646, "font": {"size": 0}, "title": "imorte/passport-index-data\n63\u2605 \u00b7 Go\nPassport visa requirements for 199 countries, updated regularly. CSV + JSON.", "url": "https://github.com/imorte/passport-index-data", "_star_group": "misc"}, {"id": "star_Data-Science-Community-SRM_Algorithms-for-Programming", "label": "Algorithms-for-Programming", "full_name": "Data-Science-Community-SRM/Algorithms-for-Programming", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 12.967222012516512, "font": {"size": 0}, "title": "Data-Science-Community-SRM/Algorithms-for-Programming\n27\u2605 \u00b7 C++\nA collection of most useful Data Structures and Algorithms implemented in various languages. ", "url": "https://github.com/Data-Science-Community-SRM/Algorithms-for-Programming", "_star_group": "misc"}, {"id": "star_hkdb_aerion", "label": "aerion", "full_name": "hkdb/aerion", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 16.328262447239453, "font": {"size": 0}, "title": "hkdb/aerion\n268\u2605 \u00b7 Go\nAn Open Source Lightweight E-Mail Client", "url": "https://github.com/hkdb/aerion", "_star_group": "misc"}, {"id": "star_WhiskeyCoder_Qwen3-Audiobook-Converter", "label": "Qwen3-Audiobook-Converter", "full_name": "WhiskeyCoder/Qwen3-Audiobook-Converter", "color": {"background": "#79706E", "border": "#79706E"}, "size": 17.983985959876254, "font": {"size": 0}, "title": "WhiskeyCoder/Qwen3-Audiobook-Converter\n542\u2605 \u00b7 Python\nConvert PDFs, EPUBs, DOCX, DOC, and TXT files into high-quality audiobooks using **Qwen3 TTS Voice Model** - an open-source voice synthesis system that excels at natural speech gen", "url": "https://github.com/WhiskeyCoder/Qwen3-Audiobook-Converter", "_star_group": "doc_proc"}, {"id": "star_c2g-dev_city2graph", "label": "city2graph", "full_name": "c2g-dev/city2graph", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 20.072504796467847, "font": {"size": 0}, "title": "c2g-dev/city2graph\n1096\u2605 \u00b7 Python\nTransform geospatial relations into graphs for Graph Neural Networks and network analysis", "url": "https://github.com/c2g-dev/city2graph", "_star_group": "misc"}, {"id": "star_sympozium-ai_sympozium", "label": "sympozium", "full_name": "sympozium-ai/sympozium", "color": {"background": "#B6992D", "border": "#B6992D"}, "size": 17.362591967393985, "font": {"size": 0}, "title": "sympozium-ai/sympozium\n424\u2605 \u00b7 Go\nRun a fleet of AI agents on Kubernetes. Administer your cluster agentically", "url": "https://github.com/sympozium-ai/sympozium", "_star_group": "spellbook"}, {"id": "star_goposta_posta", "label": "posta", "full_name": "goposta/posta", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.562806968803505, "font": {"size": 0}, "title": "goposta/posta\n47\u2605 \u00b7 Go\nSelf-hosted email delivery platform that enables applications to send emails via HTTP APIs while handling SMTP delivery, templates, storage, security, and analytics.", "url": "https://github.com/goposta/posta", "_star_group": "misc"}, {"id": "star_python-websockets_websockets", "label": "websockets", "full_name": "python-websockets/websockets", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 27.31830425901165, "font": {"size": 0}, "title": "python-websockets/websockets\n5663\u2605 \u00b7 Python\nLibrary for building WebSocket servers and clients in Python", "url": "https://github.com/python-websockets/websockets", "_star_group": "misc"}, {"id": "star_hermes-hq_hermes-ide", "label": "hermes-ide", "full_name": "hermes-hq/hermes-ide", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 15.764557186726481, "font": {"size": 0}, "title": "hermes-hq/hermes-ide\n202\u2605 \u00b7 TypeScript\nAI-native terminal emulator & IDE. Built with Tauri, React, and Rust.", "url": "https://github.com/hermes-hq/hermes-ide", "_star_group": "mac"}, {"id": "star_jjmartres_opencode", "label": "opencode", "full_name": "jjmartres/opencode", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 14.75900198943421, "font": {"size": 0}, "title": "jjmartres/opencode\n113\u2605 \u00b7 Python\nA powerful, custom opencode configuration, complete with a suite of agents, commands, rules, skills, and a pre-configured MCP server. It's designed to be a flexible starting point ", "url": "https://github.com/jjmartres/opencode", "_star_group": "mcp_ext"}, {"id": "star_Railly_agentfiles", "label": "agentfiles", "full_name": "Railly/agentfiles", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 17.8252488629084, "font": {"size": 0}, "title": "Railly/agentfiles\n510\u2605 \u00b7 TypeScript\nBrowse, create, and edit AI agent files across Claude Code, Cursor, Codex, and 13+ tools \u2014 from Obsidian.", "url": "https://github.com/Railly/agentfiles", "_star_group": "ai_code"}, {"id": "star_ai-agents-2030_awesome-deep-research-agent", "label": "awesome-deep-research-agent", "full_name": "ai-agents-2030/awesome-deep-research-agent", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 18.22447242444236, "font": {"size": 0}, "title": "ai-agents-2030/awesome-deep-research-agent\n593\u2605 \u00b7 \u2014\n", "url": "https://github.com/ai-agents-2030/awesome-deep-research-agent", "_star_group": "misc"}, {"id": "star_sacridini_Awesome-Geospatial", "label": "Awesome-Geospatial", "full_name": "sacridini/Awesome-Geospatial", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 26.572702268162164, "font": {"size": 0}, "title": "sacridini/Awesome-Geospatial\n4956\u2605 \u00b7 \u2014\nLong list of geospatial tools and resources", "url": "https://github.com/sacridini/Awesome-Geospatial", "_star_group": "misc"}, {"id": "star_jontsai_openclaw-command-center", "label": "openclaw-command-center", "full_name": "jontsai/openclaw-command-center", "color": {"background": "#E15759", "border": "#E15759"}, "size": 15.875387909251756, "font": {"size": 0}, "title": "jontsai/openclaw-command-center\n214\u2605 \u00b7 JavaScript\n\ud83e\udd16 AI assistant command and control dashboard \u2014 Spawn more Overlords!", "url": "https://github.com/jontsai/openclaw-command-center", "_star_group": "local_ai_inf"}, {"id": "star_krelltunez_dayGLANCE", "label": "dayGLANCE", "full_name": "krelltunez/dayGLANCE", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 13.818838021455036, "font": {"size": 0}, "title": "krelltunez/dayGLANCE\n58\u2605 \u00b7 JavaScript\nA Day Planner App", "url": "https://github.com/krelltunez/dayGLANCE", "_star_group": "misc"}, {"id": "star_jyoung105_frouter", "label": "frouter", "full_name": "jyoung105/frouter", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 16.160131662424554, "font": {"size": 0}, "title": "jyoung105/frouter\n247\u2605 \u00b7 TypeScript\nFree model router CLI to discover, benchmark, and configure free AI models for OpenCode and OpenClaw", "url": "https://github.com/jyoung105/frouter", "_star_group": "ai_code"}, {"id": "star_alvinreal_awesome-openclaw-tips", "label": "awesome-openclaw-tips", "full_name": "alvinreal/awesome-openclaw-tips", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 15.609695288731725, "font": {"size": 0}, "title": "alvinreal/awesome-openclaw-tips\n186\u2605 \u00b7 TypeScript\nPractical OpenClaw tips for memory, reliability, cost, automation, and multi-agent workflows.", "url": "https://github.com/alvinreal/awesome-openclaw-tips", "_star_group": "multi_agent"}, {"id": "star_DhivakaranRavi_kiteguard", "label": "kiteguard", "full_name": "DhivakaranRavi/kiteguard", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 11.986184990874072, "font": {"size": 0}, "title": "DhivakaranRavi/kiteguard\n8\u2605 \u00b7 Rust\nOpen-source runtime security guardrails for Claude Code, Cursor, and Gemini CLI \u2014 blocks dangerous commands, detects prompt injection, and prevents PII leakage before it happens.", "url": "https://github.com/DhivakaranRavi/kiteguard", "_star_group": "ai_code"}, {"id": "star_microsoft_powerbi-modeling-mcp", "label": "powerbi-modeling-mcp", "full_name": "microsoft/powerbi-modeling-mcp", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 18.40355843455466, "font": {"size": 0}, "title": "microsoft/powerbi-modeling-mcp\n633\u2605 \u00b7 \u2014\nThe Power BI Modeling MCP Server, brings Power BI semantic modeling capabilities to your AI agents.", "url": "https://github.com/microsoft/powerbi-modeling-mcp", "_star_group": "mcp_ext"}, {"id": "star_Nite01007_RadioTranscriber", "label": "RadioTranscriber", "full_name": "Nite01007/RadioTranscriber", "color": {"background": "#7293CB", "border": "#7293CB"}, "size": 13.03802497161793, "font": {"size": 0}, "title": "Nite01007/RadioTranscriber\n29\u2605 \u00b7 Python\nA Python script for transcribing Broadcastify radio feeds using Whisper AI. Includes optional MQTT module.", "url": "https://github.com/Nite01007/RadioTranscriber", "_star_group": "voice"}, {"id": "star_DarkWebInformer_FBI_Watchdog", "label": "FBI_Watchdog", "full_name": "DarkWebInformer/FBI_Watchdog", "color": {"background": "#9C755F", "border": "#9C755F"}, "size": 18.363940113936955, "font": {"size": 0}, "title": "DarkWebInformer/FBI_Watchdog\n624\u2605 \u00b7 Python\nFBI Watchdog is a multi-layered domain monitoring tool that detects law enforcement seizures, DNS changes, HTTP fingerprint shifts, WHOIS record mutations, and IP address changes a", "url": "https://github.com/DarkWebInformer/FBI_Watchdog", "_star_group": "security"}, {"id": "star_ofershap_agents-control-tower", "label": "agents-control-tower", "full_name": "ofershap/agents-control-tower", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 12.444050163747711, "font": {"size": 0}, "title": "ofershap/agents-control-tower\n15\u2605 \u00b7 TypeScript\nLaunch, watch, and command your Cursor agents from one terminal", "url": "https://github.com/ofershap/agents-control-tower", "_star_group": "dev_cli"}, {"id": "star_ubikron_Awesome-AI-OSINT", "label": "Awesome-AI-OSINT", "full_name": "ubikron/Awesome-AI-OSINT", "color": {"background": "#EDC948", "border": "#EDC948"}, "size": 16.917534733302897, "font": {"size": 0}, "title": "ubikron/Awesome-AI-OSINT\n351\u2605 \u00b7 \u2014\nA list of articles, videos, and tools related to the use of AI for OSINT.", "url": "https://github.com/ubikron/Awesome-AI-OSINT", "_star_group": "mcp_ext"}, {"id": "star_adithya-s-k_marker-api", "label": "marker-api", "full_name": "adithya-s-k/marker-api", "color": {"background": "#79706E", "border": "#79706E"}, "size": 19.6382933513876, "font": {"size": 0}, "title": "adithya-s-k/marker-api\n959\u2605 \u00b7 Python\nEasily deployable \ud83d\ude80 API to convert PDF to markdown quickly with high accuracy.", "url": "https://github.com/adithya-s-k/marker-api", "_star_group": "doc_proc"}, {"id": "star_tucktuckg00se_INTERSECT", "label": "INTERSECT", "full_name": "tucktuckg00se/INTERSECT", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 15.938126570764801, "font": {"size": 0}, "title": "tucktuckg00se/INTERSECT\n221\u2605 \u00b7 C++\nA nondestructive, time-stretching, and intersecting sample slicer plugin with independent per-slice parameter control.", "url": "https://github.com/tucktuckg00se/INTERSECT", "_star_group": "mac"}, {"id": "star_Shelf-nu_shelf_nu", "label": "shelf.nu", "full_name": "Shelf-nu/shelf.nu", "color": {"background": "#E7298A", "border": "#E7298A"}, "size": 23.324876556183757, "font": {"size": 0}, "title": "Shelf-nu/shelf.nu\n2559\u2605 \u00b7 TypeScript\nA free open source IT asset / Equipment / management and scheduling system.", "url": "https://github.com/Shelf-nu/shelf.nu", "_star_group": "hw_iot"}, {"id": "star_GeneralJerel_world-monitor-copilotkit", "label": "world-monitor-copilotkit", "full_name": "GeneralJerel/world-monitor-copilotkit", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 13.752491243931352, "font": {"size": 0}, "title": "GeneralJerel/world-monitor-copilotkit\n55\u2605 \u00b7 TypeScript\n", "url": "https://github.com/GeneralJerel/world-monitor-copilotkit", "_star_group": "ai_code"}, {"id": "star_etrobot_open-alpha-arena", "label": "open-alpha-arena", "full_name": "etrobot/open-alpha-arena", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 18.15057068864322, "font": {"size": 0}, "title": "etrobot/open-alpha-arena\n577\u2605 \u00b7 Python\nAI paper trading project inspired by nof1 Alpha Arena, using cctx for quotation.", "url": "https://github.com/etrobot/open-alpha-arena", "_star_group": "quant"}, {"id": "star_ikaijua_Awesome-AITools", "label": "Awesome-AITools", "full_name": "ikaijua/Awesome-AITools", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 27.468358913759555, "font": {"size": 0}, "title": "ikaijua/Awesome-AITools\n5813\u2605 \u00b7 Python\nCollection of AI-related utilities. Welcome to submit pull requests /\u6536\u85cfAI\u76f8\u5173\u7684\u5b9e\u7528\u5de5\u5177\uff0c\u6b22\u8fce\u63d0\u4ea4pull requests", "url": "https://github.com/ikaijua/Awesome-AITools", "_star_group": "llm_api"}, {"id": "star_weiesky_cc-viewer", "label": "cc-viewer", "full_name": "weiesky/cc-viewer", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 18.01786747540446, "font": {"size": 0}, "title": "weiesky/cc-viewer\n549\u2605 \u00b7 JavaScript\nA request monitoring system for Claude Code that captures and visualizes all API requests and responses in real time. Helps developers monitor their Context for reviewing and debug", "url": "https://github.com/weiesky/cc-viewer", "_star_group": "ai_code"}, {"id": "star_Anand-Swamy_stockbot", "label": "stockbot", "full_name": "Anand-Swamy/stockbot", "color": {"background": "#FABFD2", "border": "#FABFD2"}, "size": 12.731067079528808, "font": {"size": 0}, "title": "Anand-Swamy/stockbot\n21\u2605 \u00b7 Python\nAn algorithmic trading bot using Alpaca's paper trading platform, as well as Yahoo Finance to receive stock data.", "url": "https://github.com/Anand-Swamy/stockbot", "_star_group": "quant"}, {"id": "star_saulpw_visidata", "label": "visidata", "full_name": "saulpw/visidata", "color": {"background": "#D37295", "border": "#D37295"}, "size": 28, "font": {"size": 0}, "title": "saulpw/visidata\n9021\u2605 \u00b7 Python\nA terminal spreadsheet multitool for discovering and arranging data", "url": "https://github.com/saulpw/visidata", "_star_group": "data_ds"}, {"id": "star_GradientHQ_parallax", "label": "parallax", "full_name": "GradientHQ/parallax", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 20.488503587916234, "font": {"size": 0}, "title": "GradientHQ/parallax\n1239\u2605 \u00b7 Python\nParallax is a distributed model serving framework that lets you build your own AI cluster anywhere", "url": "https://github.com/GradientHQ/parallax", "_star_group": "misc"}, {"id": "star_superagent-ai_grok-cli", "label": "grok-cli", "full_name": "superagent-ai/grok-cli", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 23.88329224713889, "font": {"size": 0}, "title": "superagent-ai/grok-cli\n2898\u2605 \u00b7 TypeScript\nAn open-source autonomous agent powered by Grok.", "url": "https://github.com/superagent-ai/grok-cli", "_star_group": "ai_agent_fw"}, {"id": "star_langchain-ai_open-swe", "label": "open-swe", "full_name": "langchain-ai/open-swe", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "langchain-ai/open-swe\n9493\u2605 \u00b7 Python\nAn Open-Source Asynchronous Coding Agent", "url": "https://github.com/langchain-ai/open-swe", "_star_group": "ai_agent_fw"}, {"id": "star_jarrodwatts_claude-hud", "label": "claude-hud", "full_name": "jarrodwatts/claude-hud", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "jarrodwatts/claude-hud\n18846\u2605 \u00b7 JavaScript\nA Claude Code plugin that shows what's happening - context usage, active tools, running agents, and todo progress", "url": "https://github.com/jarrodwatts/claude-hud", "_star_group": "llm_api"}, {"id": "star_volcengine_OpenViking", "label": "OpenViking", "full_name": "volcengine/OpenViking", "color": {"background": "#59A14F", "border": "#59A14F"}, "size": 28, "font": {"size": 0}, "title": "volcengine/OpenViking\n22192\u2605 \u00b7 Python\nOpenViking is an open-source context database designed specifically for AI Agents(such as openclaw). OpenViking unifies the management of context (memory, resources, and skills) th", "url": "https://github.com/volcengine/OpenViking", "_star_group": "kg_rag"}, {"id": "star_alirezarezvani_claude-skills", "label": "claude-skills", "full_name": "alirezarezvani/claude-skills", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "alirezarezvani/claude-skills\n10868\u2605 \u00b7 Python\n232+ Claude Code skills & agent plugins for Claude Code, Codex, Gemini CLI, Cursor, and 8 more coding agents \u2014 engineering, marketing, product, compliance, C-level advisory.", "url": "https://github.com/alirezarezvani/claude-skills", "_star_group": "ai_agent_fw"}, {"id": "star_lightpanda-io_browser", "label": "browser", "full_name": "lightpanda-io/browser", "color": {"background": "#76B7B2", "border": "#76B7B2"}, "size": 28, "font": {"size": 0}, "title": "lightpanda-io/browser\n28616\u2605 \u00b7 Zig\nLightpanda: the headless browser designed for AI and automation", "url": "https://github.com/lightpanda-io/browser", "_star_group": "browser_auto"}, {"id": "star_shareAI-lab_learn-claude-code", "label": "learn-claude-code", "full_name": "shareAI-lab/learn-claude-code", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "shareAI-lab/learn-claude-code\n52747\u2605 \u00b7 TypeScript\nBash is all you need - A nano claude code\u2013like \u300cagent harness\u300d, built from 0 to 1", "url": "https://github.com/shareAI-lab/learn-claude-code", "_star_group": "ai_code"}, {"id": "star_666ghj_MiroFish", "label": "MiroFish", "full_name": "666ghj/MiroFish", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 28, "font": {"size": 0}, "title": "666ghj/MiroFish\n54596\u2605 \u00b7 Python\nA Simple and Universal Swarm Intelligence Engine, Predicting Anything. \u7b80\u6d01\u901a\u7528\u7684\u7fa4\u4f53\u667a\u80fd\u5f15\u64ce\uff0c\u9884\u6d4b\u4e07\u7269", "url": "https://github.com/666ghj/MiroFish", "_star_group": "multi_agent"}, {"id": "star_obra_superpowers", "label": "superpowers", "full_name": "obra/superpowers", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "obra/superpowers\n150146\u2605 \u00b7 Shell\nAn agentic skills framework & software development methodology that works.", "url": "https://github.com/obra/superpowers", "_star_group": "misc"}, {"id": "star_affaan-m_everything-claude-code", "label": "everything-claude-code", "full_name": "affaan-m/everything-claude-code", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "affaan-m/everything-claude-code\n154188\u2605 \u00b7 JavaScript\nThe agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.", "url": "https://github.com/affaan-m/everything-claude-code", "_star_group": "ai_code"}, {"id": "star_SakanaAI_AI-Scientist-v2", "label": "AI-Scientist-v2", "full_name": "SakanaAI/AI-Scientist-v2", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 27.12436191605054, "font": {"size": 0}, "title": "SakanaAI/AI-Scientist-v2\n5473\u2605 \u00b7 Python\nThe AI Scientist-v2: Workshop-Level Automated Scientific Discovery via Agentic Tree Search", "url": "https://github.com/SakanaAI/AI-Scientist-v2", "_star_group": "misc"}, {"id": "star_Yeachan-Heo_oh-my-claudecode", "label": "oh-my-claudecode", "full_name": "Yeachan-Heo/oh-my-claudecode", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 28, "font": {"size": 0}, "title": "Yeachan-Heo/oh-my-claudecode\n28396\u2605 \u00b7 TypeScript\nTeams-first Multi-agent orchestration for Claude Code", "url": "https://github.com/Yeachan-Heo/oh-my-claudecode", "_star_group": "multi_agent"}, {"id": "star_hacksider_Deep-Live-Cam", "label": "Deep-Live-Cam", "full_name": "hacksider/Deep-Live-Cam", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 28, "font": {"size": 0}, "title": "hacksider/Deep-Live-Cam\n90153\u2605 \u00b7 Python\nreal time face swap and one-click video deepfake with only a single image", "url": "https://github.com/hacksider/Deep-Live-Cam", "_star_group": "dev_cli"}, {"id": "star_mvanhorn_last30days-skill", "label": "last30days-skill", "full_name": "mvanhorn/last30days-skill", "color": {"background": "#B6992D", "border": "#B6992D"}, "size": 28, "font": {"size": 0}, "title": "mvanhorn/last30days-skill\n21511\u2605 \u00b7 Python\nAI agent skill that researches any topic across Reddit, X, YouTube, HN, Polymarket, and the web - then synthesizes a grounded summary", "url": "https://github.com/mvanhorn/last30days-skill", "_star_group": "spellbook"}, {"id": "star_microsoft_VibeVoice", "label": "VibeVoice", "full_name": "microsoft/VibeVoice", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "microsoft/VibeVoice\n39256\u2605 \u00b7 Python\nOpen-Source Frontier Voice AI", "url": "https://github.com/microsoft/VibeVoice", "_star_group": "misc"}, {"id": "star_f_prompts_chat", "label": "prompts.chat", "full_name": "f/prompts.chat", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "f/prompts.chat\n159592\u2605 \u00b7 HTML\nf.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source \u2014 self-host for your organization with complete privacy.", "url": "https://github.com/f/prompts.chat", "_star_group": "llm_api"}, {"id": "star_openai_codex", "label": "codex", "full_name": "openai/codex", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "openai/codex\n75012\u2605 \u00b7 Rust\nLightweight coding agent that runs in your terminal", "url": "https://github.com/openai/codex", "_star_group": "llm_api"}, {"id": "star_luongnv89_claude-howto", "label": "claude-howto", "full_name": "luongnv89/claude-howto", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "luongnv89/claude-howto\n26033\u2605 \u00b7 Python\nA visual, example-driven guide to Claude Code \u2014 from basic concepts to advanced agents, with copy-paste templates that bring immediate value.", "url": "https://github.com/luongnv89/claude-howto", "_star_group": "ai_code"}, {"id": "star_joeynyc_hermes-hud", "label": "hermes-hud", "full_name": "joeynyc/hermes-hud", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 17.57952041488413, "font": {"size": 0}, "title": "joeynyc/hermes-hud\n463\u2605 \u00b7 Python\nTUI consciousness monitor for Hermes", "url": "https://github.com/joeynyc/hermes-hud", "_star_group": "dev_cli"}, {"id": "star_NousResearch_hermes-agent", "label": "hermes-agent", "full_name": "NousResearch/hermes-agent", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "NousResearch/hermes-agent\n76177\u2605 \u00b7 Python\nThe agent that grows with you", "url": "https://github.com/NousResearch/hermes-agent", "_star_group": "llm_api"}, {"id": "star_p-e-w_heretic", "label": "heretic", "full_name": "p-e-w/heretic", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "p-e-w/heretic\n19241\u2605 \u00b7 Python\nFully automatic censorship removal for language models", "url": "https://github.com/p-e-w/heretic", "_star_group": "misc"}, {"id": "star_philz1337x_clarity-upscaler", "label": "clarity-upscaler", "full_name": "philz1337x/clarity-upscaler", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 26.655049382422888, "font": {"size": 0}, "title": "philz1337x/clarity-upscaler\n5031\u2605 \u00b7 Python\nClarity AI | AI Image Upscaler & Enhancer - free and open-source Magnific Alternative", "url": "https://github.com/philz1337x/clarity-upscaler", "_star_group": "misc"}, {"id": "star_fluent_fluent-bit", "label": "fluent-bit", "full_name": "fluent/fluent-bit", "color": {"background": "#D55E00", "border": "#D55E00"}, "size": 28, "font": {"size": 0}, "title": "fluent/fluent-bit\n7782\u2605 \u00b7 C\nFast and Lightweight Logs, Metrics and Traces processor for Linux, BSD, OSX and Windows", "url": "https://github.com/fluent/fluent-bit", "_star_group": "observability"}, {"id": "star_GitHpriyanshu23_Clawde_Code", "label": "Clawde_Code", "full_name": "GitHpriyanshu23/Clawde_Code", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 15.259544962933521, "font": {"size": 0}, "title": "GitHpriyanshu23/Clawde_Code\n153\u2605 \u00b7 TypeScript\nClaude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and han", "url": "https://github.com/GitHpriyanshu23/Clawde_Code", "_star_group": "ai_code"}, {"id": "star_openinterpreter_open-interpreter", "label": "open-interpreter", "full_name": "openinterpreter/open-interpreter", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 28, "font": {"size": 0}, "title": "openinterpreter/open-interpreter\n63103\u2605 \u00b7 Python\nA natural language interface for computers", "url": "https://github.com/openinterpreter/open-interpreter", "_star_group": "misc"}, {"id": "star_gsd-build_get-shit-done", "label": "get-shit-done", "full_name": "gsd-build/get-shit-done", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "gsd-build/get-shit-done\n51950\u2605 \u00b7 JavaScript\nA light-weight and powerful meta-prompting, context engineering and spec-driven development system for Claude Code by T\u00c2CHES.", "url": "https://github.com/gsd-build/get-shit-done", "_star_group": "ai_code"}, {"id": "star_TauricResearch_TradingAgents", "label": "TradingAgents", "full_name": "TauricResearch/TradingAgents", "color": {"background": "#B07AA1", "border": "#B07AA1"}, "size": 28, "font": {"size": 0}, "title": "TauricResearch/TradingAgents\n50096\u2605 \u00b7 Python\nTradingAgents: Multi-Agents LLM Financial Trading Framework", "url": "https://github.com/TauricResearch/TradingAgents", "_star_group": "multi_agent"}, {"id": "star_savannah-i-g_ASHIGARU", "label": "ASHIGARU", "full_name": "savannah-i-g/ASHIGARU", "color": {"background": "#FFD700", "border": "#FFD700"}, "size": 13.512045466124189, "font": {"size": 0}, "title": "savannah-i-g/ASHIGARU\n45\u2605 \u00b7 JavaScript\nASHIGARU is a terminal-based interface & system powered by React & Ink that combines the power of modern web technologies with the efficiency of command-line interfaces. It feature", "url": "https://github.com/savannah-i-g/ASHIGARU", "_star_group": "dev_cli"}, {"id": "star_openclaw_openclaw", "label": "openclaw", "full_name": "openclaw/openclaw", "color": {"background": "#B6992D", "border": "#B6992D"}, "size": 28, "font": {"size": 0}, "title": "openclaw/openclaw\n356448\u2605 \u00b7 TypeScript\nYour own personal AI assistant. Any OS. Any Platform. The lobster way. \ud83e\udd9e ", "url": "https://github.com/openclaw/openclaw", "_star_group": "spellbook"}, {"id": "star_x1xhlol_system-prompts-and-models-of-ai-tools", "label": "system-prompts-and-models-of-ai-tools", "full_name": "x1xhlol/system-prompts-and-models-of-ai-tools", "color": {"background": "#F28E2B", "border": "#F28E2B"}, "size": 28, "font": {"size": 0}, "title": "x1xhlol/system-prompts-and-models-of-ai-tools\n135078\u2605 \u00b7 \u2014\nFULL Augment Code, Claude Code, Cluely, CodeBuddy, Comet, Cursor, Devin AI, Junie, Kiro, Leap.new, Lovable, Manus, NotionAI, Orchids.app, Perplexity, Poke, Qoder, Replit, Same.dev,", "url": "https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools", "_star_group": "ai_code"}, {"id": "star_huggingface_skills", "label": "skills", "full_name": "huggingface/skills", "color": {"background": "#D37295", "border": "#D37295"}, "size": 28, "font": {"size": 0}, "title": "huggingface/skills\n10168\u2605 \u00b7 Python\nGive your agents the power of the Hugging Face ecosystem", "url": "https://github.com/huggingface/skills", "_star_group": "data_ds"}, {"id": "star_anthropics_claude-code", "label": "claude-code", "full_name": "anthropics/claude-code", "color": {"background": "#4E79A7", "border": "#4E79A7"}, "size": 28, "font": {"size": 0}, "title": "anthropics/claude-code\n113436\u2605 \u00b7 Shell\nClaude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and han", "url": "https://github.com/anthropics/claude-code", "_star_group": "llm_api"}, {"id": "star_cloudflare_agents", "label": "agents", "full_name": "cloudflare/agents", "color": {"background": "#BAB0AC", "border": "#BAB0AC"}, "size": 26.333050745327466, "font": {"size": 0}, "title": "cloudflare/agents\n4742\u2605 \u00b7 TypeScript\nBuild and deploy AI Agents on Cloudflare ", "url": "https://github.com/cloudflare/agents", "_star_group": "misc"}];
const FALLBACK_EDGES = [{"from": "_github_stars_hub", "to": "star_Developer-Y_math-science-video-lectures"}, {"from": "_github_stars_hub", "to": "star_Zen4-bit_Proxima"}, {"from": "_github_stars_hub", "to": "star_MobAI-App_ios-builder"}, {"from": "_github_stars_hub", "to": "star_mvt-project_mvt"}, {"from": "_github_stars_hub", "to": "star_backnotprop_plannotator"}, {"from": "_github_stars_hub", "to": "star_danielmiessler_Personal_AI_Infrastructure"}, {"from": "_github_stars_hub", "to": "star_matevip_mateclaw"}, {"from": "_github_stars_hub", "to": "star_computer-vision-with-marco_yolo-training-template"}, {"from": "_github_stars_hub", "to": "star_Ibrahim-3d_orchestrator-supaconductor"}, {"from": "_github_stars_hub", "to": "star_Michaelliv_markit"}, {"from": "_github_stars_hub", "to": "star_kzaremski_apple-notes-exporter"}, {"from": "_github_stars_hub", "to": "star_davidliuk_graph-of-skills"}, {"from": "_github_stars_hub", "to": "star_nickarchuleta_First-repo"}, {"from": "_github_stars_hub", "to": "star_Crosstalk-Solutions_project-nomad"}, {"from": "_github_stars_hub", "to": "star_TapXWorld_ChinaTextbook"}, {"from": "_github_stars_hub", "to": "star_ahujasid_blender-mcp"}, {"from": "_github_stars_hub", "to": "star_anthropics_claude-cookbooks"}, {"from": "_github_stars_hub", "to": "star_snarktank_ralph"}, {"from": "_github_stars_hub", "to": "star_multica-ai_multica"}, {"from": "_github_stars_hub", "to": "star_thedotmack_claude-mem"}, {"from": "_github_stars_hub", "to": "star_agiresearch_WarAgent"}, {"from": "_github_stars_hub", "to": "star_Kruszoneq_macUSB"}, {"from": "_github_stars_hub", "to": "star_SprocketLab_slop-code-bench"}, {"from": "_github_stars_hub", "to": "star_barseghyanartur_app-menu"}, {"from": "_github_stars_hub", "to": "star_google-deepmind_gemma"}, {"from": "_github_stars_hub", "to": "star_open-compass_opencompass"}, {"from": "_github_stars_hub", "to": "star_openai_evals"}, {"from": "_github_stars_hub", "to": "star_varmabudharaju_pgsemantic"}, {"from": "_github_stars_hub", "to": "star_tavily-ai_tavily-mcp"}, {"from": "_github_stars_hub", "to": "star_travisvn_awesome-claude-skills"}, {"from": "_github_stars_hub", "to": "star_EnzeD_r3f-skills"}, {"from": "_github_stars_hub", "to": "star_andrivet_ADVobfuscator"}, {"from": "_github_stars_hub", "to": "star_Doc-Steve_dendritic-design-with-flake-parts"}, {"from": "_github_stars_hub", "to": "star_krzysztofzablocki_Inject"}, {"from": "_github_stars_hub", "to": "star_luongnv89_asm"}, {"from": "_github_stars_hub", "to": "star_timwuhaotian_the-pair"}, {"from": "_github_stars_hub", "to": "star_apache_jmeter"}, {"from": "_github_stars_hub", "to": "star_Robbyant_lingbot-world"}, {"from": "_github_stars_hub", "to": "star_dstackai_dstack"}, {"from": "_github_stars_hub", "to": "star_UW-Lab_UWLab"}, {"from": "_github_stars_hub", "to": "star_agentclientprotocol_agent-client-protocol"}, {"from": "_github_stars_hub", "to": "star_WeianMao_triattention"}, {"from": "_github_stars_hub", "to": "star_fabriziosalmi_caddy-waf"}, {"from": "_github_stars_hub", "to": "star_tonybanters_oxwm"}, {"from": "_github_stars_hub", "to": "star_dpaulat_supercell-wx"}, {"from": "_github_stars_hub", "to": "star_facebookresearch_vggt"}, {"from": "_github_stars_hub", "to": "star_juanma0511_Kknd_Root_Detector"}, {"from": "_github_stars_hub", "to": "star_plastic-labs_honcho"}, {"from": "_github_stars_hub", "to": "star_ghidraninja_game-boy-bitcoin-miner"}, {"from": "_github_stars_hub", "to": "star_opendatalab_MinerU-Diffusion"}, {"from": "_github_stars_hub", "to": "star_anthropics_skills"}, {"from": "_github_stars_hub", "to": "star_AgriciDaniel_claude-obsidian"}, {"from": "_github_stars_hub", "to": "star_MIT-SPARK_Hydra"}, {"from": "_github_stars_hub", "to": "star_datalab-to_chandra"}, {"from": "_github_stars_hub", "to": "star_stanfordnlp_dspy"}, {"from": "_github_stars_hub", "to": "star_piercelamb_deep-project"}, {"from": "_github_stars_hub", "to": "star_DearVa_Everywhere"}, {"from": "_github_stars_hub", "to": "star_mohammadasim98_scenetok"}, {"from": "_github_stars_hub", "to": "star_andreashappe_cochise"}, {"from": "_github_stars_hub", "to": "star_define-private-public_PSRayTracing"}, {"from": "_github_stars_hub", "to": "star_luoling8192_ai-coding-principles"}, {"from": "_github_stars_hub", "to": "star_tw93_Mole"}, {"from": "_github_stars_hub", "to": "star_paperswithbacktest_awesome-systematic-trading"}, {"from": "_github_stars_hub", "to": "star_yusufkaraaslan_Skill_Seekers"}, {"from": "_github_stars_hub", "to": "star_Blaizzy_mlx-audio-swift"}, {"from": "_github_stars_hub", "to": "star_hamen_material-3-skill"}, {"from": "_github_stars_hub", "to": "star_tensortrade-org_tensortrade"}, {"from": "_github_stars_hub", "to": "star_runesleo_polymarket-toolkit"}, {"from": "_github_stars_hub", "to": "star_HoangNguyen0403_agent-skills-standard"}, {"from": "_github_stars_hub", "to": "star_opensourcepos_opensourcepos"}, {"from": "_github_stars_hub", "to": "star_foryourhealth111-pixel_Vibe-Skills"}, {"from": "_github_stars_hub", "to": "star_mk6i_open-oscar-server"}, {"from": "_github_stars_hub", "to": "star_iamnotstatic_vibetime"}, {"from": "_github_stars_hub", "to": "star_manthrax_JSlug"}, {"from": "_github_stars_hub", "to": "star_magsther_awesome-opentelemetry"}, {"from": "_github_stars_hub", "to": "star_clowerweb_tts-studio"}, {"from": "_github_stars_hub", "to": "star_Nagi-ovo_gemini-voyager"}, {"from": "_github_stars_hub", "to": "star_EnableSecurity_wafw00f"}, {"from": "_github_stars_hub", "to": "star_nickarchuleta_graphify-viewer"}, {"from": "_github_stars_hub", "to": "star_HashWarlock_nobody-plans-for-pi"}, {"from": "_github_stars_hub", "to": "star_OctagonAI_kalshi-trading-bot-cli"}, {"from": "_github_stars_hub", "to": "star_jmilinovich_goal-md"}, {"from": "_github_stars_hub", "to": "star_OpenHands_software-agent-sdk"}, {"from": "_github_stars_hub", "to": "star_dylanebert_texel-splatting"}, {"from": "_github_stars_hub", "to": "star_AmazingAng_PolyWorld"}, {"from": "_github_stars_hub", "to": "star_nikmcfly_MiroFish-Offline"}, {"from": "_github_stars_hub", "to": "star_NousResearch_autonovel"}, {"from": "_github_stars_hub", "to": "star_repowise-dev_repowise"}, {"from": "_github_stars_hub", "to": "star_MuseumofModernArt_collection"}, {"from": "_github_stars_hub", "to": "star_steel-dev_steel-browser"}, {"from": "_github_stars_hub", "to": "star_parcadei_llm-tldr"}, {"from": "_github_stars_hub", "to": "star_google-gemini_gemini-cli"}, {"from": "_github_stars_hub", "to": "star_Leonxlnx_taste-skill"}, {"from": "_github_stars_hub", "to": "star_hummingbot_hummingbot"}, {"from": "_github_stars_hub", "to": "star_tradesdontlie_tradingview-mcp"}, {"from": "_github_stars_hub", "to": "star_gepa-ai_gepa"}, {"from": "_github_stars_hub", "to": "star_iptv-org_iptv"}, {"from": "_github_stars_hub", "to": "star_Roasbeef_obsidian-claude-code"}, {"from": "_github_stars_hub", "to": "star_AlexsJones_llmfit"}, {"from": "_github_stars_hub", "to": "star_Luo-Yihao_FaithC"}, {"from": "_github_stars_hub", "to": "star_tylfin_GeosPy"}, {"from": "_github_stars_hub", "to": "star_elder-plinius_G0DM0D3"}, {"from": "_github_stars_hub", "to": "star_memvid_memvid"}, {"from": "_github_stars_hub", "to": "star_ripienaar_free-for-dev"}, {"from": "_github_stars_hub", "to": "star_marcelscruz_public-apis"}, {"from": "_github_stars_hub", "to": "star_owntone_owntone-server"}, {"from": "_github_stars_hub", "to": "star_YishenTu_claudian"}, {"from": "_github_stars_hub", "to": "star_shiyu-coder_Kronos"}, {"from": "_github_stars_hub", "to": "star_coleam00_Archon"}, {"from": "_github_stars_hub", "to": "star_opendataloader-project_opendataloader-pdf"}, {"from": "_github_stars_hub", "to": "star_OpenBMB_VoxCPM"}, {"from": "_github_stars_hub", "to": "star_eyaltoledano_claude-task-master"}, {"from": "_github_stars_hub", "to": "star_jomjol_AI-on-the-edge-device"}, {"from": "_github_stars_hub", "to": "star_autoscrape-labs_pydoll"}, {"from": "_github_stars_hub", "to": "star_docling-project_docling"}, {"from": "_github_stars_hub", "to": "star_Skyvern-AI_skyvern"}, {"from": "_github_stars_hub", "to": "star_iii-hq_iii"}, {"from": "_github_stars_hub", "to": "star_mindverse_Second-Me"}, {"from": "_github_stars_hub", "to": "star_pedrohcgs_claude-code-my-workflow"}, {"from": "_github_stars_hub", "to": "star_antvis_chart-visualization-skills"}, {"from": "_github_stars_hub", "to": "star_nicedreamzapp_claude-code-local"}, {"from": "_github_stars_hub", "to": "star_vasturiano_globe_gl"}, {"from": "_github_stars_hub", "to": "star_xingpt88_Druckenmiller"}, {"from": "_github_stars_hub", "to": "star_shajen_sdr-hub"}, {"from": "_github_stars_hub", "to": "star_joe-shenouda_awesome-cyber-skills"}, {"from": "_github_stars_hub", "to": "star_awesome-ai-tools_curated-local-ai"}, {"from": "_github_stars_hub", "to": "star_awesome-ai-tools_curated-rag-tools"}, {"from": "_github_stars_hub", "to": "star_awesome-ai-tools_curated-llm-apis"}, {"from": "_github_stars_hub", "to": "star_awesome-ai-tools_curated-ai-prompts"}, {"from": "_github_stars_hub", "to": "star_awesome-ai-tools_curated-ai-image-video"}, {"from": "_github_stars_hub", "to": "star_awesome-ai-tools_curated-ai-coding-tools"}, {"from": "_github_stars_hub", "to": "star_awesome-ai-tools_curated-ai-agents"}, {"from": "_github_stars_hub", "to": "star_awesome-ai-tools_curated-ai-voice-tools"}, {"from": "_github_stars_hub", "to": "star_awesome-ai-tools_curated-ai-automation"}, {"from": "_github_stars_hub", "to": "star_awesome-ai-tools_curated-mcp-servers"}, {"from": "_github_stars_hub", "to": "star_casibase_casibase"}, {"from": "_github_stars_hub", "to": "star_trimstray_the-book-of-secret-knowledge"}, {"from": "_github_stars_hub", "to": "star_leoncuhk_awesome-quant-ai"}, {"from": "_github_stars_hub", "to": "star_vvonha_crypto-trading-tools"}, {"from": "_github_stars_hub", "to": "star_joaquinbejar_OrderBook-rs"}, {"from": "_github_stars_hub", "to": "star_e49nana_Algorithmic-trading"}, {"from": "_github_stars_hub", "to": "star_rv64m_autotrade"}, {"from": "_github_stars_hub", "to": "star_blankly-finance_blankly"}, {"from": "_github_stars_hub", "to": "star_QuantConnect_Lean"}, {"from": "_github_stars_hub", "to": "star_Open-Trader_opentrader"}, {"from": "_github_stars_hub", "to": "star_Superalgos_Superalgos"}, {"from": "_github_stars_hub", "to": "star_Drakkar-Software_OctoBot"}, {"from": "_github_stars_hub", "to": "star_freqtrade_freqtrade"}, {"from": "_github_stars_hub", "to": "star_0xemmkty_QuantMuse"}, {"from": "_github_stars_hub", "to": "star_HotCakeX_Harden-Windows-Security"}, {"from": "_github_stars_hub", "to": "star_Y-Research-SBU_QuantAgent"}, {"from": "_github_stars_hub", "to": "star_vibetrade-ai_vibe-trade"}, {"from": "_github_stars_hub", "to": "star_chrisworsey55_atlas-gic"}, {"from": "_github_stars_hub", "to": "star_Gajesh2007_ai-trading-agent"}, {"from": "_github_stars_hub", "to": "star_HKUDS_Vibe-Trading"}, {"from": "_github_stars_hub", "to": "star_romainsantoli-web_firm-protocol"}, {"from": "_github_stars_hub", "to": "star_evan-kolberg_prediction-market-backtesting"}, {"from": "_github_stars_hub", "to": "star_strongca22-cpu_gabagool"}, {"from": "_github_stars_hub", "to": "star_agent-next_polymarket-paper-trader"}, {"from": "_github_stars_hub", "to": "star_URLab-Sim_UnrealRoboticsLab"}, {"from": "_github_stars_hub", "to": "star_Claw-AI-Lab_Claw-AI-Lab"}, {"from": "_github_stars_hub", "to": "star_notpoiu_roblox-executor-mcp"}, {"from": "_github_stars_hub", "to": "star_theowni_Damn-Vulnerable-RESTaurant-API-Game"}, {"from": "_github_stars_hub", "to": "star_gongxings_kemeng-ai-anime-creation"}, {"from": "_github_stars_hub", "to": "star_renzorlive_vimmaster"}, {"from": "_github_stars_hub", "to": "star_git-learning-game_oh-my-git"}, {"from": "_github_stars_hub", "to": "star_tone-row_flowchart-fun"}, {"from": "_github_stars_hub", "to": "star_luanti-org_luanti"}, {"from": "_github_stars_hub", "to": "star_prettyirrelevant_guessx"}, {"from": "_github_stars_hub", "to": "star_RhysSullivan_executor"}, {"from": "_github_stars_hub", "to": "star_coleam00_ai-agents-masterclass"}, {"from": "_github_stars_hub", "to": "star_pipeshub-ai_pipeshub-ai"}, {"from": "_github_stars_hub", "to": "star_mozilla-ai_any-agent"}, {"from": "_github_stars_hub", "to": "star_buildermethods_agent-os"}, {"from": "_github_stars_hub", "to": "star_eastreams_loong"}, {"from": "_github_stars_hub", "to": "star_russelleNVy_three-man-team"}, {"from": "_github_stars_hub", "to": "star_appsfolder_livebridge"}, {"from": "_github_stars_hub", "to": "star_tom-doerr_zsh_codex"}, {"from": "_github_stars_hub", "to": "star_tom-doerr_awesome-dspy"}, {"from": "_github_stars_hub", "to": "star_snooppr_snoop"}, {"from": "_github_stars_hub", "to": "star_frangelbarrera_OSINT-BIBLE"}, {"from": "_github_stars_hub", "to": "star_Datalux_Osintgram"}, {"from": "_github_stars_hub", "to": "star_laramies_theHarvester"}, {"from": "_github_stars_hub", "to": "star_seekr-osint_seekr"}, {"from": "_github_stars_hub", "to": "star_smicallef_spiderfoot"}, {"from": "_github_stars_hub", "to": "star_lajosdeme_watchtower"}, {"from": "_github_stars_hub", "to": "star_pbogre_jetlog"}, {"from": "_github_stars_hub", "to": "star_chadi0x_TheBigBrother"}, {"from": "_github_stars_hub", "to": "star_BigBodyCobain_Shadowbroker"}, {"from": "_github_stars_hub", "to": "star_koala73_worldmonitor"}, {"from": "_github_stars_hub", "to": "star_NoblerWorks-HQ_IRONSIGHT"}, {"from": "_github_stars_hub", "to": "star_lukasHoel_video_to_world"}, {"from": "_github_stars_hub", "to": "star_mifi_ezshare"}, {"from": "_github_stars_hub", "to": "star_lunel-dev_lunel"}, {"from": "_github_stars_hub", "to": "star_will2025btc_buffett-perspective"}, {"from": "_github_stars_hub", "to": "star_chongdashu_vibejam-starter-pack"}, {"from": "_github_stars_hub", "to": "star_foru17_neko-master"}, {"from": "_github_stars_hub", "to": "star_maaslalani_sheets"}, {"from": "_github_stars_hub", "to": "star_JuliusBrussee_caveman"}, {"from": "_github_stars_hub", "to": "star_cporter202_agentic-ai-starters"}, {"from": "_github_stars_hub", "to": "star_ryoppippi_ccusage"}, {"from": "_github_stars_hub", "to": "star_openwrt-xiaomi_xmir-patcher"}, {"from": "_github_stars_hub", "to": "star_Keychron_Keychron-Keyboards-Hardware-Design"}, {"from": "_github_stars_hub", "to": "star_Luce-Org_luce-megakernel"}, {"from": "_github_stars_hub", "to": "star_cbdevnet_midimonster"}, {"from": "_github_stars_hub", "to": "star_zai-org_GLM-skills"}, {"from": "_github_stars_hub", "to": "star_matthartman_ghost-pepper"}, {"from": "_github_stars_hub", "to": "star_DevTechJr_turboquant-gpu"}, {"from": "_github_stars_hub", "to": "star_stephenleo_bmad-autonomous-development"}, {"from": "_github_stars_hub", "to": "star_ExTV_Podroid"}, {"from": "_github_stars_hub", "to": "star_Ligo-Biosciences_AlphaFold3"}, {"from": "_github_stars_hub", "to": "star_chrispyroberts_imc-prosperity-4"}, {"from": "_github_stars_hub", "to": "star_nasty-project_nasty"}, {"from": "_github_stars_hub", "to": "star_chrislgarry_Apollo-11"}, {"from": "_github_stars_hub", "to": "star_NousResearch_hermes-agent-self-evolution"}, {"from": "_github_stars_hub", "to": "star_newaetech_ChipShover"}, {"from": "_github_stars_hub", "to": "star_NousResearch_nomos"}, {"from": "_github_stars_hub", "to": "star_meshtastic_meshtastic"}, {"from": "_github_stars_hub", "to": "star_isaac-mason_crashcat"}, {"from": "_github_stars_hub", "to": "star_flarkflarkflark_STEMwerk-reaper"}, {"from": "_github_stars_hub", "to": "star_numman-ali_openskills"}, {"from": "_github_stars_hub", "to": "star_Matticusnicholas_KupkaProd-Cinema-Pipeline"}, {"from": "_github_stars_hub", "to": "star_labarba_sciwrite"}, {"from": "_github_stars_hub", "to": "star_storybookjs_addon-designs"}, {"from": "_github_stars_hub", "to": "star_math-ai-org_mathcode"}, {"from": "_github_stars_hub", "to": "star_wilsonfreitas_awesome-quant"}, {"from": "_github_stars_hub", "to": "star_The-FinAI_The-FinData"}, {"from": "_github_stars_hub", "to": "star_rongwang0824_Prepare-Data-for-Asset-Pricing-Projects"}, {"from": "_github_stars_hub", "to": "star_karlyndiary_Real-Estate-Price-Prediction"}, {"from": "_github_stars_hub", "to": "star_Findeton_real-state-10k"}, {"from": "_github_stars_hub", "to": "star_datasets_house-prices-global"}, {"from": "_github_stars_hub", "to": "star_luminati-io_Zoopla-dataset-samples"}, {"from": "_github_stars_hub", "to": "star_subashgandyer_datasets"}, {"from": "_github_stars_hub", "to": "star_martkir_crypto-prices-download"}, {"from": "_github_stars_hub", "to": "star_xFFFFF_Gekko-Datasets"}, {"from": "_github_stars_hub", "to": "star_sjdseu_Real-CATS"}, {"from": "_github_stars_hub", "to": "star_soheilrahsaz_cryptoNewsDataset"}, {"from": "_github_stars_hub", "to": "star_mouadja02_bitcoin-news-data"}, {"from": "_github_stars_hub", "to": "star_mouadja02_bitcoin-technical-indicators-dataset"}, {"from": "_github_stars_hub", "to": "star_HansjoergW_sec-fincancial-statement-data-set"}, {"from": "_github_stars_hub", "to": "star_sec-gov_python-for-dera-financial-datasets"}, {"from": "_github_stars_hub", "to": "star_Zdong104_FNSPID_Financial_News_Dataset"}, {"from": "_github_stars_hub", "to": "star_virattt_financial-datasets"}, {"from": "_github_stars_hub", "to": "star_financial-datasets_web-crawler"}, {"from": "_github_stars_hub", "to": "star_financial-datasets_mcp-server"}, {"from": "_github_stars_hub", "to": "star_yumoxu_stocknet-dataset"}, {"from": "_github_stars_hub", "to": "star_datasets_s-and-p-500"}, {"from": "_github_stars_hub", "to": "star_JerBouma_FinanceDatabase"}, {"from": "_github_stars_hub", "to": "star_ChrisWiles_claude-code-showcase"}, {"from": "_github_stars_hub", "to": "star_5bhuv4n35h_pentestmindmap"}, {"from": "_github_stars_hub", "to": "star_playcanvas_model-viewer"}, {"from": "_github_stars_hub", "to": "star_goharbor_harbor"}, {"from": "_github_stars_hub", "to": "star_virattt_ai-hedge-fund"}, {"from": "_github_stars_hub", "to": "star_newton-physics_newton"}, {"from": "_github_stars_hub", "to": "star_statice_awesome-synthetic-data"}, {"from": "_github_stars_hub", "to": "star_noworneverev_Awesome-RAG"}, {"from": "_github_stars_hub", "to": "star_caramaschiHG_awesome-ai-agents-2026"}, {"from": "_github_stars_hub", "to": "star_EthicalML_awesome-production-machine-learning"}, {"from": "_github_stars_hub", "to": "star_jdorfman_awesome-json-datasets"}, {"from": "_github_stars_hub", "to": "star_krzjoa_awesome-python-data-science"}, {"from": "_github_stars_hub", "to": "star_geniusrise_awesome-healthcare-datasets"}, {"from": "_github_stars_hub", "to": "star_openmedlab_Awesome-Medical-Dataset"}, {"from": "_github_stars_hub", "to": "star_jonathanwvd_awesome-industrial-datasets"}, {"from": "_github_stars_hub", "to": "star_bytewax_awesome-public-real-time-datasets"}, {"from": "_github_stars_hub", "to": "star_ComposioHQ_awesome-claude-plugins"}, {"from": "_github_stars_hub", "to": "star_pixijs_pixijs"}, {"from": "_github_stars_hub", "to": "star_coree_awesome-rag"}, {"from": "_github_stars_hub", "to": "star_josephmisiti_awesome-machine-learning"}, {"from": "_github_stars_hub", "to": "star_academic_awesome-datascience"}, {"from": "_github_stars_hub", "to": "star_e2b-dev_awesome-ai-agents"}, {"from": "_github_stars_hub", "to": "star_awesome-selfhosted_awesome-selfhosted"}, {"from": "_github_stars_hub", "to": "star_andrew_ultimate-awesome"}, {"from": "_github_stars_hub", "to": "star_Vesely_skills"}, {"from": "_github_stars_hub", "to": "star_AssetRipper_AssetRipper"}, {"from": "_github_stars_hub", "to": "star_simonw_datasette"}, {"from": "_github_stars_hub", "to": "star_jbrownlee_Datasets"}, {"from": "_github_stars_hub", "to": "star_tensorflow_datasets"}, {"from": "_github_stars_hub", "to": "star_huggingface_datasets"}, {"from": "_github_stars_hub", "to": "star_awesomedata_awesome-public-datasets"}, {"from": "_github_stars_hub", "to": "star_openimages_dataset"}, {"from": "_github_stars_hub", "to": "star_Jon-Becker_prediction-market-analysis"}, {"from": "_github_stars_hub", "to": "star_fastly_fastly-agent-toolkit"}, {"from": "_github_stars_hub", "to": "star_meshtastic_firmware"}, {"from": "_github_stars_hub", "to": "star_vudovn_antigravity-kit"}, {"from": "_github_stars_hub", "to": "star_hjdhjd_homebridge-unifi-protect"}, {"from": "_github_stars_hub", "to": "star_Yuyz0112_claude-code-reverse"}, {"from": "_github_stars_hub", "to": "star_missuo_mailclaw"}, {"from": "_github_stars_hub", "to": "star_oxda_usb-cereal"}, {"from": "_github_stars_hub", "to": "star_bbepis_XUnity_AutoTranslator"}, {"from": "_github_stars_hub", "to": "star_kulunkilabs_vibenetbackup"}, {"from": "_github_stars_hub", "to": "star_santifer_career-ops"}, {"from": "_github_stars_hub", "to": "star_Lu3ky13_Search-for-all-leaked-keys-secrets-using-one-regex-"}, {"from": "_github_stars_hub", "to": "star_briatte_awesome-network-analysis"}, {"from": "_github_stars_hub", "to": "star_JanDitzen_comtrade"}, {"from": "_github_stars_hub", "to": "star_ravila4_claude-adhd-skills"}, {"from": "_github_stars_hub", "to": "star_kuleshov_teaching-material"}, {"from": "_github_stars_hub", "to": "star_personalrobotics_OpenChisel"}, {"from": "_github_stars_hub", "to": "star_quemsah_awesome-claude-plugins"}, {"from": "_github_stars_hub", "to": "star_Houseofmvps_codesight"}, {"from": "_github_stars_hub", "to": "star_microsoft_markitdown"}, {"from": "_github_stars_hub", "to": "star_yaph_tts-samples"}, {"from": "_github_stars_hub", "to": "star_k06a_macpow"}, {"from": "_github_stars_hub", "to": "star_vultuk_whatsapp-translator"}, {"from": "_github_stars_hub", "to": "star_NVlabs_FastGen"}, {"from": "_github_stars_hub", "to": "star_ClosedXML_ClosedXML_Report"}, {"from": "_github_stars_hub", "to": "star_crowded-street_3s-decomp"}, {"from": "_github_stars_hub", "to": "star_itigges22_ATLAS"}, {"from": "_github_stars_hub", "to": "star_Nako0_devglobe-extension"}, {"from": "_github_stars_hub", "to": "star_brendanhogan_loophole"}, {"from": "_github_stars_hub", "to": "star_mattmireles_gemma-tuner-multimodal"}, {"from": "_github_stars_hub", "to": "star_jackwener_OpenCLI"}, {"from": "_github_stars_hub", "to": "star_ysharma3501_LuxTTS"}, {"from": "_github_stars_hub", "to": "star_IAmTomShaw_f1-race-replay"}, {"from": "_github_stars_hub", "to": "star_collaborator-ai_collab-public"}, {"from": "_github_stars_hub", "to": "star_HKUDS_LightRAG"}, {"from": "_github_stars_hub", "to": "star_browser-use_browser-use"}, {"from": "_github_stars_hub", "to": "star_shanraisshan_claude-code-best-practice"}, {"from": "_github_stars_hub", "to": "star_public-apis_public-apis"}, {"from": "_github_stars_hub", "to": "star_codecrafters-io_build-your-own-x"}, {"from": "_github_stars_hub", "to": "star_sindresorhus_awesome"}, {"from": "_github_stars_hub", "to": "star_markondej_fm_transmitter"}, {"from": "_github_stars_hub", "to": "star_primaprashant_awesome-voice-typing"}, {"from": "_github_stars_hub", "to": "star_triplea-game_triplea"}, {"from": "_github_stars_hub", "to": "star_databricks_terraform-databricks-sra"}, {"from": "_github_stars_hub", "to": "star_LucasDuys_forge"}, {"from": "_github_stars_hub", "to": "star_bytedance_trae-agent"}, {"from": "_github_stars_hub", "to": "star_noahbaxter_chartchotic"}, {"from": "_github_stars_hub", "to": "star_wilpel_caveman-compression"}, {"from": "_github_stars_hub", "to": "star_mtolly_onyx"}, {"from": "_github_stars_hub", "to": "star_pad3r_pad3r-public"}, {"from": "_github_stars_hub", "to": "star_yanqinJiang_Animate3D"}, {"from": "_github_stars_hub", "to": "star_adamlyttleapps_claude-skill-app-onboarding-questionnaire"}, {"from": "_github_stars_hub", "to": "star_bee-san_pyWhat"}, {"from": "_github_stars_hub", "to": "star_iv-org_smart-ipv6-rotator"}, {"from": "_github_stars_hub", "to": "star_Castien_Toshokanime-backend"}, {"from": "_github_stars_hub", "to": "star_omeedcs_vibetracer"}, {"from": "_github_stars_hub", "to": "star_geerlingguy_pi-cluster"}, {"from": "_github_stars_hub", "to": "star_RecapAI_Recap"}, {"from": "_github_stars_hub", "to": "star_SharKingStudios_Fracture"}, {"from": "_github_stars_hub", "to": "star_final-run_finalrun-agent"}, {"from": "_github_stars_hub", "to": "star_JustGoscha_ray-tracing-audio"}, {"from": "_github_stars_hub", "to": "star_tw93_Waza"}, {"from": "_github_stars_hub", "to": "star_safishamsi_graphify"}, {"from": "_github_stars_hub", "to": "star_onmyway133_ccview"}, {"from": "_github_stars_hub", "to": "star_Kuberwastaken_claurst"}, {"from": "_github_stars_hub", "to": "star_cporter202_agentic-ai-apis"}, {"from": "_github_stars_hub", "to": "star_whoami-wiki_whoami"}, {"from": "_github_stars_hub", "to": "star_danneauxs_Pocket-TTS-Spokenword"}, {"from": "_github_stars_hub", "to": "star_chainfeeds_RSSAggregatorforWeb3"}, {"from": "_github_stars_hub", "to": "star_keplergl_kepler_gl"}, {"from": "_github_stars_hub", "to": "star_vuer-ai_vuer"}, {"from": "_github_stars_hub", "to": "star_nesquena_hermes-webui"}, {"from": "_github_stars_hub", "to": "star_GarethManning_claude-education-skills"}, {"from": "_github_stars_hub", "to": "star_hoodini_whatsapp-public-logan"}, {"from": "_github_stars_hub", "to": "star_standardebooks_web"}, {"from": "_github_stars_hub", "to": "star_EbookFoundation_free-programming-books"}, {"from": "_github_stars_hub", "to": "star_dbooksorg_Free-Books"}, {"from": "_github_stars_hub", "to": "star_michael-elkabetz_bgagents"}, {"from": "_github_stars_hub", "to": "star_PredicateSystems_account-payable-multi-ai-agent-demo"}, {"from": "_github_stars_hub", "to": "star_msitarzewski_AGENT-ZERO"}, {"from": "_github_stars_hub", "to": "star_wbnns_crypto-ecosystems"}, {"from": "_github_stars_hub", "to": "star_aiming-lab_MetaClaw"}, {"from": "_github_stars_hub", "to": "star_0xble_notion-cli"}, {"from": "_github_stars_hub", "to": "star_0xble_sentry-cli"}, {"from": "_github_stars_hub", "to": "star_steipete_spogo"}, {"from": "_github_stars_hub", "to": "star_steipete_goplaces"}, {"from": "_github_stars_hub", "to": "star_steipete_sonoscli"}, {"from": "_github_stars_hub", "to": "star_steipete_sag"}, {"from": "_github_stars_hub", "to": "star_steipete_discrawl"}, {"from": "_github_stars_hub", "to": "star_steipete_RepoBar"}, {"from": "_github_stars_hub", "to": "star_steipete_gogcli"}, {"from": "_github_stars_hub", "to": "star_amantus-ai_vibetunnel"}, {"from": "_github_stars_hub", "to": "star_steipete_Matcha"}, {"from": "_github_stars_hub", "to": "star_steipete_ordercli"}, {"from": "_github_stars_hub", "to": "star_steipete_CodeLooper"}, {"from": "_github_stars_hub", "to": "star_steipete_sweetlink"}, {"from": "_github_stars_hub", "to": "star_steipete_gifgrep"}, {"from": "_github_stars_hub", "to": "star_steipete_ElevenLabsKit"}, {"from": "_github_stars_hub", "to": "star_steipete_AXorcist"}, {"from": "_github_stars_hub", "to": "star_steipete_VibeMeter"}, {"from": "_github_stars_hub", "to": "star_steipete_wacli"}, {"from": "_github_stars_hub", "to": "star_steipete_oracle"}, {"from": "_github_stars_hub", "to": "star_steipete_Aspects"}, {"from": "_github_stars_hub", "to": "star_steipete_agent-rules"}, {"from": "_github_stars_hub", "to": "star_steipete_mcporter"}, {"from": "_github_stars_hub", "to": "star_steipete_birdclaw"}, {"from": "_github_stars_hub", "to": "star_steipete_summarize"}, {"from": "_github_stars_hub", "to": "star_steipete_CodexBar"}, {"from": "_github_stars_hub", "to": "star_steipete_Peekaboo"}, {"from": "_github_stars_hub", "to": "star_cloudflare_moltworker"}, {"from": "_github_stars_hub", "to": "star_getsentry_warden"}, {"from": "_github_stars_hub", "to": "star_cloudflare_kumo"}, {"from": "_github_stars_hub", "to": "star_vercel-labs_portless"}, {"from": "_github_stars_hub", "to": "star_lochie_web-haptics"}, {"from": "_github_stars_hub", "to": "star_googleworkspace_cli"}, {"from": "_github_stars_hub", "to": "star_BloopAI_vibe-kanban"}, {"from": "_github_stars_hub", "to": "star_millionco_expect"}, {"from": "_github_stars_hub", "to": "star_slavingia_skills"}, {"from": "_github_stars_hub", "to": "star_Arthur-Ficial_apfel"}, {"from": "_github_stars_hub", "to": "star_VoltAgent_awesome-design-md"}, {"from": "_github_stars_hub", "to": "star_addyosmani_agent-skills"}, {"from": "_github_stars_hub", "to": "star_louislam_uptime-kuma"}, {"from": "_github_stars_hub", "to": "star_Roblox_FlashTex"}, {"from": "_github_stars_hub", "to": "star_lllyasviel_PaintingLight"}, {"from": "_github_stars_hub", "to": "star_lllyasviel_DanbooRegion"}, {"from": "_github_stars_hub", "to": "star_lllyasviel_style2paints"}, {"from": "_github_stars_hub", "to": "star_lllyasviel_Omost"}, {"from": "_github_stars_hub", "to": "star_lllyasviel_Paints-UNDO"}, {"from": "_github_stars_hub", "to": "star_lllyasviel_VCC-experiments"}, {"from": "_github_stars_hub", "to": "star_lllyasviel_VCC"}, {"from": "_github_stars_hub", "to": "star_imneckro_emulatorjs"}, {"from": "_github_stars_hub", "to": "star_levelsio_xdr-boost"}, {"from": "_github_stars_hub", "to": "star_vinta_awesome-python"}, {"from": "_github_stars_hub", "to": "star_levelsio_awesome-remote-job"}, {"from": "_github_stars_hub", "to": "star_MichaelSebsbe_FlyPieter"}, {"from": "_github_stars_hub", "to": "star_everettjf_liney"}, {"from": "_github_stars_hub", "to": "star_Vector-Wangel_XLeRobot"}, {"from": "_github_stars_hub", "to": "star_SteamClientHomebrew_Installer"}, {"from": "_github_stars_hub", "to": "star_sandroandric_AgentHandover"}, {"from": "_github_stars_hub", "to": "star_NVIDIA_DreamDojo"}, {"from": "_github_stars_hub", "to": "star_Accoil_product-tracking-skills"}, {"from": "_github_stars_hub", "to": "star_WICG_html-in-canvas"}, {"from": "_github_stars_hub", "to": "star_atilaahmettaner_tradingview-mcp"}, {"from": "_github_stars_hub", "to": "star_Anil-matcha_Open-Generative-AI"}, {"from": "_github_stars_hub", "to": "star_jpcima_ADLplug"}, {"from": "_github_stars_hub", "to": "star_qodo-ai_qodo-skills"}, {"from": "_github_stars_hub", "to": "star_HKUDS_CatchMe"}, {"from": "_github_stars_hub", "to": "star_RobotBase_Q1-nano"}, {"from": "_github_stars_hub", "to": "star_utahmobl_opencap-monocular"}, {"from": "_github_stars_hub", "to": "star_onllm-dev_4DPocket"}, {"from": "_github_stars_hub", "to": "star_eudk_awesome-ai-tools"}, {"from": "_github_stars_hub", "to": "star_AnjieCheng_CanonicalVAE"}, {"from": "_github_stars_hub", "to": "star_ranaroussi_yfinance"}, {"from": "_github_stars_hub", "to": "star_christian-byrne_audio-separation-nodes-comfyui"}, {"from": "_github_stars_hub", "to": "star_elie222_inbox-zero"}, {"from": "_github_stars_hub", "to": "star_leonardomso_33-js-concepts"}, {"from": "_github_stars_hub", "to": "star_gtsteffaniak_filebrowser"}, {"from": "_github_stars_hub", "to": "star_homanp_infinite-monitor"}, {"from": "_github_stars_hub", "to": "star_jrouwe_JoltPhysics"}, {"from": "_github_stars_hub", "to": "star_njbrake_agent-of-empires"}, {"from": "_github_stars_hub", "to": "star_LalitMaganti_syntaqlite"}, {"from": "_github_stars_hub", "to": "star_karpathy_llama2_c"}, {"from": "_github_stars_hub", "to": "star_moritzWa_cronus"}, {"from": "_github_stars_hub", "to": "star_robinebers_openusage"}, {"from": "_github_stars_hub", "to": "star_MemPalace_mempalace"}, {"from": "_github_stars_hub", "to": "star_theonlyhennygod_zeroclaw"}, {"from": "_github_stars_hub", "to": "star_SvenGDK_RetroMultiTools"}, {"from": "_github_stars_hub", "to": "star_operational-co_operational_co"}, {"from": "_github_stars_hub", "to": "star_sooryathejas_METATRON"}, {"from": "_github_stars_hub", "to": "star_nauvalazhar_build-your-own-ai-coding-agent"}, {"from": "_github_stars_hub", "to": "star_EnidPinxit_awesome-openclaw-agents"}, {"from": "_github_stars_hub", "to": "star_cedarconnor_SPAG4d"}, {"from": "_github_stars_hub", "to": "star_pydantic_genai-prices"}, {"from": "_github_stars_hub", "to": "star_sanchomuzax_hermes-webui"}, {"from": "_github_stars_hub", "to": "star_wxtsky_CodeIsland"}, {"from": "_github_stars_hub", "to": "star_pansalasamarth_System-Design-LLD"}, {"from": "_github_stars_hub", "to": "star_openai_parameter-golf"}, {"from": "_github_stars_hub", "to": "star_m8e_graphify"}, {"from": "_github_stars_hub", "to": "star_rtitmuss_torn"}, {"from": "_github_stars_hub", "to": "star_dominikmartn_nothing-design-skill"}, {"from": "_github_stars_hub", "to": "star_duo121_termhub"}, {"from": "_github_stars_hub", "to": "star_aloshdenny_reverse-SynthID"}, {"from": "_github_stars_hub", "to": "star_juliensimon_ocel-generator"}, {"from": "_github_stars_hub", "to": "star_MuseumofModernArt_exhibitions"}, {"from": "_github_stars_hub", "to": "star_fayerman-source_startup-growth-playbook"}, {"from": "_github_stars_hub", "to": "star_a-makelky_write-better-x-articles"}, {"from": "_github_stars_hub", "to": "star_mskayyali_deep-research-test"}, {"from": "_github_stars_hub", "to": "star_ymx10086_ResearchClaw"}, {"from": "_github_stars_hub", "to": "star_jeasonstudio_chrome-ai"}, {"from": "_github_stars_hub", "to": "star_project-vera_vera"}, {"from": "_github_stars_hub", "to": "star_mnfst_awesome-free-llm-apis"}, {"from": "_github_stars_hub", "to": "star_pbakaus_impeccable"}, {"from": "_github_stars_hub", "to": "star_alibaba_page-agent"}, {"from": "_github_stars_hub", "to": "star_nvim-treesitter_nvim-treesitter"}, {"from": "_github_stars_hub", "to": "star_tailcallhq_forgecode"}, {"from": "_github_stars_hub", "to": "star_HKUDS_DeepTutor"}, {"from": "_github_stars_hub", "to": "star_TheCraigHewitt_seomachine"}, {"from": "_github_stars_hub", "to": "star_elebumm_RedditVideoMakerBot"}, {"from": "_github_stars_hub", "to": "star_forrestchang_andrej-karpathy-skills"}, {"from": "_github_stars_hub", "to": "star_tobi_qmd"}, {"from": "_github_stars_hub", "to": "star_NVIDIA_personaplex"}, {"from": "_github_stars_hub", "to": "star_zubair-trabzada_ai-sales-team-claude"}, {"from": "_github_stars_hub", "to": "star_FujiwaraChoki_MoneyPrinterV2"}, {"from": "_github_stars_hub", "to": "star_mattpocock_skills"}, {"from": "_github_stars_hub", "to": "star_asgeirtj_system_prompts_leaks"}, {"from": "_github_stars_hub", "to": "star_roboflow_supervision"}, {"from": "_github_stars_hub", "to": "star_vas3k_TaxHacker"}, {"from": "_github_stars_hub", "to": "star_sherlock-project_sherlock"}, {"from": "_github_stars_hub", "to": "star_dmtrKovalenko_fff_nvim"}, {"from": "_github_stars_hub", "to": "star_freeCodeCamp_freeCodeCamp"}, {"from": "_github_stars_hub", "to": "star_telegramdesktop_tdesktop"}, {"from": "_github_stars_hub", "to": "star_google-ai-edge_LiteRT-LM"}, {"from": "_github_stars_hub", "to": "star_badlogic_pi-mono"}, {"from": "_github_stars_hub", "to": "star_aaif-goose_goose"}, {"from": "_github_stars_hub", "to": "star_siddharthvaddem_openscreen"}, {"from": "_github_stars_hub", "to": "star_google-ai-edge_gallery"}, {"from": "_github_stars_hub", "to": "star_Developer-Y_cs-video-courses"}, {"from": "_github_stars_hub", "to": "star_vixhal-baraiya_microgpt-c"}, {"from": "_github_stars_hub", "to": "star_peth-eth_agent-ready-by-sero"}, {"from": "_github_stars_hub", "to": "star_abhigyanpatwari_GitNexus"}, {"from": "_github_stars_hub", "to": "star_NVIDIA-NeMo_DataDesigner"}, {"from": "_github_stars_hub", "to": "star_HKUDS_ClawWork"}, {"from": "_github_stars_hub", "to": "star_unitedbyai_droidclaw"}, {"from": "_github_stars_hub", "to": "star_openhome-dev_abilities"}, {"from": "_github_stars_hub", "to": "star_marshallrichards_ClawPhone"}, {"from": "_github_stars_hub", "to": "star_sebastianvkl_pizero-openclaw"}, {"from": "_github_stars_hub", "to": "star_KeygraphHQ_shannon"}, {"from": "_github_stars_hub", "to": "star_feremabraz_bloomberg-terminal"}, {"from": "_github_stars_hub", "to": "star_The-Vibe-Company_companion"}, {"from": "_github_stars_hub", "to": "star_Shubhamsaboo_awesome-llm-apps"}, {"from": "_github_stars_hub", "to": "star_unchartedsoftware_torflow"}, {"from": "_github_stars_hub", "to": "star_h9zdev_GeoSentinel"}, {"from": "_github_stars_hub", "to": "star_VictoriaMetrics_VictoriaLogs"}, {"from": "_github_stars_hub", "to": "star_VoltAgent_awesome-agent-skills"}, {"from": "_github_stars_hub", "to": "star_wisupai_e2m"}, {"from": "_github_stars_hub", "to": "star_dvdsgl_claude-canvas"}, {"from": "_github_stars_hub", "to": "star_anthropics_claude-quickstarts"}, {"from": "_github_stars_hub", "to": "star_mickasmt_next-saas-stripe-starter"}, {"from": "_github_stars_hub", "to": "star_Dimillian_CodexMonitor"}, {"from": "_github_stars_hub", "to": "star_arifszn_gitprofile"}, {"from": "_github_stars_hub", "to": "star_MemoriLabs_Memori"}, {"from": "_github_stars_hub", "to": "star_Scrut1ny_GrapheneOS-Guide"}, {"from": "_github_stars_hub", "to": "star_punkpeye_awesome-mcp-servers"}, {"from": "_github_stars_hub", "to": "star_jamiepine_voicebox"}, {"from": "_github_stars_hub", "to": "star_ALucek_agentic-memory"}, {"from": "_github_stars_hub", "to": "star_sbilly_awesome-security"}, {"from": "_github_stars_hub", "to": "star_agenticnotetaking_arscontexta"}, {"from": "_github_stars_hub", "to": "star_louisho5_picobot"}, {"from": "_github_stars_hub", "to": "star_arpanghosh8453_open-dronelog"}, {"from": "_github_stars_hub", "to": "star_ffplayout_ffplayout"}, {"from": "_github_stars_hub", "to": "star_luchina-gabriel_OSX-PROXMOX"}, {"from": "_github_stars_hub", "to": "star_PKRoma_ProcessHacker"}, {"from": "_github_stars_hub", "to": "star_TEN-framework_ten-framework"}, {"from": "_github_stars_hub", "to": "star_pmxt-dev_pmxt"}, {"from": "_github_stars_hub", "to": "star_nickarchuleta_VisionClaw---Audio-focus"}, {"from": "_github_stars_hub", "to": "star_Intent-Lab_VisionClaw"}, {"from": "_github_stars_hub", "to": "star_manaflow-ai_cmux"}, {"from": "_github_stars_hub", "to": "star_OpenBB-finance_OpenBB"}, {"from": "_github_stars_hub", "to": "star_Prograda_Skybolt"}, {"from": "_github_stars_hub", "to": "star_zerowand01_markplane"}, {"from": "_github_stars_hub", "to": "star_prajwal-y_video_explainer"}, {"from": "_github_stars_hub", "to": "star_phiat_claude-esp"}, {"from": "_github_stars_hub", "to": "star_CasberryIndia_Physics-Notebook"}, {"from": "_github_stars_hub", "to": "star_ssrajadh_sentrysearch"}, {"from": "_github_stars_hub", "to": "star_primeline-ai_claude-tmux-orchestration"}, {"from": "_github_stars_hub", "to": "star_paoloanzn_free-code"}, {"from": "_github_stars_hub", "to": "star_decolua_9router"}, {"from": "_github_stars_hub", "to": "star_torvalds_linux"}, {"from": "_github_stars_hub", "to": "star_ARahim3_mlx-tune"}, {"from": "_github_stars_hub", "to": "star_jelly-ssh_jelly-ssh"}, {"from": "_github_stars_hub", "to": "star_permissionlesstech_bitchat"}, {"from": "_github_stars_hub", "to": "star_dabiggm0e_autoresearch-opencode"}, {"from": "_github_stars_hub", "to": "star_dweymouth_supersonic"}, {"from": "_github_stars_hub", "to": "star_Epistates_treemd"}, {"from": "_github_stars_hub", "to": "star_useautumn_autumn"}, {"from": "_github_stars_hub", "to": "star_wonjongg_instant-mesh-intersection-repair"}, {"from": "_github_stars_hub", "to": "star_lux-org_lux"}, {"from": "_github_stars_hub", "to": "star_stvlynn_skills"}, {"from": "_github_stars_hub", "to": "star_rt-bishop_Look4Sat"}, {"from": "_github_stars_hub", "to": "star_leo-lilinxiao_codex-autoresearch"}, {"from": "_github_stars_hub", "to": "star_ehrlich-b_wingthing"}, {"from": "_github_stars_hub", "to": "star_zenc-lang_zenc"}, {"from": "_github_stars_hub", "to": "star_humanlayer_12-factor-agents"}, {"from": "_github_stars_hub", "to": "star_philippemerle_KubeDiagrams"}, {"from": "_github_stars_hub", "to": "star_karpathy_micrograd"}, {"from": "_github_stars_hub", "to": "star_karpathy_llm_c"}, {"from": "_github_stars_hub", "to": "star_karpathy_nanochat"}, {"from": "_github_stars_hub", "to": "star_karpathy_nanoGPT"}, {"from": "_github_stars_hub", "to": "star_trevin-creator_autoresearch-mlx"}, {"from": "_github_stars_hub", "to": "star_ml-explore_mlx-swift"}, {"from": "_github_stars_hub", "to": "star_Blaizzy_mlx-vlm"}, {"from": "_github_stars_hub", "to": "star_Blaizzy_mlx-audio"}, {"from": "_github_stars_hub", "to": "star_ml-explore_mlx-lm"}, {"from": "_github_stars_hub", "to": "star_ml-explore_mlx"}, {"from": "_github_stars_hub", "to": "star_karpathy_autoresearch"}, {"from": "_github_stars_hub", "to": "star_jaechang-hits_SciAgent-Skills"}, {"from": "_github_stars_hub", "to": "star_clemcer_LoggiFly"}, {"from": "_github_stars_hub", "to": "star_ishtms_learn-nodejs-hard-way"}, {"from": "_github_stars_hub", "to": "star_sgoudelis_ground-station"}, {"from": "_github_stars_hub", "to": "star_CoderLuii_HolyClaude"}, {"from": "_github_stars_hub", "to": "star_SharpAI_SwiftLM"}, {"from": "_github_stars_hub", "to": "star_onyx-dot-app_onyx"}, {"from": "_github_stars_hub", "to": "star_langchain-ai_deepagents"}, {"from": "_github_stars_hub", "to": "star_microsoft_BitNet"}, {"from": "_github_stars_hub", "to": "star_promptfoo_promptfoo"}, {"from": "_github_stars_hub", "to": "star_moeru-ai_airi"}, {"from": "_github_stars_hub", "to": "star_pascalorg_editor"}, {"from": "_github_stars_hub", "to": "star_bytedance_deer-flow"}, {"from": "_github_stars_hub", "to": "star_axios_axios"}, {"from": "_github_stars_hub", "to": "star_zai-org_GLM-OCR"}, {"from": "_github_stars_hub", "to": "star_google-research_timesfm"}, {"from": "_github_stars_hub", "to": "star_Yeachan-Heo_oh-my-codex"}, {"from": "_github_stars_hub", "to": "star_msitarzewski_agency-agents"}, {"from": "_github_stars_hub", "to": "star_Gen-Verse_LatentMAS"}, {"from": "_github_stars_hub", "to": "star_ambarish-3012_technical-writeup-assistant"}, {"from": "_github_stars_hub", "to": "star_unmta_emailmd"}, {"from": "_github_stars_hub", "to": "star_rustyrussell_million-channels-project"}, {"from": "_github_stars_hub", "to": "star_ericboy0224_learn-docker-and-k8s"}, {"from": "_github_stars_hub", "to": "star_kepano_obsidian-skills"}, {"from": "_github_stars_hub", "to": "star_jwhelland_bevyearth"}, {"from": "_github_stars_hub", "to": "star_javabuddy_best-system-design-resources"}, {"from": "_github_stars_hub", "to": "star_flipbit03_terminal-use"}, {"from": "_github_stars_hub", "to": "star_Tencent-Hunyuan_Hunyuan3D-2_1"}, {"from": "_github_stars_hub", "to": "star_mmalmi_nostr-vpn"}, {"from": "_github_stars_hub", "to": "star_pierotofy_OpenSplat"}, {"from": "_github_stars_hub", "to": "star_BuilderIO_agent-native"}, {"from": "_github_stars_hub", "to": "star_Yambr_open-computer-use"}, {"from": "_github_stars_hub", "to": "star_alibaba-flyai_flyai-skill"}, {"from": "_github_stars_hub", "to": "star_Lionel-Lim_asciimap"}, {"from": "_github_stars_hub", "to": "star_imorte_passport-index-data"}, {"from": "_github_stars_hub", "to": "star_Data-Science-Community-SRM_Algorithms-for-Programming"}, {"from": "_github_stars_hub", "to": "star_hkdb_aerion"}, {"from": "_github_stars_hub", "to": "star_WhiskeyCoder_Qwen3-Audiobook-Converter"}, {"from": "_github_stars_hub", "to": "star_c2g-dev_city2graph"}, {"from": "_github_stars_hub", "to": "star_sympozium-ai_sympozium"}, {"from": "_github_stars_hub", "to": "star_goposta_posta"}, {"from": "_github_stars_hub", "to": "star_python-websockets_websockets"}, {"from": "_github_stars_hub", "to": "star_hermes-hq_hermes-ide"}, {"from": "_github_stars_hub", "to": "star_jjmartres_opencode"}, {"from": "_github_stars_hub", "to": "star_Railly_agentfiles"}, {"from": "_github_stars_hub", "to": "star_ai-agents-2030_awesome-deep-research-agent"}, {"from": "_github_stars_hub", "to": "star_sacridini_Awesome-Geospatial"}, {"from": "_github_stars_hub", "to": "star_jontsai_openclaw-command-center"}, {"from": "_github_stars_hub", "to": "star_krelltunez_dayGLANCE"}, {"from": "_github_stars_hub", "to": "star_jyoung105_frouter"}, {"from": "_github_stars_hub", "to": "star_alvinreal_awesome-openclaw-tips"}, {"from": "_github_stars_hub", "to": "star_DhivakaranRavi_kiteguard"}, {"from": "_github_stars_hub", "to": "star_microsoft_powerbi-modeling-mcp"}, {"from": "_github_stars_hub", "to": "star_Nite01007_RadioTranscriber"}, {"from": "_github_stars_hub", "to": "star_DarkWebInformer_FBI_Watchdog"}, {"from": "_github_stars_hub", "to": "star_ofershap_agents-control-tower"}, {"from": "_github_stars_hub", "to": "star_ubikron_Awesome-AI-OSINT"}, {"from": "_github_stars_hub", "to": "star_adithya-s-k_marker-api"}, {"from": "_github_stars_hub", "to": "star_tucktuckg00se_INTERSECT"}, {"from": "_github_stars_hub", "to": "star_Shelf-nu_shelf_nu"}, {"from": "_github_stars_hub", "to": "star_GeneralJerel_world-monitor-copilotkit"}, {"from": "_github_stars_hub", "to": "star_etrobot_open-alpha-arena"}, {"from": "_github_stars_hub", "to": "star_ikaijua_Awesome-AITools"}, {"from": "_github_stars_hub", "to": "star_weiesky_cc-viewer"}, {"from": "_github_stars_hub", "to": "star_Anand-Swamy_stockbot"}, {"from": "_github_stars_hub", "to": "star_saulpw_visidata"}, {"from": "_github_stars_hub", "to": "star_GradientHQ_parallax"}, {"from": "_github_stars_hub", "to": "star_superagent-ai_grok-cli"}, {"from": "_github_stars_hub", "to": "star_langchain-ai_open-swe"}, {"from": "_github_stars_hub", "to": "star_jarrodwatts_claude-hud"}, {"from": "_github_stars_hub", "to": "star_volcengine_OpenViking"}, {"from": "_github_stars_hub", "to": "star_alirezarezvani_claude-skills"}, {"from": "_github_stars_hub", "to": "star_lightpanda-io_browser"}, {"from": "_github_stars_hub", "to": "star_shareAI-lab_learn-claude-code"}, {"from": "_github_stars_hub", "to": "star_666ghj_MiroFish"}, {"from": "_github_stars_hub", "to": "star_obra_superpowers"}, {"from": "_github_stars_hub", "to": "star_affaan-m_everything-claude-code"}, {"from": "_github_stars_hub", "to": "star_SakanaAI_AI-Scientist-v2"}, {"from": "_github_stars_hub", "to": "star_Yeachan-Heo_oh-my-claudecode"}, {"from": "_github_stars_hub", "to": "star_hacksider_Deep-Live-Cam"}, {"from": "_github_stars_hub", "to": "star_mvanhorn_last30days-skill"}, {"from": "_github_stars_hub", "to": "star_microsoft_VibeVoice"}, {"from": "_github_stars_hub", "to": "star_f_prompts_chat"}, {"from": "_github_stars_hub", "to": "star_openai_codex"}, {"from": "_github_stars_hub", "to": "star_luongnv89_claude-howto"}, {"from": "_github_stars_hub", "to": "star_joeynyc_hermes-hud"}, {"from": "_github_stars_hub", "to": "star_NousResearch_hermes-agent"}, {"from": "_github_stars_hub", "to": "star_p-e-w_heretic"}, {"from": "_github_stars_hub", "to": "star_philz1337x_clarity-upscaler"}, {"from": "_github_stars_hub", "to": "star_fluent_fluent-bit"}, {"from": "_github_stars_hub", "to": "star_GitHpriyanshu23_Clawde_Code"}, {"from": "_github_stars_hub", "to": "star_openinterpreter_open-interpreter"}, {"from": "_github_stars_hub", "to": "star_gsd-build_get-shit-done"}, {"from": "_github_stars_hub", "to": "star_TauricResearch_TradingAgents"}, {"from": "_github_stars_hub", "to": "star_savannah-i-g_ASHIGARU"}, {"from": "_github_stars_hub", "to": "star_openclaw_openclaw"}, {"from": "_github_stars_hub", "to": "star_x1xhlol_system-prompts-and-models-of-ai-tools"}, {"from": "_github_stars_hub", "to": "star_huggingface_skills"}, {"from": "_github_stars_hub", "to": "star_anthropics_claude-code"}, {"from": "_github_stars_hub", "to": "star_cloudflare_agents"}];
function starsRawList() {
return window.STARS_RAW_NODES_REF || FALLBACK_NODES;
}
function starsDockGroupItems() {
const raw = starsRawList();
const counts = {};
raw.forEach(function (n) {
if (n.id === '_github_stars_hub') return;
const g = n._star_group || 'misc';
counts[g] = (counts[g] || 0) + 1;
});
return STARS_GROUP_DEFS.map(function (def) {
return { id: def.id, label: def.label, color: def.color, count: counts[def.id] || 0 };
}).filter(function (r) { return r.count > 0; });
}
const nodesDS = new vis.DataSet(FALLBACK_NODES.map(n => ({
id: n.id, label: n.label, color: n.color, size: n.size, font: n.font, title: n.title,
_url: n.url || '', _full_name: n.full_name || '', _star_group: n._star_group || 'misc',
})));
const edgesDS = new vis.DataSet(FALLBACK_EDGES.map((e, i) => ({
id: i, from: e.from, to: e.to,
color: { opacity: 0.25 },
width: 1,
})));
const STARS_LINKS_KEY = 'starsCustomLinks_v1';
function starsLoadLinks() {
try { return JSON.parse(localStorage.getItem(STARS_LINKS_KEY) || '[]'); } catch (e) { return []; }
}
function starsSaveLinks(rows) {
try { localStorage.setItem(STARS_LINKS_KEY, JSON.stringify(rows)); } catch (e) {}
}
function starsHydrateLinks() {
const seen = new Set(edgesDS.getIds());
starsLoadLinks().forEach(function (r) {
if (!r || !r.id || !r.from || !r.to) return;
if (seen.has(r.id)) return;
if (!nodesDS.get(r.from) || !nodesDS.get(r.to)) return;
edgesDS.add({
id: r.id, from: r.from, to: r.to,
dashes: [5, 3], width: 2.2,
color: { color: '#a78bfa', opacity: 0.95 },
arrows: { to: { enabled: true, scaleFactor: 0.5 } },
title: 'Your drawn link',
});
seen.add(r.id);
});
}
starsHydrateLinks();
let starsLinkDraft = null;
let __starsLinkModeForced = null;
function starsLinkOn() {
if (typeof __starsLinkModeForced === 'boolean') return __starsLinkModeForced;
const el = document.getElementById('stars-link-mode');
return !!(el && el.checked);
}
function starsLinkSet(msg) {
const s = document.getElementById('stars-link-st');
if (s) s.textContent = msg;
if (window.parent !== window) {
try { window.parent.postMessage({ type: 'dock-link-status', text: String(msg || '') }, '*'); } catch (e) {}
}
}
function starsPostNodeToParent(nodeId, linkPhase) {
if (window.parent === window) return;
const n = nodesDS.get(nodeId);
if (!n) return;
const u = n._url;
const fn = n._full_name || '';
const payload = {
type: 'stars-node', fullName: fn, url: u || '', label: n.label || nodeId, id: nodeId,
enrich: n._enrich || null,
};
if (linkPhase) payload.linkPhase = linkPhase;
try { window.parent.postMessage(payload, '*'); } catch (e) {}
}
function starsNodeMetaForLink(nodeId) {
const n = nodesDS.get(nodeId) || {};
return {
id: String(nodeId || ''),
label: String(n.label || nodeId || ''),
full_name: String(n._full_name || ''),
url: String(n._url || ''),
_star_group: String(n._star_group || ''),
};
}
function starsExportLinksRich() {
return starsLoadLinks().map(function (r) {
if (!r || !r.from || !r.to) return null;
const a = starsNodeMetaForLink(r.from);
const b = starsNodeMetaForLink(r.to);
return {
id: r.id, from: r.from, to: r.to,
from_label: a.label, to_label: b.label,
from_full_name: a.full_name, to_full_name: b.full_name,
from_url: a.url, to_url: b.url,
from_star_group: a._star_group, to_star_group: b._star_group,
created_at: r.created_at || null,
};
}).filter(Boolean);
}
function starsTryLinkClick(nodeId) {
if (!EMBED || !starsLinkOn()) return false;
if (!nodesDS.get(nodeId)) return false;
if (starsLinkDraft == null) {
starsLinkDraft = nodeId;
starsLinkSet('Pick 2nd node…');
network.selectNodes([nodeId]);
starsPostNodeToParent(nodeId, 'first');
return true;
}
if (starsLinkDraft === nodeId) {
starsLinkSet('Different node');
return true;
}
const id = 'stars_l_' + Date.now() + '_' + Math.random().toString(36).slice(2, 8);
const rows = starsLoadLinks();
rows.push({ id: id, from: starsLinkDraft, to: nodeId, created_at: new Date().toISOString() });
starsSaveLinks(rows);
edgesDS.add({
id: id, from: starsLinkDraft, to: nodeId,
dashes: [5, 3], width: 2.2,
color: { color: '#a78bfa', opacity: 0.95 },
arrows: { to: { enabled: true, scaleFactor: 0.5 } },
title: 'Your drawn link',
});
starsLinkDraft = null;
starsLinkSet('Added');
network.selectNodes([nodeId]);
starsPostNodeToParent(nodeId, 'second');
return true;
}
(function starsDashBind() {
const lm = document.getElementById('stars-link-mode');
if (lm) lm.addEventListener('change', function () {
__starsLinkModeForced = null;
starsLinkDraft = null;
starsLinkSet(lm.checked ? 'Pick first…' : 'Off');
});
const c = document.getElementById('stars-link-can');
if (c) c.addEventListener('click', function () {
starsLinkDraft = null;
starsLinkSet(starsLinkOn() ? 'Pick first…' : 'Off');
});
const x = document.getElementById('stars-link-clr');
if (x) x.addEventListener('click', function () {
starsSaveLinks([]);
edgesDS.getIds().filter(function (id) { return String(id).indexOf('stars_l_') === 0; })
.forEach(function (id) { try { edgesDS.remove(id); } catch (e) {} });
starsLinkDraft = null;
starsLinkSet(starsLinkOn() ? 'Pick first…' : 'Off');
});
})();
const container = document.getElementById('graph');
const network = new vis.Network(container, { nodes: nodesDS, edges: edgesDS }, {
physics: {
enabled: true,
solver: 'forceAtlas2Based',
forceAtlas2Based: {
gravitationalConstant: -120,
centralGravity: 0.05,
springLength: 100,
springConstant: 0.06,
damping: 0.6,
avoidOverlap: 0.1,
},
stabilization: { iterations: 300, fit: true, updateInterval: 150 },
},
interaction: {
hover: true, tooltipDelay: 90, hideEdgesOnDrag: true, hideEdgesOnZoom: true,
navigationButtons: false,
zoomSpeed: 0.32, keyboard: false,
},
nodes: { shape: 'dot', borderWidth: 1.5 },
edges: { smooth: { type: 'continuous', roundness: 0.2 }, selectionWidth: 3 },
});
function spellbookStarsFit() {
try {
network.fit({ padding: 72, animation: false });
} catch (e) {}
}
function spellbookStarsRefit() {
try { network.redraw(); } catch (e) {}
spellbookStarsFit();
}
function spellbookStarsMaybeFitWhenSized() {
const w = container.clientWidth;
const h = container.clientHeight;
if (w > 48 && h > 48) spellbookStarsRefit();
}
function spellbookStarsReshuffle() {
/* Re-layout without re-enabling physics — avoids central pull undoing manual drags. */
try { network.stopSimulation(); } catch (e) {}
network.setOptions({ physics: { enabled: false } });
spellbookStarsFit();
}
network.on('dragStart', () => {
try { network.setOptions({ physics: { enabled: false } }); } catch (e) {}
});
network.on('dragEnd', () => {
try { network.setOptions({ physics: { enabled: false } }); } catch (e) {}
});
network.once('stabilizationIterationsDone', () => {
network.setOptions({ physics: { enabled: false } });
if (EMBED) {
setTimeout(spellbookStarsMaybeFitWhenSized, 50);
let tries = 0;
const iv = setInterval(() => {
tries += 1;
spellbookStarsMaybeFitWhenSized();
if ((container.clientWidth > 48 && container.clientHeight > 48) || tries > 45) clearInterval(iv);
}, 120);
if (window.parent !== window) {
try {
const nRepos = starsRawList().filter(function (n) { return n.id !== '_github_stars_hub'; }).length;
window.parent.postMessage({ type: 'stars-data-ready', count: nRepos }, '*');
} catch (e) {}
}
} else {
setTimeout(spellbookStarsFit, 50);
}
});
if (EMBED) {
try {
let __roTimer = null;
new ResizeObserver(() => {
clearTimeout(__roTimer);
__roTimer = setTimeout(spellbookStarsMaybeFitWhenSized, 200);
}).observe(container);
} catch (e) {}
}
window.addEventListener('message', (ev) => {
const d = ev.data;
if (!d || typeof d !== 'object') return;
if (d.type === 'link-mode-set') {
__starsLinkModeForced = !!d.enabled;
const lm = document.getElementById('stars-link-mode');
if (lm) lm.checked = !!d.enabled;
starsLinkDraft = null;
starsLinkSet(__starsLinkModeForced ? 'Pick first…' : 'Off');
return;
}
if (d.type === 'link-mode-cancel') {
starsLinkDraft = null;
starsLinkSet(starsLinkOn() ? 'Pick first…' : 'Off');
return;
}
if (d.type === 'link-mode-clear') {
starsSaveLinks([]);
edgesDS.getIds().filter(function (id) { return String(id).indexOf('stars_l_') === 0; })
.forEach(function (id) { try { edgesDS.remove(id); } catch (e) {} });
starsLinkDraft = null;
starsLinkSet(starsLinkOn() ? 'Pick first…' : 'Off');
return;
}
if (d.type === 'stars-export-links' && window.parent !== window) {
try {
window.parent.postMessage({ type: 'stars-export-links-data', rows: starsExportLinksRich() }, '*');
} catch (e) {}
return;
}
if (d.type === 'request-groups') {
try {
window.parent.postMessage({ type: 'dock-groups-data', kind: 'stars', items: starsDockGroupItems() }, '*');
} catch (e) {}
return;
}
if (d.type === 'stars-group-focus' && d.group) {
const g = String(d.group);
const updates = starsRawList().map(function (n) {
if (n.id === '_github_stars_hub') return { id: n.id, hidden: false };
const ng = n._star_group || 'misc';
return { id: n.id, hidden: ng !== g };
});
nodesDS.update(updates);
setTimeout(spellbookStarsFit, 60);
return;
}
if (d.type === 'stars-show-all') {
nodesDS.update(starsRawList().map(function (n) { return { id: n.id, hidden: false }; }));
setTimeout(spellbookStarsFit, 60);
return;
}
if (d.type === 'stars-refit') {
setTimeout(spellbookStarsMaybeFitWhenSized, 50);
return;
}
if (d.type === 'stars-shuffle') spellbookStarsReshuffle();
if (d.type === 'stars-community-apply' && Array.isArray(d.keywords)) {
const kws = d.keywords.map((k) => String(k).toLowerCase().trim()).filter(Boolean);
const updates = starsRawList().map((n) => {
if (n.id === '_github_stars_hub') return { id: n.id, hidden: false };
const blob = (
String(n.full_name || '') + ' ' + String(n.label || '') + ' ' + String(n.title || '')
).toLowerCase();
const hit = kws.some((kw) => blob.indexOf(kw) !== -1);
return { id: n.id, hidden: !hit };
});
nodesDS.update(updates);
setTimeout(spellbookStarsFit, 60);
}
if (d.type === 'stars-community-clear') {
nodesDS.update(starsRawList().map((n) => ({ id: n.id, hidden: false })));
setTimeout(spellbookStarsFit, 60);
}
});
async function fetchReadmeMd(owner, repo) {
const tryUrls = [
'https://api.github.com/repos/' + encodeURIComponent(owner) + '/' + encodeURIComponent(repo) + '/readme',
];
for (const url of tryUrls) {
try {
const r = await fetch(url, { headers: { 'Accept': 'application/vnd.github.raw' } });
if (r.ok) return await r.text();
} catch (e) {}
}
const raw = 'https://raw.githubusercontent.com/' + owner + '/' + repo + '/HEAD/README.md';
try {
const r = await fetch(raw);
if (r.ok) return await r.text();
} catch (e) {}
return null;
}
network.on('click', async (p) => {
if (p.nodes.length && EMBED && starsTryLinkClick(p.nodes[0])) return;
if (!p.nodes.length) return;
const id = p.nodes[0];
const n = nodesDS.get(id);
const u = n._url;
const fn = n._full_name || '';
if (EMBED && window.parent !== window) {
window.parent.postMessage({ type: 'stars-node', fullName: fn, url: u || '', label: n.label || id, id, enrich: n._enrich || null }, '*');
return;
}
const rd = document.getElementById('readme-local');
if (rd) { rd.textContent = ''; rd.innerHTML = '<span style=color:#666>Loading README…</span>'; }
if (!u) {
if (document.getElementById('info')) document.getElementById('info').innerHTML = '<code>' + id + '</code> (hub)';
if (rd) rd.innerHTML = '';
return;
}
const head = '<div><b>' + (n.label || id) + '</b></div><p><a href="' + u + '" target="_blank" rel="noopener">Open on GitHub</a></p>';
if (document.getElementById('info')) document.getElementById('info').innerHTML = head;
let md = '';
if (fn && fn.indexOf('/') !== -1) {
const [o, r] = fn.split('/', 2);
md = await fetchReadmeMd(o, r);
}
if (rd) {
if (md && typeof ReadmeSkin !== 'undefined' && typeof marked !== 'undefined') {
ReadmeSkin.render(md, rd, marked);
} else if (md) {
rd.textContent = md;
} else {
rd.innerHTML = '<span style=color:#888>No README fetched (rate limit / private / CORS).</span>';
}
}
});
function starsRecomputeSize(n) {
// Re-derive star count from title field (e.g. "owner/repo\n12345★ · lang\n...")
if (n.id === '_github_stars_hub') return n.size || 28;
var m = String(n.title || '').match(/\n([\d,]+)★/);
var stars = m ? parseInt(m[1].replace(/,/g, ''), 10) : 0;
return stars ? Math.max(8, Math.min(40, 8 + Math.log10(stars + 1) * 5.5)) : 8;
}
function starsMapVisNodes(raw) {
return raw.map(n => ({
id: n.id, label: n.label, color: n.color, size: starsRecomputeSize(n), font: n.font, title: n.title,
_url: n.url || '', _full_name: n.full_name || '', _star_group: n._star_group || 'misc',
_enrich: n._enrich || null,
}));
}
function starsMapVisEdges(raw) {
return raw.map((e, i) => ({
id: i, from: e.from, to: e.to,
color: { opacity: 0.25 },
width: 1,
}));
}
(async function starsLiveRefresh() {
if (typeof StarsLive === 'undefined') return;
try {
const api = await StarsLive.fetchAllStarred(STARS_GITHUB_USER);
if (!api || api.length === 0) return;
const b = await StarsLive.buildNodesEdges(api);
window.STARS_RAW_NODES_REF = b.nodes;
nodesDS.clear();
edgesDS.clear();
nodesDS.add(starsMapVisNodes(b.nodes));
edgesDS.add(starsMapVisEdges(b.edges));
starsHydrateLinks();
network.setData({ nodes: nodesDS, edges: edgesDS });
network.setOptions({ physics: { enabled: true, stabilization: { iterations: 150, fit: true, updateInterval: 150 } } });
network.once('stabilizationIterationsDone', () => {
network.setOptions({ physics: { enabled: false } });
setTimeout(spellbookStarsFit, 50);
if (EMBED) setTimeout(spellbookStarsMaybeFitWhenSized, 80);
});
const st = document.getElementById('stars-link-st');
if (st && !starsLinkOn()) st.textContent = 'Live · ' + b.nodes.length + ' nodes';
} catch (err) {
console.warn('[stars] Live refresh skipped:', err);
const st = document.getElementById('stars-link-st');
if (st && !starsLinkOn()) st.textContent = 'Snapshot (API limit?)';
}
})();
</script>
</body>
</html>