@wcj/github-rank 25.12.22 → 25.12.29
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 +45640 -45637
- package/dist/trending-daily.json +62 -73
- package/dist/trending-monthly.json +111 -133
- package/dist/trending-weekly.json +96 -107
- package/dist/users.china.json +4484 -4484
- package/dist/users.json +7593 -7593
- package/dist/users.org.json +1448 -1448
- package/package.json +1 -1
- package/web/data/repos.json +45640 -45637
- package/web/data/trending-daily.json +62 -73
- package/web/data/trending-monthly.json +111 -133
- package/web/data/trending-weekly.json +96 -107
- package/web/data/users.china.json +4484 -4484
- package/web/data/users.json +7593 -7593
- package/web/data/users.org.json +1448 -1448
- package/web/index.html +7436 -7419
- package/web/org.html +1160 -1139
- package/web/repos.html +5108 -5102
- package/web/trending-monthly.html +157 -191
- package/web/trending-weekly.html +138 -138
- package/web/trending.html +97 -101
- package/web/users.china.html +4283 -4266
|
@@ -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 2025/12/
|
|
139
|
+
<div class="time">Last cache created on 2025/12/29 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,8 +161,10 @@
|
|
|
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/exo-explore/exo" target="_blank" title="exo-explore/exo">exo-explore/exo</a>
|
|
158
168
|
</div>
|
|
159
169
|
<div class="sub-title followers">
|
|
160
170
|
|
|
@@ -166,24 +176,24 @@
|
|
|
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>38.696k</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>2591</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>6111 stars this month</span>
|
|
183
193
|
</span>
|
|
184
194
|
</div>
|
|
185
195
|
<div class="details">
|
|
186
|
-
|
|
196
|
+
Run your own AI cluster at home with everyday devices 📱💻 🖥️⌚
|
|
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/datawhalechina/hello-agents" target="_blank" title="datawhalechina/hello-agents">datawhalechina/hello-agents</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/python" title="Programming Language Python">
|
|
212
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
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>12.974k</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>1353</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>8026 stars this month</span>
|
|
221
233
|
</span>
|
|
222
234
|
</div>
|
|
223
235
|
<div class="details">
|
|
224
|
-
|
|
236
|
+
📚 《从零开始构建智能体》——从零开始的智能体原理与实践教程
|
|
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/rustfs/rustfs" target="_blank" title="rustfs/rustfs">rustfs/rustfs</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/rust" title="Programming Language Rust">
|
|
252
|
+
<span style="background-color: #dea584;"></span>Rust
|
|
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>18.432k</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>795</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>6810 stars this month</span>
|
|
259
273
|
</span>
|
|
260
274
|
</div>
|
|
261
275
|
<div class="details">
|
|
262
|
-
|
|
276
|
+
🚀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.
|
|
263
277
|
</div>
|
|
264
278
|
</div>
|
|
265
279
|
</li>
|
|
@@ -267,37 +281,39 @@
|
|
|
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/simstudioai/sim" target="_blank" title="simstudioai/sim">simstudioai/sim</a>
|
|
272
288
|
</div>
|
|
273
289
|
<div class="sub-title followers">
|
|
274
290
|
|
|
275
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
276
|
-
<span style="background-color: #
|
|
291
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
292
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
277
293
|
</a>
|
|
278
294
|
|
|
279
295
|
<span class="star" title="Stargazers Count">
|
|
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>24.606k</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>3067</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>6149 stars this month</span>
|
|
297
313
|
</span>
|
|
298
314
|
</div>
|
|
299
315
|
<div class="details">
|
|
300
|
-
|
|
316
|
+
Open-source platform to build and deploy AI agent workflows.
|
|
301
317
|
</div>
|
|
302
318
|
</div>
|
|
303
319
|
</li>
|
|
@@ -305,37 +321,39 @@
|
|
|
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/sst/opencode" target="_blank" title="sst/opencode">sst/opencode</a>
|
|
310
328
|
</div>
|
|
311
329
|
<div class="sub-title followers">
|
|
312
330
|
|
|
313
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
314
|
-
<span style="background-color: #
|
|
331
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
332
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
315
333
|
</a>
|
|
316
334
|
|
|
317
335
|
<span class="star" title="Stargazers Count">
|
|
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>43.305k</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>3713</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>9042 stars this month</span>
|
|
335
353
|
</span>
|
|
336
354
|
</div>
|
|
337
355
|
<div class="details">
|
|
338
|
-
|
|
356
|
+
The open source coding agent.
|
|
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/agentsmd/agents.md" target="_blank" title="agentsmd/agents.md">agentsmd/agents.md</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>13.437k</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>958</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>4804 stars this month</span>
|
|
373
393
|
</span>
|
|
374
394
|
</div>
|
|
375
395
|
<div class="details">
|
|
376
|
-
|
|
396
|
+
AGENTS.md — a simple, open format for guiding coding agents
|
|
377
397
|
</div>
|
|
378
398
|
</div>
|
|
379
399
|
</li>
|
|
@@ -381,37 +401,39 @@
|
|
|
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/anthropics/claude-quickstarts" target="_blank" title="anthropics/claude-quickstarts">anthropics/claude-quickstarts</a>
|
|
386
408
|
</div>
|
|
387
409
|
<div class="sub-title followers">
|
|
388
410
|
|
|
389
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
390
|
-
<span style="background-color: #
|
|
411
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
412
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
391
413
|
</a>
|
|
392
414
|
|
|
393
415
|
<span class="star" title="Stargazers Count">
|
|
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>12.
|
|
419
|
+
<span>12.941k</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>2166</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>2544 stars this month</span>
|
|
411
433
|
</span>
|
|
412
434
|
</div>
|
|
413
435
|
<div class="details">
|
|
414
|
-
|
|
436
|
+
A collection of projects designed to help developers quickly get started with building deployable applications using the Claude API
|
|
415
437
|
</div>
|
|
416
438
|
</div>
|
|
417
439
|
</li>
|
|
@@ -419,37 +441,39 @@
|
|
|
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/Tencent/WeKnora" target="_blank" title="Tencent/WeKnora">Tencent/WeKnora</a>
|
|
424
448
|
</div>
|
|
425
449
|
<div class="sub-title followers">
|
|
426
450
|
|
|
427
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
428
|
-
<span style="background-color: #
|
|
451
|
+
<a class="language" target="_blank" href="https://github.com/topics/go" title="Programming Language Go">
|
|
452
|
+
<span style="background-color: #00ADD8;"></span>Go
|
|
429
453
|
</a>
|
|
430
454
|
|
|
431
455
|
<span class="star" title="Stargazers Count">
|
|
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>10.433k</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>1121</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>2769 stars this month</span>
|
|
449
473
|
</span>
|
|
450
474
|
</div>
|
|
451
475
|
<div class="details">
|
|
452
|
-
|
|
476
|
+
LLM-powered framework for deep document understanding, semantic retrieval, and context-aware answers using RAG paradigm.
|
|
453
477
|
</div>
|
|
454
478
|
</div>
|
|
455
479
|
</li>
|
|
@@ -457,8 +481,10 @@
|
|
|
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/microsoft/magentic-ui" target="_blank" title="microsoft/magentic-ui">microsoft/magentic-ui</a>
|
|
462
488
|
</div>
|
|
463
489
|
<div class="sub-title followers">
|
|
464
490
|
|
|
@@ -470,24 +496,24 @@
|
|
|
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>9.498k</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>961</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>1447 stars this month</span>
|
|
487
513
|
</span>
|
|
488
514
|
</div>
|
|
489
515
|
<div class="details">
|
|
490
|
-
|
|
516
|
+
A research prototype of a human-centered web agent
|
|
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/cocoindex-io/cocoindex" target="_blank" title="cocoindex-io/cocoindex">cocoindex-io/cocoindex</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/rust" title="Programming Language Rust">
|
|
532
|
+
<span style="background-color: #dea584;"></span>Rust
|
|
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>5.395k</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>406</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>1932 stars this month</span>
|
|
525
553
|
</span>
|
|
526
554
|
</div>
|
|
527
555
|
<div class="details">
|
|
528
|
-
|
|
556
|
+
Data transformation framework for AI. Ultra performant, with incremental processing. 🌟 Star if you like it!
|
|
529
557
|
</div>
|
|
530
558
|
</div>
|
|
531
559
|
</li>
|
|
@@ -533,7 +561,9 @@
|
|
|
533
561
|
<li>
|
|
534
562
|
<div class="info">
|
|
535
563
|
<div class="rank">
|
|
564
|
+
|
|
536
565
|
<span title="Ranking 11">11</span>
|
|
566
|
+
|
|
537
567
|
<a href="https://github.com/oven-sh/bun" target="_blank" title="oven-sh/bun">oven-sh/bun</a>
|
|
538
568
|
</div>
|
|
539
569
|
<div class="sub-title followers">
|
|
@@ -546,20 +576,20 @@
|
|
|
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>85.
|
|
579
|
+
<span>85.712k</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>3851</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>3485 stars this month</span>
|
|
563
593
|
</span>
|
|
564
594
|
</div>
|
|
565
595
|
<div class="details">
|
|
@@ -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-code" target="_blank" title="anthropics/claude-code">anthropics/claude-code</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/shell" title="Programming Language Shell">
|
|
612
|
+
<span style="background-color: #89e051;"></span>Shell
|
|
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>49.299k</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>3493</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>5557 stars this month</span>
|
|
601
633
|
</span>
|
|
602
634
|
</div>
|
|
603
635
|
<div class="details">
|
|
604
|
-
|
|
636
|
+
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.
|
|
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/resemble-ai/chatterbox" target="_blank" title="resemble-ai/chatterbox">resemble-ai/chatterbox</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>18.532k</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>2445</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>3481 stars this month</span>
|
|
639
673
|
</span>
|
|
640
674
|
</div>
|
|
641
675
|
<div class="details">
|
|
642
|
-
|
|
676
|
+
SoTA open-source TTS
|
|
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/Morganamilo/paru" target="_blank" title="Morganamilo/paru">Morganamilo/paru</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>8.148k</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>301</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>535 stars this month</span>
|
|
677
713
|
</span>
|
|
678
714
|
</div>
|
|
679
715
|
<div class="details">
|
|
680
|
-
|
|
716
|
+
Feature packed AUR helper
|
|
681
717
|
</div>
|
|
682
718
|
</div>
|
|
683
719
|
</li>
|
|
@@ -685,46 +721,10 @@
|
|
|
685
721
|
<li>
|
|
686
722
|
<div class="info">
|
|
687
723
|
<div class="rank">
|
|
688
|
-
<span title="Ranking 15">15</span>
|
|
689
|
-
<a href="https://github.com/GoogleCloudPlatform/agent-starter-pack" target="_blank" title="GoogleCloudPlatform/agent-starter-pack">GoogleCloudPlatform/agent-starter-pack</a>
|
|
690
|
-
</div>
|
|
691
|
-
<div class="sub-title followers">
|
|
692
724
|
|
|
693
|
-
<
|
|
694
|
-
<span style="background-color: #3572A5;"></span>Python
|
|
695
|
-
</a>
|
|
725
|
+
<span title="Ranking 15">15</span>
|
|
696
726
|
|
|
697
|
-
<
|
|
698
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
699
|
-
<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
|
-
</svg>
|
|
701
|
-
<span>5.017k</span>
|
|
702
|
-
</span>
|
|
703
|
-
<span class="star" title="Repo Forked">
|
|
704
|
-
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
705
|
-
<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
|
-
</path>
|
|
707
|
-
</svg>
|
|
708
|
-
<span>1203</span>
|
|
709
|
-
</span>
|
|
710
|
-
<span class="star">
|
|
711
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
712
|
-
<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
|
-
</svg>
|
|
714
|
-
<span>2030 stars this month</span>
|
|
715
|
-
</span>
|
|
716
|
-
</div>
|
|
717
|
-
<div class="details">
|
|
718
|
-
Ship AI Agents to Google Cloud in minutes, not months. Production-ready templates with built-in CI/CD, evaluation, and observability.
|
|
719
|
-
</div>
|
|
720
|
-
</div>
|
|
721
|
-
</li>
|
|
722
|
-
|
|
723
|
-
<li>
|
|
724
|
-
<div class="info">
|
|
725
|
-
<div class="rank">
|
|
726
|
-
<span title="Ranking 16">16</span>
|
|
727
|
-
<a href="https://github.com/comfyanonymous/ComfyUI" target="_blank" title="comfyanonymous/ComfyUI">comfyanonymous/ComfyUI</a>
|
|
727
|
+
<a href="https://github.com/FunAudioLLM/CosyVoice" target="_blank" title="FunAudioLLM/CosyVoice">FunAudioLLM/CosyVoice</a>
|
|
728
728
|
</div>
|
|
729
729
|
<div class="sub-title followers">
|
|
730
730
|
|
|
@@ -736,24 +736,24 @@
|
|
|
736
736
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
737
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>
|
|
738
738
|
</svg>
|
|
739
|
-
<span>
|
|
739
|
+
<span>18.505k</span>
|
|
740
740
|
</span>
|
|
741
741
|
<span class="star" title="Repo Forked">
|
|
742
742
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
743
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">
|
|
744
744
|
</path>
|
|
745
745
|
</svg>
|
|
746
|
-
<span>
|
|
746
|
+
<span>2060</span>
|
|
747
747
|
</span>
|
|
748
748
|
<span class="star">
|
|
749
749
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
750
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>
|
|
751
751
|
</svg>
|
|
752
|
-
<span>
|
|
752
|
+
<span>1109 stars this month</span>
|
|
753
753
|
</span>
|
|
754
754
|
</div>
|
|
755
755
|
<div class="details">
|
|
756
|
-
|
|
756
|
+
Multi-lingual large voice generation model, providing inference, training and deployment full-stack ability.
|
|
757
757
|
</div>
|
|
758
758
|
</div>
|
|
759
759
|
</li>
|
|
@@ -761,80 +761,46 @@
|
|
|
761
761
|
<li>
|
|
762
762
|
<div class="info">
|
|
763
763
|
<div class="rank">
|
|
764
|
-
<span title="Ranking 17">17</span>
|
|
765
|
-
<a href="https://github.com/Morganamilo/paru" target="_blank" title="Morganamilo/paru">Morganamilo/paru</a>
|
|
766
|
-
</div>
|
|
767
|
-
<div class="sub-title followers">
|
|
768
764
|
|
|
769
|
-
<
|
|
770
|
-
<span style="background-color: #dea584;"></span>Rust
|
|
771
|
-
</a>
|
|
765
|
+
<span title="Ranking 16">16</span>
|
|
772
766
|
|
|
773
|
-
<
|
|
774
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
775
|
-
<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
|
-
</svg>
|
|
777
|
-
<span>8.068k</span>
|
|
778
|
-
</span>
|
|
779
|
-
<span class="star" title="Repo Forked">
|
|
780
|
-
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
781
|
-
<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
|
-
</path>
|
|
783
|
-
</svg>
|
|
784
|
-
<span>298</span>
|
|
785
|
-
</span>
|
|
786
|
-
<span class="star">
|
|
787
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
788
|
-
<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
|
-
</svg>
|
|
790
|
-
<span>483 stars this month</span>
|
|
791
|
-
</span>
|
|
792
|
-
</div>
|
|
793
|
-
<div class="details">
|
|
794
|
-
Feature packed AUR helper
|
|
795
|
-
</div>
|
|
796
|
-
</div>
|
|
797
|
-
</li>
|
|
798
|
-
|
|
799
|
-
<li>
|
|
800
|
-
<div class="info">
|
|
801
|
-
<div class="rank">
|
|
802
|
-
<span title="Ranking 18">18</span>
|
|
803
|
-
<a href="https://github.com/MemoriLabs/Memori" target="_blank" title="MemoriLabs/Memori">MemoriLabs/Memori</a>
|
|
767
|
+
<a href="https://github.com/danielmiessler/Personal_AI_Infrastructure" target="_blank" title="danielmiessler/Personal_AI_Infrastructure">danielmiessler/Personal_AI_Infrastructure</a>
|
|
804
768
|
</div>
|
|
805
769
|
<div class="sub-title followers">
|
|
806
770
|
|
|
807
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
808
|
-
<span style="background-color: #
|
|
771
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
772
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
809
773
|
</a>
|
|
810
774
|
|
|
811
775
|
<span class="star" title="Stargazers Count">
|
|
812
776
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
813
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>
|
|
814
778
|
</svg>
|
|
815
|
-
<span>
|
|
779
|
+
<span>2.407k</span>
|
|
816
780
|
</span>
|
|
817
781
|
<span class="star" title="Repo Forked">
|
|
818
782
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
819
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">
|
|
820
784
|
</path>
|
|
821
785
|
</svg>
|
|
822
|
-
<span>
|
|
786
|
+
<span>459</span>
|
|
823
787
|
</span>
|
|
824
788
|
<span class="star">
|
|
825
789
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
826
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>
|
|
827
791
|
</svg>
|
|
828
|
-
<span>
|
|
792
|
+
<span>1261 stars this month</span>
|
|
829
793
|
</span>
|
|
830
794
|
</div>
|
|
831
795
|
<div class="details">
|
|
832
|
-
|
|
796
|
+
Personal AI Infrastructure for upgrading humans.
|
|
833
797
|
</div>
|
|
834
798
|
</div>
|
|
835
799
|
</li>
|
|
836
800
|
|
|
837
801
|
</ul>
|
|
802
|
+
|
|
803
|
+
</main>
|
|
838
804
|
<div class="footer">
|
|
839
805
|
<div>
|
|
840
806
|
<a href="https://jaywcjlove.github.io/#/sponsor" target="_blank">
|
|
@@ -853,7 +819,7 @@
|
|
|
853
819
|
<img src="https://img.shields.io/npm/v/@wcj/github-rank.svg?label=unpkg">
|
|
854
820
|
</a>
|
|
855
821
|
</div>
|
|
856
|
-
<div class="time">Last cache created on 2025/12/
|
|
822
|
+
<div class="time">Last cache created on 2025/12/29 by Github API v3.</div>
|
|
857
823
|
Create by <a href="https://github.com/jaywcjlove" target="_blank">小弟调调™</a>.
|
|
858
824
|
</div>
|
|
859
825
|
</body>
|