@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
package/web/trending-weekly.html
CHANGED
|
@@ -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,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/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
|
|
|
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/python" title="Programming Language Python">
|
|
172
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
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>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>3545 stars this week</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/anthropics/skills" target="_blank" title="anthropics/skills">anthropics/skills</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>28.272k</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>2598</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>4444 stars this week</span>
|
|
221
233
|
</span>
|
|
222
234
|
</div>
|
|
223
235
|
<div class="details">
|
|
224
|
-
|
|
236
|
+
Public repository for Agent Skills
|
|
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/davila7/claude-code-templates" target="_blank" title="davila7/claude-code-templates">davila7/claude-code-templates</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/python" title="Programming Language Python">
|
|
252
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
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>13.99k</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>1209</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>1102 stars this week</span>
|
|
259
273
|
</span>
|
|
260
274
|
</div>
|
|
261
275
|
<div class="details">
|
|
262
|
-
|
|
276
|
+
CLI tool for configuring and monitoring Claude Code
|
|
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/sgl-project/mini-sglang" target="_blank" title="sgl-project/mini-sglang">sgl-project/mini-sglang</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>2.579k</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>247</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>739 stars this week</span>
|
|
297
313
|
</span>
|
|
298
314
|
</div>
|
|
299
315
|
<div class="details">
|
|
300
|
-
|
|
316
|
+
A compact implementation of SGLang, designed to demystify the complexities of modern LLM serving systems.
|
|
301
317
|
</div>
|
|
302
318
|
</div>
|
|
303
319
|
</li>
|
|
@@ -305,7 +321,9 @@
|
|
|
305
321
|
<li>
|
|
306
322
|
<div class="info">
|
|
307
323
|
<div class="rank">
|
|
324
|
+
|
|
308
325
|
<span title="Ranking 5">5</span>
|
|
326
|
+
|
|
309
327
|
<a href="https://github.com/anthropics/claude-code" target="_blank" title="anthropics/claude-code">anthropics/claude-code</a>
|
|
310
328
|
</div>
|
|
311
329
|
<div class="sub-title followers">
|
|
@@ -318,20 +336,20 @@
|
|
|
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>49.299k</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>3493</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>1644 stars this week</span>
|
|
335
353
|
</span>
|
|
336
354
|
</div>
|
|
337
355
|
<div class="details">
|
|
@@ -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/danielmiessler/Fabric" target="_blank" title="danielmiessler/Fabric">danielmiessler/Fabric</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/go" title="Programming Language Go">
|
|
372
|
+
<span style="background-color: #00ADD8;"></span>Go
|
|
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>37.101k</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>3718</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>1487 stars this week</span>
|
|
373
393
|
</span>
|
|
374
394
|
</div>
|
|
375
395
|
<div class="details">
|
|
376
|
-
|
|
396
|
+
Fabric is an open-source framework for augmenting humans using AI. It provides a modular system for solving specific problems using a crowdsourced set of AI prompts that can be used anywhere.
|
|
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/google/A2UI" target="_blank" title="google/A2UI">google/A2UI</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/typescript" title="Programming Language TypeScript">
|
|
412
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
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>
|
|
419
|
+
<span>7.962k</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>528</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>2129 stars this week</span>
|
|
411
433
|
</span>
|
|
412
434
|
</div>
|
|
413
435
|
<div class="details">
|
|
414
|
-
|
|
436
|
+
|
|
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/google/langextract" target="_blank" title="google/langextract">google/langextract</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/python" title="Programming Language Python">
|
|
452
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
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>19.626k</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>1373</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>1887 stars this week</span>
|
|
449
473
|
</span>
|
|
450
474
|
</div>
|
|
451
475
|
<div class="details">
|
|
452
|
-
|
|
476
|
+
A Python library for extracting structured information from unstructured text using LLMs with precise source grounding and interactive visualization.
|
|
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/resemble-ai/chatterbox" target="_blank" title="resemble-ai/chatterbox">resemble-ai/chatterbox</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/python" title="Programming Language Python">
|
|
492
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
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.532k</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>2445</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>1699 stars this week</span>
|
|
487
513
|
</span>
|
|
488
514
|
</div>
|
|
489
515
|
<div class="details">
|
|
490
|
-
|
|
516
|
+
SoTA open-source TTS
|
|
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/pollen-robotics/reachy_mini" target="_blank" title="pollen-robotics/reachy_mini">pollen-robotics/reachy_mini</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/python" title="Programming Language Python">
|
|
532
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
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>0.626k</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>90</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>176 stars this week</span>
|
|
525
553
|
</span>
|
|
526
554
|
</div>
|
|
527
555
|
<div class="details">
|
|
528
|
-
|
|
556
|
+
Reachy Mini's SDK
|
|
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/danielmiessler/Personal_AI_Infrastructure" target="_blank" title="danielmiessler/Personal_AI_Infrastructure">danielmiessler/Personal_AI_Infrastructure</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>2.407k</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>459</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>718 stars this week</span>
|
|
563
593
|
</span>
|
|
564
594
|
</div>
|
|
565
595
|
<div class="details">
|
|
566
|
-
|
|
596
|
+
Personal AI Infrastructure for upgrading humans.
|
|
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/makeplane/plane" target="_blank" title="makeplane/plane">makeplane/plane</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/typescript" title="Programming Language TypeScript">
|
|
612
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
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>42.136k</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>3099</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>1414 stars this week</span>
|
|
601
633
|
</span>
|
|
602
634
|
</div>
|
|
603
635
|
<div class="details">
|
|
604
|
-
|
|
636
|
+
🔥🔥🔥 Open-source Jira, Linear, Monday, and ClickUp alternative. Plane is a modern project management platform to manage tasks, sprints, docs, and triage.
|
|
605
637
|
</div>
|
|
606
638
|
</div>
|
|
607
639
|
</li>
|
|
@@ -609,7 +641,9 @@
|
|
|
609
641
|
<li>
|
|
610
642
|
<div class="info">
|
|
611
643
|
<div class="rank">
|
|
644
|
+
|
|
612
645
|
<span title="Ranking 13">13</span>
|
|
646
|
+
|
|
613
647
|
<a href="https://github.com/sst/opencode" target="_blank" title="sst/opencode">sst/opencode</a>
|
|
614
648
|
</div>
|
|
615
649
|
<div class="sub-title followers">
|
|
@@ -622,20 +656,20 @@
|
|
|
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>43.305k</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>3713</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>2418 stars this week</span>
|
|
639
673
|
</span>
|
|
640
674
|
</div>
|
|
641
675
|
<div class="details">
|
|
@@ -647,46 +681,10 @@
|
|
|
647
681
|
<li>
|
|
648
682
|
<div class="info">
|
|
649
683
|
<div class="rank">
|
|
650
|
-
<span title="Ranking 14">14</span>
|
|
651
|
-
<a href="https://github.com/tursodatabase/turso" target="_blank" title="tursodatabase/turso">tursodatabase/turso</a>
|
|
652
|
-
</div>
|
|
653
|
-
<div class="sub-title followers">
|
|
654
684
|
|
|
655
|
-
<
|
|
656
|
-
<span style="background-color: #dea584;"></span>Rust
|
|
657
|
-
</a>
|
|
685
|
+
<span title="Ranking 14">14</span>
|
|
658
686
|
|
|
659
|
-
<
|
|
660
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
661
|
-
<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
|
-
</svg>
|
|
663
|
-
<span>15.893k</span>
|
|
664
|
-
</span>
|
|
665
|
-
<span class="star" title="Repo Forked">
|
|
666
|
-
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
667
|
-
<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
|
-
</path>
|
|
669
|
-
</svg>
|
|
670
|
-
<span>651</span>
|
|
671
|
-
</span>
|
|
672
|
-
<span class="star">
|
|
673
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
674
|
-
<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
|
-
</svg>
|
|
676
|
-
<span>462 stars this week</span>
|
|
677
|
-
</span>
|
|
678
|
-
</div>
|
|
679
|
-
<div class="details">
|
|
680
|
-
Turso is an in-process SQL database, compatible with SQLite.
|
|
681
|
-
</div>
|
|
682
|
-
</div>
|
|
683
|
-
</li>
|
|
684
|
-
|
|
685
|
-
<li>
|
|
686
|
-
<div class="info">
|
|
687
|
-
<div class="rank">
|
|
688
|
-
<span title="Ranking 15">15</span>
|
|
689
|
-
<a href="https://github.com/HKUDS/DeepCode" target="_blank" title="HKUDS/DeepCode">HKUDS/DeepCode</a>
|
|
687
|
+
<a href="https://github.com/AUTOMATIC1111/stable-diffusion-webui" target="_blank" title="AUTOMATIC1111/stable-diffusion-webui">AUTOMATIC1111/stable-diffusion-webui</a>
|
|
690
688
|
</div>
|
|
691
689
|
<div class="sub-title followers">
|
|
692
690
|
|
|
@@ -698,29 +696,31 @@
|
|
|
698
696
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
699
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>
|
|
700
698
|
</svg>
|
|
701
|
-
<span>
|
|
699
|
+
<span>159.412k</span>
|
|
702
700
|
</span>
|
|
703
701
|
<span class="star" title="Repo Forked">
|
|
704
702
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
705
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">
|
|
706
704
|
</path>
|
|
707
705
|
</svg>
|
|
708
|
-
<span>
|
|
706
|
+
<span>29651</span>
|
|
709
707
|
</span>
|
|
710
708
|
<span class="star">
|
|
711
709
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
712
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>
|
|
713
711
|
</svg>
|
|
714
|
-
<span>
|
|
712
|
+
<span>327 stars this week</span>
|
|
715
713
|
</span>
|
|
716
714
|
</div>
|
|
717
715
|
<div class="details">
|
|
718
|
-
|
|
716
|
+
Stable Diffusion web UI
|
|
719
717
|
</div>
|
|
720
718
|
</div>
|
|
721
719
|
</li>
|
|
722
720
|
|
|
723
721
|
</ul>
|
|
722
|
+
|
|
723
|
+
</main>
|
|
724
724
|
<div class="footer">
|
|
725
725
|
<div>
|
|
726
726
|
<a href="https://jaywcjlove.github.io/#/sponsor" target="_blank">
|
|
@@ -739,7 +739,7 @@
|
|
|
739
739
|
<img src="https://img.shields.io/npm/v/@wcj/github-rank.svg?label=unpkg">
|
|
740
740
|
</a>
|
|
741
741
|
</div>
|
|
742
|
-
<div class="time">Last cache created on 2025/12/
|
|
742
|
+
<div class="time">Last cache created on 2025/12/29 by Github API v3.</div>
|
|
743
743
|
Create by <a href="https://github.com/jaywcjlove" target="_blank">小弟调调™</a>.
|
|
744
744
|
</div>
|
|
745
745
|
</body>
|