@wcj/github-rank 25.12.22 → 26.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/repos.json +52008 -52016
- package/dist/trending-daily.json +79 -68
- package/dist/trending-monthly.json +134 -134
- package/dist/trending-weekly.json +99 -110
- package/dist/users.china.json +4832 -4868
- package/dist/users.json +8757 -8829
- package/dist/users.org.json +1650 -1578
- package/package.json +1 -1
- package/web/data/repos.json +52008 -52016
- package/web/data/trending-daily.json +79 -68
- package/web/data/trending-monthly.json +134 -134
- package/web/data/trending-weekly.json +99 -110
- package/web/data/users.china.json +4832 -4868
- package/web/data/users.json +8757 -8829
- package/web/data/users.org.json +1650 -1578
- package/web/index.html +8317 -8401
- package/web/org.html +1423 -1292
- package/web/repos.html +5536 -5526
- package/web/trending-monthly.html +177 -131
- package/web/trending-weekly.html +136 -136
- package/web/trending.html +146 -70
- package/web/users.china.html +4635 -4658
|
@@ -28,35 +28,42 @@
|
|
|
28
28
|
--color-link-hover: #58a6ff;
|
|
29
29
|
--color-tab-fg: #e2e2e2;
|
|
30
30
|
--color-border: #000;
|
|
31
|
-
--color-neutral-muted: rgba(
|
|
31
|
+
--color-neutral-muted: rgba(165,171,177,0.2);
|
|
32
32
|
}
|
|
33
33
|
</style>
|
|
34
34
|
<style>
|
|
35
35
|
* { box-sizing: border-box; }
|
|
36
36
|
html, body, ul, li, h1 { margin: 0; padding: 0 }
|
|
37
37
|
html, body { font-size: 16px; font-family: -apple-system,"Helvetica Neue",Helvetica,Arial,"PingFang SC","Hiragino Sans GB","WenQuanYi Micro Hei","Microsoft Yahei",sans-serif; }
|
|
38
|
+
body { padding: 0 12px; }
|
|
39
|
+
main {
|
|
40
|
+
max-width: 1440px;
|
|
41
|
+
margin: 0 auto;
|
|
42
|
+
min-height: 100vh;
|
|
43
|
+
background-color: var(--bg-secondary);
|
|
44
|
+
border-radius: 12px;
|
|
45
|
+
border: 1px solid var(--color-neutral-muted);
|
|
46
|
+
}
|
|
38
47
|
ul { list-style: none; }
|
|
39
|
-
|
|
40
48
|
a { color: var(--color-accent-fg); text-decoration: none; transition: all .2s ease-in; }
|
|
41
49
|
a:hover { color: var(--color-link-hover); text-decoration: underline; }
|
|
42
50
|
a.github-corner:hover .octo-arm { animation: octocat-wave 560ms infinite linear; }
|
|
43
51
|
a.github-corner svg { fill: #f1f1f1; color: #000; position: absolute; top: 0; border: 0; right: 0; z-index: 99; width: 70px; height: 70px; }
|
|
44
52
|
a.github-corner { position: fixed; z-index: 9999; top: 0; right: 0; }
|
|
45
53
|
|
|
46
|
-
.title { padding:
|
|
54
|
+
.title { padding: 5rem 20px 10px 20px; font-size: 32px; text-align: center; }
|
|
47
55
|
.title a svg { display: block; }
|
|
48
56
|
.title a { color: var(--color-accent-fg); display: inline-block; margin-left: 10px; }
|
|
49
|
-
.title dark-mode {
|
|
50
|
-
|
|
51
|
-
}
|
|
57
|
+
.title dark-mode { margin-right: 8px; }
|
|
58
|
+
.time { text-align: center; }
|
|
52
59
|
.time, .footer { padding: 5px 20px 2px 20px; font-size: 12px; color: #adadad; }
|
|
53
|
-
.tabs { padding:
|
|
60
|
+
.tabs { padding: 1rem 20px 3rem 20px; text-align: center;}
|
|
54
61
|
.tabs a { background: var(--color-tab-fg); display: inline-block; border-radius: 2px; margin: 2px 0; padding: 2px 5px; font-size: 12px; line-height: 16px; color: var(--color-accent-fg); }
|
|
55
62
|
.tabs a.active { background: #333; color: #efefef; }
|
|
56
63
|
.tabs a:hover:not(.active) { background: #efefef; }
|
|
57
|
-
.footer { padding:
|
|
58
|
-
.footer .time { padding: 0; }
|
|
59
|
-
.list { text-align: left; padding
|
|
64
|
+
.footer { padding: 2rem 20px 6rem 20px; font-size: 12px; color: #adadad; text-align: center; }
|
|
65
|
+
.footer .time { padding: 0; text-align: center; }
|
|
66
|
+
.list { text-align: left; padding: 16px;}
|
|
60
67
|
.list img { width: 36px; height: 36px; border-radius: 3px; display: block; margin: 0 auto; background-color: #e2e2e2; border: 0; overflow: hidden; }
|
|
61
68
|
.list li { padding: 10px; transition: all .3s; }
|
|
62
69
|
.list li.rank-title { margin: 0; padding: 3px 0 0 7px; margin-bottom: 10px; border-radius: 5px; font-size: 12px; line-height: 16px; }
|
|
@@ -129,7 +136,7 @@
|
|
|
129
136
|
</a>
|
|
130
137
|
|
|
131
138
|
</h1>
|
|
132
|
-
<div class="time">Last cache created on
|
|
139
|
+
<div class="time">Last cache created on 2026/1/1 by
|
|
133
140
|
|
|
134
141
|
|
|
135
142
|
|
|
@@ -141,6 +148,7 @@
|
|
|
141
148
|
<a class="" href="repos.html">Repos</a>
|
|
142
149
|
<a class="active" href="trending.html">Trending</a>
|
|
143
150
|
</div>
|
|
151
|
+
<main>
|
|
144
152
|
<ul class="list repos trending">
|
|
145
153
|
<li class="rank-title">
|
|
146
154
|
<span class="select">
|
|
@@ -153,37 +161,39 @@
|
|
|
153
161
|
<li>
|
|
154
162
|
<div class="info">
|
|
155
163
|
<div class="rank">
|
|
156
|
-
|
|
157
|
-
<
|
|
164
|
+
|
|
165
|
+
<span title="Ranking 1">🥇</span>
|
|
166
|
+
|
|
167
|
+
<a href="https://github.com/thedotmack/claude-mem" target="_blank" title="thedotmack/claude-mem">thedotmack/claude-mem</a>
|
|
158
168
|
</div>
|
|
159
169
|
<div class="sub-title followers">
|
|
160
170
|
|
|
161
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
162
|
-
<span style="background-color: #
|
|
171
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
172
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
163
173
|
</a>
|
|
164
174
|
|
|
165
175
|
<span class="star" title="Stargazers Count">
|
|
166
176
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
167
177
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
168
178
|
</svg>
|
|
169
|
-
<span>
|
|
179
|
+
<span>9.767k</span>
|
|
170
180
|
</span>
|
|
171
181
|
<span class="star" title="Repo Forked">
|
|
172
182
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
173
183
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
174
184
|
</path>
|
|
175
185
|
</svg>
|
|
176
|
-
<span>
|
|
186
|
+
<span>590</span>
|
|
177
187
|
</span>
|
|
178
188
|
<span class="star">
|
|
179
189
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
180
190
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
181
191
|
</svg>
|
|
182
|
-
<span>
|
|
192
|
+
<span>9307 stars this month</span>
|
|
183
193
|
</span>
|
|
184
194
|
</div>
|
|
185
195
|
<div class="details">
|
|
186
|
-
|
|
196
|
+
A 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 back into future sessions.
|
|
187
197
|
</div>
|
|
188
198
|
</div>
|
|
189
199
|
</li>
|
|
@@ -191,37 +201,39 @@
|
|
|
191
201
|
<li>
|
|
192
202
|
<div class="info">
|
|
193
203
|
<div class="rank">
|
|
194
|
-
|
|
195
|
-
<
|
|
204
|
+
|
|
205
|
+
<span title="Ranking 2">🥈</span>
|
|
206
|
+
|
|
207
|
+
<a href="https://github.com/basecamp/fizzy" target="_blank" title="basecamp/fizzy">basecamp/fizzy</a>
|
|
196
208
|
</div>
|
|
197
209
|
<div class="sub-title followers">
|
|
198
210
|
|
|
199
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
200
|
-
<span style="background-color: #
|
|
211
|
+
<a class="language" target="_blank" href="https://github.com/topics/ruby" title="Programming Language Ruby">
|
|
212
|
+
<span style="background-color: #701516;"></span>Ruby
|
|
201
213
|
</a>
|
|
202
214
|
|
|
203
215
|
<span class="star" title="Stargazers Count">
|
|
204
216
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
205
217
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
206
218
|
</svg>
|
|
207
|
-
<span>
|
|
219
|
+
<span>6.43k</span>
|
|
208
220
|
</span>
|
|
209
221
|
<span class="star" title="Repo Forked">
|
|
210
222
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
211
223
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
212
224
|
</path>
|
|
213
225
|
</svg>
|
|
214
|
-
<span>
|
|
226
|
+
<span>825</span>
|
|
215
227
|
</span>
|
|
216
228
|
<span class="star">
|
|
217
229
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
218
230
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
219
231
|
</svg>
|
|
220
|
-
<span>
|
|
232
|
+
<span>6435 stars this month</span>
|
|
221
233
|
</span>
|
|
222
234
|
</div>
|
|
223
235
|
<div class="details">
|
|
224
|
-
|
|
236
|
+
Kanban as it should be. Not as it has been.
|
|
225
237
|
</div>
|
|
226
238
|
</div>
|
|
227
239
|
</li>
|
|
@@ -229,37 +241,39 @@
|
|
|
229
241
|
<li>
|
|
230
242
|
<div class="info">
|
|
231
243
|
<div class="rank">
|
|
232
|
-
|
|
233
|
-
<
|
|
244
|
+
|
|
245
|
+
<span title="Ranking 3">🥉</span>
|
|
246
|
+
|
|
247
|
+
<a href="https://github.com/DayuanJiang/next-ai-draw-io" target="_blank" title="DayuanJiang/next-ai-draw-io">DayuanJiang/next-ai-draw-io</a>
|
|
234
248
|
</div>
|
|
235
249
|
<div class="sub-title followers">
|
|
236
250
|
|
|
237
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
238
|
-
<span style="background-color: #
|
|
251
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
252
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
239
253
|
</a>
|
|
240
254
|
|
|
241
255
|
<span class="star" title="Stargazers Count">
|
|
242
256
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
243
257
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
244
258
|
</svg>
|
|
245
|
-
<span>
|
|
259
|
+
<span>15.932k</span>
|
|
246
260
|
</span>
|
|
247
261
|
<span class="star" title="Repo Forked">
|
|
248
262
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
249
263
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
250
264
|
</path>
|
|
251
265
|
</svg>
|
|
252
|
-
<span>
|
|
266
|
+
<span>1654</span>
|
|
253
267
|
</span>
|
|
254
268
|
<span class="star">
|
|
255
269
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
256
270
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
257
271
|
</svg>
|
|
258
|
-
<span>
|
|
272
|
+
<span>14988 stars this month</span>
|
|
259
273
|
</span>
|
|
260
274
|
</div>
|
|
261
275
|
<div class="details">
|
|
262
|
-
A
|
|
276
|
+
A next.js web application that integrates AI capabilities with draw.io diagrams. This app allows you to create, modify, and enhance diagrams through natural language commands and AI-assisted visualization.
|
|
263
277
|
</div>
|
|
264
278
|
</div>
|
|
265
279
|
</li>
|
|
@@ -267,8 +281,10 @@
|
|
|
267
281
|
<li>
|
|
268
282
|
<div class="info">
|
|
269
283
|
<div class="rank">
|
|
284
|
+
|
|
270
285
|
<span title="Ranking 4">4</span>
|
|
271
|
-
|
|
286
|
+
|
|
287
|
+
<a href="https://github.com/exo-explore/exo" target="_blank" title="exo-explore/exo">exo-explore/exo</a>
|
|
272
288
|
</div>
|
|
273
289
|
<div class="sub-title followers">
|
|
274
290
|
|
|
@@ -280,24 +296,24 @@
|
|
|
280
296
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
281
297
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
282
298
|
</svg>
|
|
283
|
-
<span>
|
|
299
|
+
<span>39.103k</span>
|
|
284
300
|
</span>
|
|
285
301
|
<span class="star" title="Repo Forked">
|
|
286
302
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
287
303
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
288
304
|
</path>
|
|
289
305
|
</svg>
|
|
290
|
-
<span>
|
|
306
|
+
<span>2632</span>
|
|
291
307
|
</span>
|
|
292
308
|
<span class="star">
|
|
293
309
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
294
310
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
295
311
|
</svg>
|
|
296
|
-
<span>
|
|
312
|
+
<span>6581 stars this month</span>
|
|
297
313
|
</span>
|
|
298
314
|
</div>
|
|
299
315
|
<div class="details">
|
|
300
|
-
|
|
316
|
+
Run your own AI cluster at home with everyday devices 📱💻 🖥️⌚
|
|
301
317
|
</div>
|
|
302
318
|
</div>
|
|
303
319
|
</li>
|
|
@@ -305,8 +321,10 @@
|
|
|
305
321
|
<li>
|
|
306
322
|
<div class="info">
|
|
307
323
|
<div class="rank">
|
|
324
|
+
|
|
308
325
|
<span title="Ranking 5">5</span>
|
|
309
|
-
|
|
326
|
+
|
|
327
|
+
<a href="https://github.com/datawhalechina/hello-agents" target="_blank" title="datawhalechina/hello-agents">datawhalechina/hello-agents</a>
|
|
310
328
|
</div>
|
|
311
329
|
<div class="sub-title followers">
|
|
312
330
|
|
|
@@ -318,24 +336,24 @@
|
|
|
318
336
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
319
337
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
320
338
|
</svg>
|
|
321
|
-
<span>
|
|
339
|
+
<span>13.627k</span>
|
|
322
340
|
</span>
|
|
323
341
|
<span class="star" title="Repo Forked">
|
|
324
342
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
325
343
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
326
344
|
</path>
|
|
327
345
|
</svg>
|
|
328
|
-
<span>
|
|
346
|
+
<span>1439</span>
|
|
329
347
|
</span>
|
|
330
348
|
<span class="star">
|
|
331
349
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
332
350
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
333
351
|
</svg>
|
|
334
|
-
<span>
|
|
352
|
+
<span>8522 stars this month</span>
|
|
335
353
|
</span>
|
|
336
354
|
</div>
|
|
337
355
|
<div class="details">
|
|
338
|
-
|
|
356
|
+
📚 《从零开始构建智能体》——从零开始的智能体原理与实践教程
|
|
339
357
|
</div>
|
|
340
358
|
</div>
|
|
341
359
|
</li>
|
|
@@ -343,37 +361,39 @@
|
|
|
343
361
|
<li>
|
|
344
362
|
<div class="info">
|
|
345
363
|
<div class="rank">
|
|
364
|
+
|
|
346
365
|
<span title="Ranking 6">6</span>
|
|
347
|
-
|
|
366
|
+
|
|
367
|
+
<a href="https://github.com/simstudioai/sim" target="_blank" title="simstudioai/sim">simstudioai/sim</a>
|
|
348
368
|
</div>
|
|
349
369
|
<div class="sub-title followers">
|
|
350
370
|
|
|
351
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
352
|
-
<span style="background-color: #
|
|
371
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
372
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
353
373
|
</a>
|
|
354
374
|
|
|
355
375
|
<span class="star" title="Stargazers Count">
|
|
356
376
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
357
377
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
358
378
|
</svg>
|
|
359
|
-
<span>
|
|
379
|
+
<span>24.77k</span>
|
|
360
380
|
</span>
|
|
361
381
|
<span class="star" title="Repo Forked">
|
|
362
382
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
363
383
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
364
384
|
</path>
|
|
365
385
|
</svg>
|
|
366
|
-
<span>
|
|
386
|
+
<span>3090</span>
|
|
367
387
|
</span>
|
|
368
388
|
<span class="star">
|
|
369
389
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
370
390
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
371
391
|
</svg>
|
|
372
|
-
<span>
|
|
392
|
+
<span>6312 stars this month</span>
|
|
373
393
|
</span>
|
|
374
394
|
</div>
|
|
375
395
|
<div class="details">
|
|
376
|
-
|
|
396
|
+
Open-source platform to build and deploy AI agent workflows.
|
|
377
397
|
</div>
|
|
378
398
|
</div>
|
|
379
399
|
</li>
|
|
@@ -381,8 +401,10 @@
|
|
|
381
401
|
<li>
|
|
382
402
|
<div class="info">
|
|
383
403
|
<div class="rank">
|
|
404
|
+
|
|
384
405
|
<span title="Ranking 7">7</span>
|
|
385
|
-
|
|
406
|
+
|
|
407
|
+
<a href="https://github.com/sst/opencode" target="_blank" title="sst/opencode">sst/opencode</a>
|
|
386
408
|
</div>
|
|
387
409
|
<div class="sub-title followers">
|
|
388
410
|
|
|
@@ -394,24 +416,24 @@
|
|
|
394
416
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
395
417
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
396
418
|
</svg>
|
|
397
|
-
<span>
|
|
419
|
+
<span>44.928k</span>
|
|
398
420
|
</span>
|
|
399
421
|
<span class="star" title="Repo Forked">
|
|
400
422
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
401
423
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
402
424
|
</path>
|
|
403
425
|
</svg>
|
|
404
|
-
<span>
|
|
426
|
+
<span>3868</span>
|
|
405
427
|
</span>
|
|
406
428
|
<span class="star">
|
|
407
429
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
408
430
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
409
431
|
</svg>
|
|
410
|
-
<span>
|
|
432
|
+
<span>10579 stars this month</span>
|
|
411
433
|
</span>
|
|
412
434
|
</div>
|
|
413
435
|
<div class="details">
|
|
414
|
-
|
|
436
|
+
The open source coding agent.
|
|
415
437
|
</div>
|
|
416
438
|
</div>
|
|
417
439
|
</li>
|
|
@@ -419,8 +441,10 @@
|
|
|
419
441
|
<li>
|
|
420
442
|
<div class="info">
|
|
421
443
|
<div class="rank">
|
|
444
|
+
|
|
422
445
|
<span title="Ranking 8">8</span>
|
|
423
|
-
|
|
446
|
+
|
|
447
|
+
<a href="https://github.com/resemble-ai/chatterbox" target="_blank" title="resemble-ai/chatterbox">resemble-ai/chatterbox</a>
|
|
424
448
|
</div>
|
|
425
449
|
<div class="sub-title followers">
|
|
426
450
|
|
|
@@ -432,24 +456,24 @@
|
|
|
432
456
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
433
457
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
434
458
|
</svg>
|
|
435
|
-
<span>
|
|
459
|
+
<span>19.954k</span>
|
|
436
460
|
</span>
|
|
437
461
|
<span class="star" title="Repo Forked">
|
|
438
462
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
439
463
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
440
464
|
</path>
|
|
441
465
|
</svg>
|
|
442
|
-
<span>
|
|
466
|
+
<span>2607</span>
|
|
443
467
|
</span>
|
|
444
468
|
<span class="star">
|
|
445
469
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
446
470
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
447
471
|
</svg>
|
|
448
|
-
<span>
|
|
472
|
+
<span>5152 stars this month</span>
|
|
449
473
|
</span>
|
|
450
474
|
</div>
|
|
451
475
|
<div class="details">
|
|
452
|
-
|
|
476
|
+
SoTA open-source TTS
|
|
453
477
|
</div>
|
|
454
478
|
</div>
|
|
455
479
|
</li>
|
|
@@ -457,37 +481,39 @@
|
|
|
457
481
|
<li>
|
|
458
482
|
<div class="info">
|
|
459
483
|
<div class="rank">
|
|
484
|
+
|
|
460
485
|
<span title="Ranking 9">9</span>
|
|
461
|
-
|
|
486
|
+
|
|
487
|
+
<a href="https://github.com/rustfs/rustfs" target="_blank" title="rustfs/rustfs">rustfs/rustfs</a>
|
|
462
488
|
</div>
|
|
463
489
|
<div class="sub-title followers">
|
|
464
490
|
|
|
465
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
466
|
-
<span style="background-color: #
|
|
491
|
+
<a class="language" target="_blank" href="https://github.com/topics/rust" title="Programming Language Rust">
|
|
492
|
+
<span style="background-color: #dea584;"></span>Rust
|
|
467
493
|
</a>
|
|
468
494
|
|
|
469
495
|
<span class="star" title="Stargazers Count">
|
|
470
496
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
471
497
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
472
498
|
</svg>
|
|
473
|
-
<span>
|
|
499
|
+
<span>18.789k</span>
|
|
474
500
|
</span>
|
|
475
501
|
<span class="star" title="Repo Forked">
|
|
476
502
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
477
503
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
478
504
|
</path>
|
|
479
505
|
</svg>
|
|
480
|
-
<span>
|
|
506
|
+
<span>808</span>
|
|
481
507
|
</span>
|
|
482
508
|
<span class="star">
|
|
483
509
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
484
510
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
485
511
|
</svg>
|
|
486
|
-
<span>
|
|
512
|
+
<span>7128 stars this month</span>
|
|
487
513
|
</span>
|
|
488
514
|
</div>
|
|
489
515
|
<div class="details">
|
|
490
|
-
|
|
516
|
+
🚀2.3x faster than MinIO for 4KB object payloads. RustFS is an open-source, S3-compatible high-performance object storage system supporting migration and coexistence with other S3-compatible platforms such as MinIO and Ceph.
|
|
491
517
|
</div>
|
|
492
518
|
</div>
|
|
493
519
|
</li>
|
|
@@ -495,37 +521,39 @@
|
|
|
495
521
|
<li>
|
|
496
522
|
<div class="info">
|
|
497
523
|
<div class="rank">
|
|
524
|
+
|
|
498
525
|
<span title="Ranking 10">10</span>
|
|
499
|
-
|
|
526
|
+
|
|
527
|
+
<a href="https://github.com/Tencent/WeKnora" target="_blank" title="Tencent/WeKnora">Tencent/WeKnora</a>
|
|
500
528
|
</div>
|
|
501
529
|
<div class="sub-title followers">
|
|
502
530
|
|
|
503
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
504
|
-
<span style="background-color: #
|
|
531
|
+
<a class="language" target="_blank" href="https://github.com/topics/go" title="Programming Language Go">
|
|
532
|
+
<span style="background-color: #00ADD8;"></span>Go
|
|
505
533
|
</a>
|
|
506
534
|
|
|
507
535
|
<span class="star" title="Stargazers Count">
|
|
508
536
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
509
537
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
510
538
|
</svg>
|
|
511
|
-
<span>
|
|
539
|
+
<span>10.708k</span>
|
|
512
540
|
</span>
|
|
513
541
|
<span class="star" title="Repo Forked">
|
|
514
542
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
515
543
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
516
544
|
</path>
|
|
517
545
|
</svg>
|
|
518
|
-
<span>
|
|
546
|
+
<span>1148</span>
|
|
519
547
|
</span>
|
|
520
548
|
<span class="star">
|
|
521
549
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
522
550
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
523
551
|
</svg>
|
|
524
|
-
<span>
|
|
552
|
+
<span>3051 stars this month</span>
|
|
525
553
|
</span>
|
|
526
554
|
</div>
|
|
527
555
|
<div class="details">
|
|
528
|
-
|
|
556
|
+
LLM-powered framework for deep document understanding, semantic retrieval, and context-aware answers using RAG paradigm.
|
|
529
557
|
</div>
|
|
530
558
|
</div>
|
|
531
559
|
</li>
|
|
@@ -533,37 +561,39 @@
|
|
|
533
561
|
<li>
|
|
534
562
|
<div class="info">
|
|
535
563
|
<div class="rank">
|
|
564
|
+
|
|
536
565
|
<span title="Ranking 11">11</span>
|
|
537
|
-
|
|
566
|
+
|
|
567
|
+
<a href="https://github.com/agentsmd/agents.md" target="_blank" title="agentsmd/agents.md">agentsmd/agents.md</a>
|
|
538
568
|
</div>
|
|
539
569
|
<div class="sub-title followers">
|
|
540
570
|
|
|
541
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
542
|
-
<span style="background-color: #
|
|
571
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
572
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
543
573
|
</a>
|
|
544
574
|
|
|
545
575
|
<span class="star" title="Stargazers Count">
|
|
546
576
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
547
577
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
548
578
|
</svg>
|
|
549
|
-
<span>
|
|
579
|
+
<span>13.68k</span>
|
|
550
580
|
</span>
|
|
551
581
|
<span class="star" title="Repo Forked">
|
|
552
582
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
553
583
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
554
584
|
</path>
|
|
555
585
|
</svg>
|
|
556
|
-
<span>
|
|
586
|
+
<span>968</span>
|
|
557
587
|
</span>
|
|
558
588
|
<span class="star">
|
|
559
589
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
560
590
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
561
591
|
</svg>
|
|
562
|
-
<span>
|
|
592
|
+
<span>5029 stars this month</span>
|
|
563
593
|
</span>
|
|
564
594
|
</div>
|
|
565
595
|
<div class="details">
|
|
566
|
-
|
|
596
|
+
AGENTS.md — a simple, open format for guiding coding agents
|
|
567
597
|
</div>
|
|
568
598
|
</div>
|
|
569
599
|
</li>
|
|
@@ -571,37 +601,39 @@
|
|
|
571
601
|
<li>
|
|
572
602
|
<div class="info">
|
|
573
603
|
<div class="rank">
|
|
604
|
+
|
|
574
605
|
<span title="Ranking 12">12</span>
|
|
575
|
-
|
|
606
|
+
|
|
607
|
+
<a href="https://github.com/anthropics/claude-quickstarts" target="_blank" title="anthropics/claude-quickstarts">anthropics/claude-quickstarts</a>
|
|
576
608
|
</div>
|
|
577
609
|
<div class="sub-title followers">
|
|
578
610
|
|
|
579
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
580
|
-
<span style="background-color: #
|
|
611
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
612
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
581
613
|
</a>
|
|
582
614
|
|
|
583
615
|
<span class="star" title="Stargazers Count">
|
|
584
616
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
585
617
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
586
618
|
</svg>
|
|
587
|
-
<span>
|
|
619
|
+
<span>13.065k</span>
|
|
588
620
|
</span>
|
|
589
621
|
<span class="star" title="Repo Forked">
|
|
590
622
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
591
623
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
592
624
|
</path>
|
|
593
625
|
</svg>
|
|
594
|
-
<span>
|
|
626
|
+
<span>2176</span>
|
|
595
627
|
</span>
|
|
596
628
|
<span class="star">
|
|
597
629
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
598
630
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
599
631
|
</svg>
|
|
600
|
-
<span>
|
|
632
|
+
<span>2605 stars this month</span>
|
|
601
633
|
</span>
|
|
602
634
|
</div>
|
|
603
635
|
<div class="details">
|
|
604
|
-
|
|
636
|
+
A collection of projects designed to help developers quickly get started with building deployable applications using the Claude API
|
|
605
637
|
</div>
|
|
606
638
|
</div>
|
|
607
639
|
</li>
|
|
@@ -609,37 +641,39 @@
|
|
|
609
641
|
<li>
|
|
610
642
|
<div class="info">
|
|
611
643
|
<div class="rank">
|
|
644
|
+
|
|
612
645
|
<span title="Ranking 13">13</span>
|
|
613
|
-
|
|
646
|
+
|
|
647
|
+
<a href="https://github.com/trustedsec/social-engineer-toolkit" target="_blank" title="trustedsec/social-engineer-toolkit">trustedsec/social-engineer-toolkit</a>
|
|
614
648
|
</div>
|
|
615
649
|
<div class="sub-title followers">
|
|
616
650
|
|
|
617
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
618
|
-
<span style="background-color: #
|
|
651
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
652
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
619
653
|
</a>
|
|
620
654
|
|
|
621
655
|
<span class="star" title="Stargazers Count">
|
|
622
656
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
623
657
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
624
658
|
</svg>
|
|
625
|
-
<span>
|
|
659
|
+
<span>14.276k</span>
|
|
626
660
|
</span>
|
|
627
661
|
<span class="star" title="Repo Forked">
|
|
628
662
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
629
663
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
630
664
|
</path>
|
|
631
665
|
</svg>
|
|
632
|
-
<span>
|
|
666
|
+
<span>3240</span>
|
|
633
667
|
</span>
|
|
634
668
|
<span class="star">
|
|
635
669
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
636
670
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
637
671
|
</svg>
|
|
638
|
-
<span>
|
|
672
|
+
<span>1634 stars this month</span>
|
|
639
673
|
</span>
|
|
640
674
|
</div>
|
|
641
675
|
<div class="details">
|
|
642
|
-
|
|
676
|
+
The Social-Engineer Toolkit (SET) repository from TrustedSec - All new versions of SET will be deployed here.
|
|
643
677
|
</div>
|
|
644
678
|
</div>
|
|
645
679
|
</li>
|
|
@@ -647,37 +681,39 @@
|
|
|
647
681
|
<li>
|
|
648
682
|
<div class="info">
|
|
649
683
|
<div class="rank">
|
|
684
|
+
|
|
650
685
|
<span title="Ranking 14">14</span>
|
|
651
|
-
|
|
686
|
+
|
|
687
|
+
<a href="https://github.com/cocoindex-io/cocoindex" target="_blank" title="cocoindex-io/cocoindex">cocoindex-io/cocoindex</a>
|
|
652
688
|
</div>
|
|
653
689
|
<div class="sub-title followers">
|
|
654
690
|
|
|
655
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
656
|
-
<span style="background-color: #
|
|
691
|
+
<a class="language" target="_blank" href="https://github.com/topics/rust" title="Programming Language Rust">
|
|
692
|
+
<span style="background-color: #dea584;"></span>Rust
|
|
657
693
|
</a>
|
|
658
694
|
|
|
659
695
|
<span class="star" title="Stargazers Count">
|
|
660
696
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
661
697
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
662
698
|
</svg>
|
|
663
|
-
<span>
|
|
699
|
+
<span>5.544k</span>
|
|
664
700
|
</span>
|
|
665
701
|
<span class="star" title="Repo Forked">
|
|
666
702
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
667
703
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
668
704
|
</path>
|
|
669
705
|
</svg>
|
|
670
|
-
<span>
|
|
706
|
+
<span>413</span>
|
|
671
707
|
</span>
|
|
672
708
|
<span class="star">
|
|
673
709
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
674
710
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
675
711
|
</svg>
|
|
676
|
-
<span>
|
|
712
|
+
<span>2088 stars this month</span>
|
|
677
713
|
</span>
|
|
678
714
|
</div>
|
|
679
715
|
<div class="details">
|
|
680
|
-
|
|
716
|
+
Data transformation framework for AI. Ultra performant, with incremental processing. 🌟 Star if you like it!
|
|
681
717
|
</div>
|
|
682
718
|
</div>
|
|
683
719
|
</li>
|
|
@@ -685,37 +721,39 @@
|
|
|
685
721
|
<li>
|
|
686
722
|
<div class="info">
|
|
687
723
|
<div class="rank">
|
|
724
|
+
|
|
688
725
|
<span title="Ranking 15">15</span>
|
|
689
|
-
|
|
726
|
+
|
|
727
|
+
<a href="https://github.com/oven-sh/bun" target="_blank" title="oven-sh/bun">oven-sh/bun</a>
|
|
690
728
|
</div>
|
|
691
729
|
<div class="sub-title followers">
|
|
692
730
|
|
|
693
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
694
|
-
<span style="background-color: #
|
|
731
|
+
<a class="language" target="_blank" href="https://github.com/topics/zig" title="Programming Language Zig">
|
|
732
|
+
<span style="background-color: #ec915c;"></span>Zig
|
|
695
733
|
</a>
|
|
696
734
|
|
|
697
735
|
<span class="star" title="Stargazers Count">
|
|
698
736
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
699
737
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
700
738
|
</svg>
|
|
701
|
-
<span>
|
|
739
|
+
<span>85.818k</span>
|
|
702
740
|
</span>
|
|
703
741
|
<span class="star" title="Repo Forked">
|
|
704
742
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
705
743
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
706
744
|
</path>
|
|
707
745
|
</svg>
|
|
708
|
-
<span>
|
|
746
|
+
<span>3866</span>
|
|
709
747
|
</span>
|
|
710
748
|
<span class="star">
|
|
711
749
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
712
750
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
713
751
|
</svg>
|
|
714
|
-
<span>
|
|
752
|
+
<span>3579 stars this month</span>
|
|
715
753
|
</span>
|
|
716
754
|
</div>
|
|
717
755
|
<div class="details">
|
|
718
|
-
|
|
756
|
+
Incredibly fast JavaScript runtime, bundler, test runner, and package manager – all in one
|
|
719
757
|
</div>
|
|
720
758
|
</div>
|
|
721
759
|
</li>
|
|
@@ -723,37 +761,39 @@
|
|
|
723
761
|
<li>
|
|
724
762
|
<div class="info">
|
|
725
763
|
<div class="rank">
|
|
764
|
+
|
|
726
765
|
<span title="Ranking 16">16</span>
|
|
727
|
-
|
|
766
|
+
|
|
767
|
+
<a href="https://github.com/anthropics/claude-code" target="_blank" title="anthropics/claude-code">anthropics/claude-code</a>
|
|
728
768
|
</div>
|
|
729
769
|
<div class="sub-title followers">
|
|
730
770
|
|
|
731
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
732
|
-
<span style="background-color: #
|
|
771
|
+
<a class="language" target="_blank" href="https://github.com/topics/shell" title="Programming Language Shell">
|
|
772
|
+
<span style="background-color: #89e051;"></span>Shell
|
|
733
773
|
</a>
|
|
734
774
|
|
|
735
775
|
<span class="star" title="Stargazers Count">
|
|
736
776
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
737
777
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
738
778
|
</svg>
|
|
739
|
-
<span>
|
|
779
|
+
<span>50.128k</span>
|
|
740
780
|
</span>
|
|
741
781
|
<span class="star" title="Repo Forked">
|
|
742
782
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
743
783
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
744
784
|
</path>
|
|
745
785
|
</svg>
|
|
746
|
-
<span>
|
|
786
|
+
<span>3557</span>
|
|
747
787
|
</span>
|
|
748
788
|
<span class="star">
|
|
749
789
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
750
790
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
751
791
|
</svg>
|
|
752
|
-
<span>
|
|
792
|
+
<span>6300 stars this month</span>
|
|
753
793
|
</span>
|
|
754
794
|
</div>
|
|
755
795
|
<div class="details">
|
|
756
|
-
|
|
796
|
+
Claude 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 handling git workflows - all through natural language commands.
|
|
757
797
|
</div>
|
|
758
798
|
</div>
|
|
759
799
|
</li>
|
|
@@ -761,37 +801,39 @@
|
|
|
761
801
|
<li>
|
|
762
802
|
<div class="info">
|
|
763
803
|
<div class="rank">
|
|
804
|
+
|
|
764
805
|
<span title="Ranking 17">17</span>
|
|
765
|
-
|
|
806
|
+
|
|
807
|
+
<a href="https://github.com/danielmiessler/Personal_AI_Infrastructure" target="_blank" title="danielmiessler/Personal_AI_Infrastructure">danielmiessler/Personal_AI_Infrastructure</a>
|
|
766
808
|
</div>
|
|
767
809
|
<div class="sub-title followers">
|
|
768
810
|
|
|
769
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
770
|
-
<span style="background-color: #
|
|
811
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
812
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
771
813
|
</a>
|
|
772
814
|
|
|
773
815
|
<span class="star" title="Stargazers Count">
|
|
774
816
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
775
817
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
776
818
|
</svg>
|
|
777
|
-
<span>
|
|
819
|
+
<span>2.766k</span>
|
|
778
820
|
</span>
|
|
779
821
|
<span class="star" title="Repo Forked">
|
|
780
822
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
781
823
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
782
824
|
</path>
|
|
783
825
|
</svg>
|
|
784
|
-
<span>
|
|
826
|
+
<span>505</span>
|
|
785
827
|
</span>
|
|
786
828
|
<span class="star">
|
|
787
829
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
788
830
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
789
831
|
</svg>
|
|
790
|
-
<span>
|
|
832
|
+
<span>1610 stars this month</span>
|
|
791
833
|
</span>
|
|
792
834
|
</div>
|
|
793
835
|
<div class="details">
|
|
794
|
-
|
|
836
|
+
Personal AI Infrastructure for upgrading humans.
|
|
795
837
|
</div>
|
|
796
838
|
</div>
|
|
797
839
|
</li>
|
|
@@ -799,8 +841,10 @@
|
|
|
799
841
|
<li>
|
|
800
842
|
<div class="info">
|
|
801
843
|
<div class="rank">
|
|
844
|
+
|
|
802
845
|
<span title="Ranking 18">18</span>
|
|
803
|
-
|
|
846
|
+
|
|
847
|
+
<a href="https://github.com/anthropics/skills" target="_blank" title="anthropics/skills">anthropics/skills</a>
|
|
804
848
|
</div>
|
|
805
849
|
<div class="sub-title followers">
|
|
806
850
|
|
|
@@ -812,29 +856,31 @@
|
|
|
812
856
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
813
857
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
814
858
|
</svg>
|
|
815
|
-
<span>
|
|
859
|
+
<span>30.937k</span>
|
|
816
860
|
</span>
|
|
817
861
|
<span class="star" title="Repo Forked">
|
|
818
862
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
819
863
|
<path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
|
|
820
864
|
</path>
|
|
821
865
|
</svg>
|
|
822
|
-
<span>
|
|
866
|
+
<span>2816</span>
|
|
823
867
|
</span>
|
|
824
868
|
<span class="star">
|
|
825
869
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
826
870
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
827
871
|
</svg>
|
|
828
|
-
<span>
|
|
872
|
+
<span>12035 stars this month</span>
|
|
829
873
|
</span>
|
|
830
874
|
</div>
|
|
831
875
|
<div class="details">
|
|
832
|
-
|
|
876
|
+
Public repository for Agent Skills
|
|
833
877
|
</div>
|
|
834
878
|
</div>
|
|
835
879
|
</li>
|
|
836
880
|
|
|
837
881
|
</ul>
|
|
882
|
+
|
|
883
|
+
</main>
|
|
838
884
|
<div class="footer">
|
|
839
885
|
<div>
|
|
840
886
|
<a href="https://jaywcjlove.github.io/#/sponsor" target="_blank">
|
|
@@ -853,7 +899,7 @@
|
|
|
853
899
|
<img src="https://img.shields.io/npm/v/@wcj/github-rank.svg?label=unpkg">
|
|
854
900
|
</a>
|
|
855
901
|
</div>
|
|
856
|
-
<div class="time">Last cache created on
|
|
902
|
+
<div class="time">Last cache created on 2026/1/1 by Github API v3.</div>
|
|
857
903
|
Create by <a href="https://github.com/jaywcjlove" target="_blank">小弟调调™</a>.
|
|
858
904
|
</div>
|
|
859
905
|
</body>
|