-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
536 lines (513 loc) · 25.7 KB
/
index.html
File metadata and controls
536 lines (513 loc) · 25.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Claude Code 源码泄露资源合集 - 150+ 高质量资源</title>
<meta name="description" content="Claude Code 源码泄露资源合集 - 150+ 高质量资源 curated list">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif; line-height: 1.6; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; padding: 20px; }
.container { max-width: 1200px; margin: 0 auto; background: white; border-radius: 12px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
h1 { text-align: center; color: #333; margin-bottom: 10px; font-size: 2.5em; }
h2 { color: #333; margin: 30px 0 15px; padding-bottom: 10px; border-bottom: 2px solid #667eea; }
h3 { color: #555; margin: 20px 0 10px; }
.badges { text-align: center; margin: 20px 0; }
.badges img { margin: 5px; }
.logo { text-align: center; margin: 30px 0; }
.logo img { max-width: 400px; width: 100%; height: auto; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin: 30px 0; background: #f8f9fa; padding: 20px; border-radius: 8px; }
.stat-item { text-align: center; }
.stat-value { font-size: 24px; font-weight: bold; color: #667eea; }
.stat-label { font-size: 14px; color: #666; margin-top: 5px; }
.disclaimer { background: #fff3cd; border-left: 4px solid #ffc107; padding: 15px; margin: 20px 0; border-radius: 4px; }
a { color: #667eea; text-decoration: none; font-weight: 500; }
a:hover { text-decoration: underline; }
.resource-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin: 20px 0; }
.resource-card { background: #f8f9fa; border-radius: 8px; padding: 20px; border-left: 4px solid #667eea; transition: transform 0.2s; }
.resource-card:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(102,126,234,0.2); }
.resource-card h4 { color: #333; margin-bottom: 10px; }
.resource-card .stars { color: #f1c40f; font-size: 14px; margin: 5px 0; }
.resource-card .desc { color: #666; font-size: 14px; margin: 10px 0; }
.resource-card .tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.tag { background: #667eea; color: white; padding: 3px 8px; border-radius: 12px; font-size: 12px; }
.tag.hot { background: #e74c3c; }
.tag.cn { background: #27ae60; }
.quick-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin: 20px 0; }
.quick-link { display: flex; align-items: center; padding: 15px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border-radius: 8px; text-decoration: none; transition: transform 0.2s; }
.quick-link:hover { transform: scale(1.02); text-decoration: none; }
.quick-link .icon { font-size: 24px; margin-right: 15px; }
.quick-link .text { flex: 1; }
.quick-link .text strong { display: block; font-size: 16px; }
.quick-link .text small { opacity: 0.9; font-size: 13px; }
.category-section { margin: 30px 0; }
.resource-list { list-style: none; }
.resource-list li { padding: 10px 0; border-bottom: 1px solid #eee; }
.resource-list li:last-child { border-bottom: none; }
.resource-list a { display: flex; justify-content: space-between; align-items: center; }
.resource-list .meta { font-size: 13px; color: #999; }
.toc { background: #f8f9fa; padding: 20px; border-radius: 8px; margin: 20px 0; }
.toc ul { list-style: none; }
.toc li { margin: 8px 0; }
.toc a { color: #667eea; }
@media (max-width: 768px) {
.container { padding: 20px; }
h1 { font-size: 1.8em; }
.stats { grid-template-columns: repeat(2, 1fr); }
.resource-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<div class="container">
<h1>🔓 Claude Code 源码泄露资源合集</h1>
<div class="badges">
<span style="display: inline-block; background: #2ea44f; color: white; padding: 6px 12px; border-radius: 6px; margin: 5px; font-weight: bold;">⭐ Stars</span>
<span style="display: inline-block; background: #2ea44f; color: white; padding: 6px 12px; border-radius: 6px; margin: 5px; font-weight: bold;">🍴 Forks</span>
<span style="display: inline-block; background: #0366d6; color: white; padding: 6px 12px; border-radius: 6px; margin: 5px; font-weight: bold;">🕐 Last Commit</span>
<span style="display: inline-block; background: #6f42c1; color: white; padding: 6px 12px; border-radius: 6px; margin: 5px; font-weight: bold;">📄 MIT License</span>
</div>
<div class="logo">
<div style="font-size: 120px; line-height: 1;">🤖</div>
<p style="font-size: 24px; font-weight: bold; color: #667eea; margin-top: 10px;">Claude Code</p>
</div>
<p style="text-align: center; font-size: 18px; color: #666; margin: 20px 0;">
<strong>📦 150+ 高质量资源</strong> | <strong>🔍 深度技术分析</strong> | <strong>🛡️ 安全审计工具</strong> | <strong>📚 学习路径</strong>
</p>
<div class="stats">
<div class="stat-item">
<div class="stat-value">2026-04-01</div>
<div class="stat-label">📅 最后更新</div>
</div>
<div class="stat-item">
<div class="stat-value">2026-03-31</div>
<div class="stat-label">⏰ 事件时间</div>
</div>
<div class="stat-item">
<div class="stat-value">150+</div>
<div class="stat-label">📊 资源数量</div>
</div>
<div class="stat-item">
<div class="stat-value">20+</div>
<div class="stat-label">📝 分析文章</div>
</div>
</div>
<div class="disclaimer">
<strong>⚠️ 免责声明:</strong>本资源合集仅用于教育和研究目的。所有链接资源版权归原作者所有。请勿用于商业分发或恶意利用。
</div>
<!-- 目录 -->
<div class="toc">
<h3>📑 目录</h3>
<ul>
<li><a href="#quick-links">🚀 快速访问</a></li>
<li><a href="#core-resources">🔥 核心资源 Top 15</a></li>
<li><a href="#source-mirrors">📦 源码镜像仓库</a></li>
<li><a href="#analysis-articles">📝 深度分析文章</a></li>
<li><a href="#security-tools">🛡️ 安全审计工具</a></li>
<li><a href="#plugins-skills">🔌 插件/技能</a></li>
<li><a href="#community">💬 社区讨论</a></li>
<li><a href="#timeline">📅 事件时间线</a></li>
</ul>
</div>
<!-- 快速访问链接 -->
<h2 id="quick-links">🚀 快速访问</h2>
<div class="quick-links">
<a href="https://github.com/instructkr/claw-code" class="quick-link" target="_blank" rel="noopener">
<span class="icon">🔥</span>
<div class="text">
<strong>claw-code</strong>
<small>64.5k stars · 最快 50k 项目</small>
</div>
</a>
<a href="https://github.com/nblintao/awesome-claude-code-postleak-insights" class="quick-link" target="_blank" rel="noopener">
<span class="icon">📚</span>
<div class="text">
<strong>Post-Leak Insights</strong>
<small>高质量 curated list</small>
</div>
</a>
<a href="https://github.com/hesreallyhim/awesome-claude-code" class="quick-link" target="_blank" rel="noopener">
<span class="icon">🛠️</span>
<div class="text">
<strong>Awesome Claude Code</strong>
<small>35k stars · 工具大全</small>
</div>
</a>
<a href="https://github.com/catyans/claude-code-source-analysis" class="quick-link" target="_blank" rel="noopener">
<span class="icon">🔬</span>
<div class="text">
<strong>源码深度分析</strong>
<small>18 个模块解读</small>
</div>
</a>
<a href="https://github.com/trailofbits/claude-code-devcontainer" class="quick-link" target="_blank" rel="noopener">
<span class="icon">🛡️</span>
<div class="text">
<strong>安全沙箱</strong>
<small>Trail of Bits 出品</small>
</div>
</a>
<a href="https://github.com/openedclaude/claude-reviews-claude" class="quick-link" target="_blank" rel="noopener">
<span class="icon">🪞</span>
<div class="text">
<strong>Claude 自分析</strong>
<small>AI 读自己源码</small>
</div>
</a>
</div>
<!-- 核心资源 Top 15 -->
<h2 id="core-resources">🔥 核心资源 Top 15</h2>
<div class="resource-grid">
<div class="resource-card">
<h4>awesome-claude-code-postleak-insights</h4>
<div class="stars">⭐⭐⭐⭐⭐ 必收藏</div>
<div class="desc">高质量分析 curated list,泄露事件最权威资源索引</div>
<div class="tags"><span class="tag hot">热门</span><span class="tag"> curated</span></div>
<p style="margin-top:10px"><a href="https://github.com/nblintao/awesome-claude-code-postleak-insights" target="_blank">→ 访问仓库</a></p>
</div>
<div class="resource-card">
<h4>claw-code</h4>
<div class="stars">⭐⭐⭐⭐⭐ 64.5k stars</div>
<div class="desc">历史最快 50k star 项目,Rust 重写版本</div>
<div class="tags"><span class="tag hot">64.5k</span><span class="tag">Rust</span></div>
<p style="margin-top:10px"><a href="https://github.com/instructkr/claw-code" target="_blank">→ 访问仓库</a></p>
</div>
<div class="resource-card">
<h4>awesome-claude-code</h4>
<div class="stars">⭐⭐⭐⭐⭐ 35k stars</div>
<div class="desc">最全面的 Claude Code 工具列表,持续更新</div>
<div class="tags"><span class="tag hot">35k</span><span class="tag">工具</span></div>
<p style="margin-top:10px"><a href="https://github.com/hesreallyhim/awesome-claude-code" target="_blank">→ 访问仓库</a></p>
</div>
<div class="resource-card">
<h4>claude-code-source-analysis</h4>
<div class="stars">⭐⭐⭐⭐⭐ 深度分析</div>
<div class="desc">18 个 Markdown 文件,逐模块架构解读</div>
<div class="tags"><span class="tag">分析</span><span class="tag cn">中文</span></div>
<p style="margin-top:10px"><a href="https://github.com/catyans/claude-code-source-analysis" target="_blank">→ 访问仓库</a></p>
</div>
<div class="resource-card">
<h4>claude-reviews-claude</h4>
<div class="stars">⭐⭐⭐⭐⭐ AI 自分析</div>
<div class="desc">Claude 分析自己的源码,元认知研究</div>
<div class="tags"><span class="tag">AI</span><span class="tag">自指</span></div>
<p style="margin-top:10px"><a href="https://github.com/openedclaude/claude-reviews-claude" target="_blank">→ 访问仓库</a></p>
</div>
<div class="resource-card">
<h4>claude-code-devcontainer</h4>
<div class="stars">⭐⭐⭐⭐⭐ 安全</div>
<div class="desc">Trail of Bits 出品的安全沙箱环境</div>
<div class="tags"><span class="tag">安全</span><span class="tag">沙箱</span></div>
<p style="margin-top:10px"><a href="https://github.com/trailofbits/claude-code-devcontainer" target="_blank">→ 访问仓库</a></p>
</div>
</div>
<!-- 源码镜像仓库 -->
<h2 id="source-mirrors">📦 源码镜像仓库</h2>
<div class="category-section">
<h3>主要镜像</h3>
<ul class="resource-list">
<li>
<a href="https://github.com/instructkr/claw-code" target="_blank">
<span>🔥 <strong>claw-code</strong> - 64.5k stars,Rust 重写版</span>
<span class="meta">64,516⭐</span>
</a>
</li>
<li>
<a href="https://github.com/asgeirtj/system_prompts_leaks" target="_blank">
<span>📜 <strong>system_prompts_leaks</strong> - 多模型系统提示词提取</span>
<span class="meta">35,351⭐</span>
</a>
</li>
<li>
<a href="https://github.com/NanmiCoder/claude-code-haha" target="_blank">
<span>💻 <strong>claude-code-haha</strong> - 本地可运行版本</span>
<span class="meta">349⭐</span>
</a>
</li>
<li>
<a href="https://github.com/leaked-claude-code/leaked-claude-code" target="_blank">
<span>📦 <strong>leaked-claude-code</strong> - 完整开源镜像</span>
<span class="meta">172⭐</span>
</a>
</li>
<li>
<a href="https://github.com/Ahmad-progr/claude-leaked-files" target="_blank">
<span>📚 <strong>claude-leaked-files</strong> - 教育用途镜像</span>
<span class="meta">137⭐</span>
</a>
</li>
<li>
<a href="https://github.com/Hyper66666/claude-code-sourcemap" target="_blank">
<span>🗺️ <strong>claude-code-sourcemap</strong> - sourcemap 镜像</span>
<span class="meta">117⭐</span>
</a>
</li>
<li>
<a href="https://github.com/fazxes/Claude-code" target="_blank">
<span>🔨 <strong>Claude-code</strong> - 基于泄露源码重建</span>
<span class="meta">110⭐</span>
</a>
</li>
<li>
<a href="https://github.com/JiaranI/start-claude-code" target="_blank">
<span>🚀 <strong>start-claude-code</strong> - 一键启动 v2.1.88</span>
<span class="meta">90⭐</span>
</a>
</li>
</ul>
<h3>中文镜像</h3>
<ul class="resource-list">
<li>
<a href="https://github.com/ThreeFish-AI/analysis_claude_code" target="_blank">
<span>🔬 <strong>analysis_claude_code</strong> - 逆向工程研究</span>
<span class="meta">270⭐</span>
</a>
</li>
<li>
<a href="https://github.com/xcanwin/open-claude-code" target="_blank">
<span>✅ <strong>open-claude-code</strong> - 首个干净可安装版本</span>
<span class="meta">15⭐</span>
</a>
</li>
<li>
<a href="https://github.com/noya21th/claude-source-leaked" target="_blank">
<span>🏷️ <strong>claude-source-leaked</strong> - 87 个 feature flags</span>
<span class="meta">43⭐</span>
</a>
</li>
</ul>
</div>
<!-- 深度分析文章 -->
<h2 id="analysis-articles">📝 深度分析文章</h2>
<div class="category-section">
<h3>架构分析</h3>
<ul class="resource-list">
<li>
<a href="https://dev.to/gabrielanhaia/claude-codes-entire-source-code-was-just-leaked-via-npm-source-maps-heres-whats-inside-cjo" target="_blank">
<span>🏗️ <strong>Claude Code's Entire Source Code Was Just Leaked</strong> - 生产架构与技术栈</span>
<span class="meta">Dev.to</span>
</a>
</li>
<li>
<a href="https://discuss.huggingface.co/t/claude-code-source-leak-production-ai-architecture-patterns-from-512-000-lines/174846" target="_blank">
<span>🧠 <strong>Production AI Architecture Patterns</strong> - 上下文压缩与 AutoDream</span>
<span class="meta">HuggingFace</span>
</a>
</li>
<li>
<a href="https://github.com/catyans/claude-code-source-analysis" target="_blank">
<span>📖 <strong>Claude Code 泄露源码深度分析</strong> - 逐模块架构解读(18 个文件)</span>
<span class="meta">GitHub</span>
</a>
</li>
<li>
<a href="https://kuber.studio/blog/AI/Claude-Code%27s-Entire-Source-Code-Got-Leaked-via-a-Sourcemap-in-npm%2C-Let%27s-Talk-About-it" target="_blank">
<span>🗺️ <strong>未来路线图与隐藏功能</strong> - BUDDY/KAIROS/ULTRAPLAN</span>
<span class="meta">Kuber Studio</span>
</a>
</li>
</ul>
<h3>隐藏功能</h3>
<ul class="resource-list">
<li>
<a href="https://github.com/noya21th/claude-source-leaked" target="_blank">
<span>🏷️ <strong>87 个 Feature Flags</strong> - 未发布功能开关详解</span>
<span class="meta">GitHub</span>
</a>
</li>
<li>
<a href="https://github.com/FiroYu/Claude-Code-Buddy-Collection" target="_blank">
<span>🐾 <strong>Claude-Code-Buddy-Collection</strong> - 18 种宠物物种图鉴</span>
<span class="meta">GitHub</span>
</a>
</li>
</ul>
<h3>子系统深度</h3>
<ul class="resource-list">
<li>
<a href="https://medium.com/@nblintao/how-an-ai-reads-the-web-a-deep-dive-into-claude-codes-webfetchtool-0abee4446343" target="_blank">
<span>🌐 <strong>How an AI Reads the Web</strong> - WebFetchTool 设计(1,173 行)</span>
<span class="meta">Medium</span>
</a>
</li>
</ul>
</div>
<!-- 安全审计工具 -->
<h2 id="security-tools">🛡️ 安全审计工具</h2>
<div class="resource-grid">
<div class="resource-card">
<h4>trailofbits/skills</h4>
<div class="stars">⭐⭐⭐⭐⭐ 4,170 stars</div>
<div class="desc">Trail of Bits 安全研究技能,代码审计与漏洞检测</div>
<div class="tags"><span class="tag">安全</span><span class="tag">审计</span></div>
<p style="margin-top:10px"><a href="https://github.com/trailofbits/skills" target="_blank">→ 访问仓库</a></p>
</div>
<div class="resource-card">
<h4>TheAuditorTool/Auditor</h4>
<div class="stars">⭐⭐⭐⭐⭐ 541 stars</div>
<div class="desc">VibeCoding 解毒剂,自动化安全审计</div>
<div class="tags"><span class="tag">审计</span><span class="tag">自动化</span></div>
<p style="margin-top:10px"><a href="https://github.com/TheAuditorTool/Auditor" target="_blank">→ 访问仓库</a></p>
</div>
<div class="resource-card">
<h4>peg/rampart</h4>
<div class="stars">⭐⭐⭐⭐ 59 stars</div>
<div class="desc">AI Agent 防火墙,策略引擎控制 AI 行为</div>
<div class="tags"><span class="tag">防火墙</span><span class="tag">策略</span></div>
<p style="margin-top:10px"><a href="https://github.com/peg/rampart" target="_blank">→ 访问仓库</a></p>
</div>
</div>
<!-- 插件/技能 -->
<h2 id="plugins-skills">🔌 插件/技能</h2>
<ul class="resource-list">
<li>
<a href="https://github.com/qdhenry/Claude-Command-Suite" target="_blank">
<span>🎯 <strong>Claude-Command-Suite</strong> - 专业命令套件(1,104⭐)</span>
<span class="meta">1,104⭐</span>
</a>
</li>
<li>
<a href="https://github.com/zubair-trabzada/geo-seo-claude" target="_blank">
<span>🌍 <strong>geo-seo-claude</strong> - GEO 优先 SEO 技能(4,621⭐)</span>
<span class="meta">4,621⭐</span>
</a>
</li>
<li>
<a href="https://github.com/tradermonty/claude-trading-skills" target="_blank">
<span>📈 <strong>claude-trading-skills</strong> - 交易分析技能(478⭐)</span>
<span class="meta">478⭐</span>
</a>
</li>
<li>
<a href="https://github.com/xjtulyc/MedgeClaw" target="_blank">
<span>🧬 <strong>MedgeClaw</strong> - 生物医学 AI 研究助手(935⭐)</span>
<span class="meta">935⭐</span>
</a>
</li>
<li>
<a href="https://github.com/chiphuyen/sniffly" target="_blank">
<span>📊 <strong>sniffly</strong> - 使用统计仪表板(1,193⭐)</span>
<span class="meta">1,193⭐</span>
</a>
</li>
</ul>
<!-- 社区讨论 -->
<h2 id="community">💬 社区讨论</h2>
<ul class="resource-list">
<li>
<a href="https://news.ycombinator.com/item?id=47584540" target="_blank">
<span>🔥 <strong>Hacker News 讨论</strong> - 正则情感检测、反蒸馏防御</span>
<span class="meta">HN</span>
</a>
</li>
<li>
<a href="https://www.reddit.com/r/LocalLLaMA/comments/1s8ijfb/claude_code_source_code_has_been_leaked_via_a_map/" target="_blank">
<span>📢 <strong>r/LocalLLaMA</strong> - 隐藏功能详解(KAIROS/Buddy/Undercover)</span>
<span class="meta">Reddit</span>
</a>
</li>
<li>
<a href="https://www.reddit.com/r/ClaudeAI/comments/1s8ifm6/claude_code_source_code_has_been_leaked_via_a_map/" target="_blank">
<span>🤖 <strong>r/ClaudeAI</strong> - CCH attestation 机制分析</span>
<span class="meta">Reddit</span>
</a>
</li>
<li>
<a href="https://x.com/Fried_rice/status/2038894956459290963" target="_blank">
<span>🐦 <strong>发现者推文</strong> - Chaofan Shou (@Fried_rice)</span>
<span class="meta">X</span>
</a>
</li>
<li>
<a href="https://x.com/simonwongio/status/2039003134484488484" target="_blank">
<span>🔗 <strong>源码分析汇总</strong> - Simon Wong(含 3 个源码链接)</span>
<span class="meta">X</span>
</a>
</li>
</ul>
<!-- 事件时间线 -->
<h2 id="timeline">📅 事件时间线</h2>
<ul class="resource-list">
<li>
<span>📌 <strong>2025-02</strong> - 首次泄露(早期版本,影响较小)</span>
</li>
<li>
<span>🔍 <strong>2026-03-31 09:00 UTC</strong> - Chaofan Shou 发现 npm sourcemap 泄露</span>
</li>
<li>
<span>🐦 <strong>2026-03-31 10:30 UTC</strong> - 第一条推文发布</span>
</li>
<li>
<span>📦 <strong>2026-03-31 12:00 UTC</strong> - GitHub 镜像仓库创建</span>
</li>
<li>
<span>🔥 <strong>2026-03-31 14:00 UTC</strong> - claw-code 仓库创建</span>
</li>
<li>
<span>⭐ <strong>2026-03-31 16:00 UTC</strong> - 突破 10k stars</span>
</li>
<li>
<span>🚀 <strong>2026-03-31 18:00 UTC</strong> - 突破 30k stars</span>
</li>
<li>
<span>🏆 <strong>2026-03-31 20:00 UTC</strong> - 突破 50k stars(历史最快)</span>
</li>
<li>
<span>📈 <strong>2026-03-31 23:59 UTC</strong> - 超过 60k stars</span>
</li>
<li>
<span>📝 <strong>2026-04-01 00:00 UTC</strong> - 社区分析文章开始涌现</span>
</li>
<li>
<span>🛡️ <strong>2026-04-01 08:00 UTC</strong> - Trail of Bits 发布安全沙箱</span>
</li>
<li>
<span>✅ <strong>2026-04-01</strong> - 本资源合集创建</span>
</li>
</ul>
<!-- 副业机会 -->
<h2 id="opportunity">💰 副业机会 | Claude API Token 分销合伙人</h2>
<div class="resource-card" style="background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%); border-left: 4px solid #667eea;">
<h3 style="color: #667eea; margin-bottom: 15px;">🚀 项目介绍</h3>
<p style="margin-bottom: 20px;">Claude API 国内中转服务,现开放分销合伙人计划。零成本启动,共享 AI 开发者市场红利。</p>
<h4 style="color: #333; margin: 15px 0 10px;">💵 收益模式</h4>
<ul style="margin-bottom: 20px;">
<li><strong>佣金比例:</strong>*% 返佣(具体比例详询)</li>
<li><strong>结算周期:</strong>日结(每天晚上结算)</li>
<li><strong>结算方式:</strong>支付宝转账</li>
<li><strong>客户复购:</strong>永久绑定,持续收益</li>
</ul>
<h4 style="color: #333; margin: 15px 0 10px;">📦 我们提供</h4>
<ul style="margin-bottom: 20px;">
<li>✅ 满血 Claude API(Sonnet/Opus 4.6)</li>
<li>✅ 100% 缓存命中率,价格优势明显</li>
<li>✅ 企业开票支持</li>
<li>✅ 完整新手教程 + FAQ 文档</li>
<li>✅ 宣传文案/素材支持</li>
<li>✅ 7×24 小时技术支持</li>
</ul>
<h4 style="color: #333; margin: 15px 0 10px;">🎯 适合人群</h4>
<ul style="margin-bottom: 20px;">
<li>AI 工具博主/UP 主</li>
<li>开发者社区运营者</li>
<li>闲鱼/小红书卖家</li>
<li>有开发者流量的个人/团队</li>
<li>想拓展副业收入的开发者</li>
</ul>
<p style="text-align: center; margin-top: 25px; padding: 15px; background: #fff3cd; border-radius: 8px;">
💡 <strong>感兴趣可查看完整文档了解详情,或私信咨询。</strong><br>
<span style="font-size: 14px; color: #666;">这是一个零成本、可持续的副业项目。已有成熟运营体系,加入即可开始推广。</span>
</p>
</div>
<div style="text-align: center; margin-top: 40px; padding-top: 30px; border-top: 2px solid #eee; color: #999;">
<p><strong>最后更新:</strong>2026-04-03 · <strong>资源总数:</strong>150+</p>
<p>📄 完整 README 请访问 <a href="https://github.com/bugcodes/claude-code-resources" target="_blank">GitHub 仓库</a></p>
<p style="margin-top: 15px;">
<a href="https://github.com/bugcodes/claude-code-resources/stargazers">⭐ Star This Repo</a> ·
<a href="https://github.com/bugcodes/claude-code-resources/issues">🐛 Report Issue</a> ·
<a href="https://github.com/bugcodes/claude-code-resources/discussions">💬 Discuss</a>
</p>
</div>
</div>
</body>
</html>