Skip to content

Commit 0e0fa28

Browse files
author
zhaobinjie
committed
Initial commit: Claude Code 源码泄露资源合集
0 parents  commit 0e0fa28

6 files changed

Lines changed: 610 additions & 0 deletions

File tree

.github/scripts/update-stars.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Star 数据更新脚本(简化版)
2+
// 实际使用时需要完整的 API 调用逻辑
3+
console.log('Star update script placeholder');
4+
console.log('To implement: fetch GitHub API and update README.md');

.github/workflows/update-stars.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Update Stars
2+
3+
on:
4+
schedule:
5+
- cron: '0 0 * * 0' # 每周日午夜更新
6+
workflow_dispatch:
7+
8+
jobs:
9+
update:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Setup Node.js
15+
uses: actions/setup-node@v4
16+
with:
17+
node-version: '20'
18+
19+
- name: Install dependencies
20+
run: npm install node-fetch
21+
22+
- name: Update stars
23+
env:
24+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25+
run: |
26+
node .github/scripts/update-stars.js
27+
28+
- name: Commit changes
29+
run: |
30+
git config --local user.email "action@github.com"
31+
git config --local user.name "GitHub Action"
32+
git add README.md
33+
git diff --staged --quiet || git commit -m "chore: update stars data"
34+
git push

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Logs
2+
*.log
3+
4+
# OS
5+
.DS_Store
6+
Thumbs.db
7+
8+
# IDE
9+
.vscode/
10+
.idea/
11+
*.swp
12+
*.swo
13+
14+
# Node
15+
node_modules/
16+
17+
# Python
18+
__pycache__/
19+
*.pyc
20+
21+
# 敏感信息
22+
.env
23+
.env.local
24+
*.pem
25+
*.key

CONTRIBUTING.md

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
# 贡献指南
2+
3+
感谢你对 Claude Code 源码泄露资源合集的关注!欢迎提交 PR 贡献资源。
4+
5+
## 如何提交资源
6+
7+
### 1. Fork 仓库
8+
```bash
9+
gh repo fork claude-code-leak-resources
10+
```
11+
12+
### 2. 创建分支
13+
```bash
14+
git checkout -b add-resource-xxx
15+
```
16+
17+
### 3. 编辑 README.md
18+
在对应分类下添加资源,格式如下:
19+
20+
```markdown
21+
| 仓库 | Stars | 说明 |
22+
|------|-------|------|
23+
| [owner/repo](https://github.com/owner/repo) | ⭐123 | 简短描述 |
24+
```
25+
26+
### 4. 提交更改
27+
```bash
28+
git add README.md
29+
git commit -m "docs: 添加 xxx 资源"
30+
git push origin add-resource-xxx
31+
```
32+
33+
### 5. 创建 Pull Request
34+
- 标题:`docs: 添加 xxx 资源`
35+
- 描述:说明资源价值和分类理由
36+
37+
## 资源标准
38+
39+
### ✅ 接受
40+
- 高质量原创分析文章
41+
- 技术深度解读
42+
- 安全研究成果
43+
- 实用工具/插件/技能
44+
- 社区讨论汇总
45+
46+
### ❌ 不接受
47+
- 纯搬运无增值内容
48+
- 侵权内容
49+
- 恶意利用教程
50+
- 低质量营销内容
51+
52+
## 分类说明
53+
54+
### 源码镜像
55+
- 完整的 Claude Code 源码镜像
56+
- 本地可运行版本
57+
- 重写/重构版本
58+
59+
### 深度分析
60+
- 架构分析文章
61+
- 子系统深度解读
62+
- 隐藏功能挖掘
63+
64+
### 安全审计
65+
- 安全研究工具
66+
- 审计报告
67+
- 漏洞分析
68+
69+
### 工具/插件
70+
- 开发工具
71+
- 安全工具
72+
- 插件/技能
73+
- 专业应用
74+
75+
## 更新频率
76+
77+
- 日常更新:社区新资源
78+
- 每周汇总:Star 数据更新
79+
- 每月整理:分类优化
80+
81+
## 联系方式
82+
83+
- Issue: https://github.com/your-username/claude-code-leak-resources/issues
84+
- Discussion: https://github.com/your-username/claude-code-leak-resources/discussions
85+
86+
## 许可证
87+
88+
MIT License - 原创内容
89+
第三方内容版权归各自作者所有

LICENSE

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
MIT License
2+
3+
Copyright (c) 2026 Claude Code Leak Resources Contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+
23+
---
24+
25+
Note: This repository curates publicly available resources about the Claude Code
26+
source code leak of March 31, 2026. All linked materials remain property of their
27+
respective owners. This repository is for educational and research purposes only.

0 commit comments

Comments
 (0)