@etiquekit/etq 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 +12 -0
  2. package/bin/etq +4 -0
  3. package/package.json +17 -0
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # etq (reserved)
2
+
3
+ This package name is reserved for **Etiquette** — a local-first CLI that
4
+ governs agent-assisted engineering work with seats, evidence, and promotion
5
+ gates. Your repo is the ledger, receipts are the proof, and no server ever
6
+ sees your code.
7
+
8
+ Releases begin at **https://etiquekit.com** — including a signed installer
9
+ that requires neither npm nor this package.
10
+
11
+ Until a `1.x` version appears here, this package intentionally does nothing
12
+ beyond printing a pointer.
package/bin/etq ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ console.log("Etiquette (etq) — local-first governance for agent-assisted engineering.");
3
+ console.log("This name is reserved; releases begin at https://etiquekit.com");
4
+ process.exit(0);
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@etiquekit/etq",
3
+ "version": "0.0.1",
4
+ "description": "Reserved: Etiquette \u2014 govern agent-assisted engineering work with seats, evidence, and promotion gates. Local-first CLI. Releases begin at https://etiquekit.com",
5
+ "homepage": "https://etiquekit.com",
6
+ "bin": {
7
+ "etq": "bin/etq"
8
+ },
9
+ "files": [
10
+ "bin",
11
+ "README.md"
12
+ ],
13
+ "license": "SEE LICENSE AT https://etiquekit.com",
14
+ "engines": {
15
+ "node": ">=18"
16
+ }
17
+ }