proofseal 0.0.1 → 0.0.2

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.
Files changed (3) hide show
  1. package/README.md +13 -2
  2. package/bin.js +19 -0
  3. package/package.json +20 -3
package/README.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # ProofSeal
2
2
 
3
- README claims that stay true. v0.1.0 is imminent — this is a name reservation placeholder.
3
+ README claims that stay true.
4
4
 
5
- MIT (c) rudycelekli
5
+ ProofSeal seals the claims a README makes — a file hash, a marker in the code, or a test harness that backs the claim — and verifies them in CI. Each claim is classified as **pass**, **drift** (the sealed artifact changed), **regressed** (it used to pass and no longer does), or **missing** (the artifact is gone). A history mode bisects your commits to find where a claim broke.
6
+
7
+ ## Status
8
+
9
+ **v0.1.0 is in private beta.** This npm package is a placeholder; running `npx proofseal` prints a status message and exits.
10
+
11
+ Watch the repo and subscribe to the "Notify me" issue for the release:
12
+ **https://github.com/rudycelekli/proofseal**
13
+
14
+ ## License
15
+
16
+ MIT © rudycelekli
package/bin.js ADDED
@@ -0,0 +1,19 @@
1
+ #!/usr/bin/env node
2
+ "use strict";
3
+
4
+ const lines = [
5
+ "",
6
+ " ProofSeal",
7
+ " ---------",
8
+ " Seals the claims in your README (file hashes, markers, test harnesses)",
9
+ " and verifies them in CI: pass / drift / regressed / missing.",
10
+ "",
11
+ " Status: v0.1.0 is in private beta. This package is a placeholder.",
12
+ "",
13
+ " Watch or star https://github.com/rudycelekli/proofseal and subscribe",
14
+ " to the \"Notify me\" issue there to hear about the release.",
15
+ "",
16
+ ];
17
+
18
+ process.stdout.write(lines.join("\n") + "\n");
19
+ process.exit(0);
package/package.json CHANGED
@@ -1,12 +1,29 @@
1
1
  {
2
2
  "name": "proofseal",
3
- "version": "0.0.1",
4
- "description": "ProofSeal README claims that stay true. Commit-bound integrity seals for repo claims: pass/drift/regressed/missing classification, seal history, regression bisection. Placeholder release; v0.1.0 imminent.",
3
+ "version": "0.0.2",
4
+ "description": "Seal your README claims and verify them in CI v0.1.0 in private beta",
5
5
  "license": "MIT",
6
6
  "author": "rudycelekli",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "git+https://github.com/rudycelekli/proofseal.git"
10
10
  },
11
- "keywords": ["readme", "claims", "verification", "integrity", "seal", "drift", "regression", "ci"]
11
+ "homepage": "https://github.com/rudycelekli/proofseal#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/rudycelekli/proofseal/issues"
14
+ },
15
+ "keywords": [
16
+ "readme",
17
+ "verification",
18
+ "drift",
19
+ "ci",
20
+ "claims"
21
+ ],
22
+ "bin": {
23
+ "proofseal": "./bin.js"
24
+ },
25
+ "files": [
26
+ "bin.js",
27
+ "README.md"
28
+ ]
12
29
  }