@reverse-craft/smart-fs 1.0.2 → 1.0.4
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 +2 -2
- package/dist/server.js +820 -102
- package/dist/server.js.map +4 -4
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ MCP server for AI-assisted JavaScript reverse engineering. Beautifies minified/o
|
|
|
4
4
|
|
|
5
5
|
## Why?
|
|
6
6
|
|
|
7
|
-
When reverse engineering JavaScript (
|
|
7
|
+
When reverse engineering JavaScript (minified or obfuscated code), AI assistants face two problems:
|
|
8
8
|
|
|
9
9
|
1. **Minified code is unreadable** - Single-line code with no formatting
|
|
10
10
|
2. **Long strings overflow context** - Base64 blobs, encrypted data, and huge arrays waste precious tokens
|
|
@@ -91,7 +91,7 @@ The `[Src L:C]` column shows the original position in the minified file - use th
|
|
|
91
91
|
|
|
92
92
|
## Use Cases
|
|
93
93
|
|
|
94
|
-
- Reverse engineering
|
|
94
|
+
- Reverse engineering obfuscated/minified JavaScript
|
|
95
95
|
- Analyzing obfuscated JavaScript
|
|
96
96
|
- Understanding minified third-party libraries
|
|
97
97
|
- Setting breakpoints in beautified code while debugging original
|