# test_claude_reverse **Repository Path**: fatgrass/test_claude_reverse ## Basic Information - **Project Name**: test_claude_reverse - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-10-21 - **Last Updated**: 2025-10-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 使用Claude逆向Claude Code 2.0.22 操作指南 ## 主要步骤 ### 1. 进入工作目录 ```bash cd step2/claude-code-reverse/ ``` ### 2. 代码美化 (Beautify) ```bash npm run beautify ``` ### 3. 代码分割 (Split) ```bash npm run split ``` ### 4. 大模型识别片段 (Learn) 让大模型识别哪些片段包含Claude Code: ```bash # 使用deepseek模型学习 npm run learn-deepseek # 使用gpt5模型学习 npm run learn-gpt5 ``` ### 5. 合并学习结果 将学习到的知识合并到统一的JSON文件中: ```bash # 合并deepseek和gpt5学习生成的json文件 node scripts/merge_all_json.js ``` 合并后的文件位于:`chunks/all_chunks.json` ### 6. 进一步分析 - **提示词位置**:`step2/claude-code-reverse/deobfuscation/prompts` - **逆向计划位置**:`step2/claude-code-reverse/deobfuscation/` - **逆向后源码位置**:`step2/claude-code-reverse/deobfuscation/src` ## 文件结构说明 ``` step2/claude-code-reverse/ ├── chunks/ │ └── all_chunks.json # 合并后的学习结果 ├── deobfuscation/ │ ├── prompts/ # 逆向分析提示词 │ ├── src/ # 逆向后生成的源码 │ └── ... # 逆向计划相关文件 ├── scripts/ │ └── merge_all_json.js # 合并JSON的脚本 └── ... ```