prooflane 0.0.1

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 +21 -0
  2. package/bin/cli.mjs +12 -0
  3. package/package.json +33 -0
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # `prooflane`
2
+
3
+ **Reserved, not released.** This name is held for the **prooflane** harness: a
4
+ stack-agnostic verify lane that derives *done* from evidence rather than taking
5
+ an agent's word for it.
6
+
7
+ Nothing useful installs from here yet. What works today:
8
+
9
+ ```bash
10
+ npx create-cmp-cli --help
11
+ ```
12
+
13
+ Why the name exists before the package: the harness is being split out of
14
+ `create-cmp-cli`, and the receipt format, the CLI and each stack profile all
15
+ have to agree on one name. Renaming a published evidence format twice is worse
16
+ than reserving the name once.
17
+
18
+ - The plan: [PACKAGE-SPLIT.md](https://github.com/kvdm-co-pilot/create-cmp/blob/main/docs/proposals/PACKAGE-SPLIT.md)
19
+ - The goals it answers to: [NORTH-STAR.md](https://github.com/kvdm-co-pilot/create-cmp/blob/main/docs/NORTH-STAR.md)
20
+
21
+ MIT.
package/bin/cli.mjs ADDED
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env node
2
+ // Placeholder. This name is reserved for work that is planned and written down,
3
+ // not shipped — saying so is cheaper for you than discovering it after install.
4
+ const pkg = "prooflane";
5
+ process.stdout.write(
6
+ `\n${pkg} is not released yet.\n\n` +
7
+ ` This name is reserved for the prooflane harness: a stack-agnostic verify\n` +
8
+ ` lane that derives "done" from evidence instead of taking an agent's word.\n\n` +
9
+ ` Working today: npx create-cmp-cli --help\n` +
10
+ ` The plan: https://github.com/kvdm-co-pilot/create-cmp/blob/main/docs/proposals/PACKAGE-SPLIT.md\n\n`,
11
+ );
12
+ process.exit(0);
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "prooflane",
3
+ "version": "0.0.1",
4
+ "description": "The verify lane: a stack-agnostic evidence harness. Name reserved; the working tool ships today as create-cmp-cli.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/kvdm-co-pilot/create-cmp.git",
9
+ "directory": "packages/aliases/prooflane"
10
+ },
11
+ "homepage": "https://github.com/kvdm-co-pilot/create-cmp/blob/main/docs/proposals/PACKAGE-SPLIT.md",
12
+ "keywords": [
13
+ "verification",
14
+ "evidence",
15
+ "receipts",
16
+ "ci",
17
+ "agents"
18
+ ],
19
+ "publishConfig": {
20
+ "access": "public"
21
+ },
22
+ "files": [
23
+ "README.md",
24
+ "bin",
25
+ "index.mjs"
26
+ ],
27
+ "engines": {
28
+ "node": ">=20.19.0"
29
+ },
30
+ "bin": {
31
+ "prooflane": "bin/cli.mjs"
32
+ }
33
+ }