codeeraser 0.3.0
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 +19 -0
- package/package.json +21 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# CodeEraser
|
|
2
|
+
|
|
3
|
+
**This npm package is a name-reservation pointer, not a distribution.**
|
|
4
|
+
CodeEraser is a Rust + Haskell tool; nothing here installs it.
|
|
5
|
+
|
|
6
|
+
Get the real thing:
|
|
7
|
+
|
|
8
|
+
- **Prebuilt binaries & GUI installers** — <https://github.com/skymanbp/CodeEraser/releases>
|
|
9
|
+
(verify against `SHA256SUMS`)
|
|
10
|
+
- **Cargo** — `cargo install codeeraser` (binary name: `ce`)
|
|
11
|
+
- **Claude Code plugin** — marketplace `skymanbp/CodeEraser`, with
|
|
12
|
+
SHA256-pinned binary bootstrap
|
|
13
|
+
|
|
14
|
+
CodeEraser erases LLM-induced code & document entropy: T1/T2/T3 clone
|
|
15
|
+
judgment, dead-code liveness, doc duplication, structural entropy and a
|
|
16
|
+
ratcheted repo gate — measurement in Rust, judgment in Haskell.
|
|
17
|
+
|
|
18
|
+
"CodeEraser"™ is a trademark of skymanbp (registration pending).
|
|
19
|
+
Code is Apache-2.0; per §6, the license does not grant trademark rights.
|
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "codeeraser",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "CodeEraser — erase LLM-induced code & document entropy. This package is a name-reservation pointer: the tool ships as prebuilt binaries on GitHub Releases, `cargo install codeeraser`, and a Claude Code plugin.",
|
|
5
|
+
"homepage": "https://github.com/skymanbp/CodeEraser",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/skymanbp/CodeEraser.git"
|
|
9
|
+
},
|
|
10
|
+
"license": "Apache-2.0",
|
|
11
|
+
"author": "skymanbp",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"codeeraser",
|
|
14
|
+
"deduplication",
|
|
15
|
+
"clone-detection",
|
|
16
|
+
"code-quality",
|
|
17
|
+
"dead-code",
|
|
18
|
+
"entropy"
|
|
19
|
+
],
|
|
20
|
+
"files": []
|
|
21
|
+
}
|