pqcheck 0.14.2 → 0.15.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.
- package/README.md +54 -5
- package/bin/cipherwake-chat-hook.js +90 -0
- package/bin/cipherwake-prompt-hook.js +111 -0
- package/bin/cipherwake-statusline.js +107 -0
- package/bin/pqcheck.js +1719 -38
- package/package.json +19 -8
package/package.json
CHANGED
|
@@ -1,21 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pqcheck",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.15.1",
|
|
4
|
+
"description": "Deploy gate for AI-coded web apps. `pqcheck deploy-check --ai` returns ship_decision=pass|review|block for Claude Code / Cursor / Copilot / Aider to gate deploys before they ship. Anonymous, no signup, free for first use.",
|
|
5
5
|
"keywords": [
|
|
6
|
-
"
|
|
7
|
-
"
|
|
6
|
+
"ai-coder",
|
|
7
|
+
"claude-code",
|
|
8
|
+
"cursor",
|
|
9
|
+
"copilot",
|
|
10
|
+
"aider",
|
|
11
|
+
"deploy-gate",
|
|
12
|
+
"deploy-check",
|
|
13
|
+
"ai-coder-mode",
|
|
14
|
+
"ship-decision",
|
|
15
|
+
"deploy-guard",
|
|
16
|
+
"ci",
|
|
8
17
|
"security",
|
|
9
18
|
"tls",
|
|
10
19
|
"ssl",
|
|
11
20
|
"scanner",
|
|
21
|
+
"post-quantum",
|
|
12
22
|
"harvest-now-decrypt-later",
|
|
13
23
|
"hndl",
|
|
14
24
|
"blast-radius",
|
|
15
25
|
"pqc",
|
|
16
|
-
"quantum"
|
|
17
|
-
"crypto-audit",
|
|
18
|
-
"crypto-inventory"
|
|
26
|
+
"quantum"
|
|
19
27
|
],
|
|
20
28
|
"homepage": "https://cipherwake.io",
|
|
21
29
|
"bugs": "https://cipherwake.io",
|
|
@@ -31,7 +39,10 @@
|
|
|
31
39
|
"node": ">=18"
|
|
32
40
|
},
|
|
33
41
|
"bin": {
|
|
34
|
-
"pqcheck": "./bin/pqcheck.js"
|
|
42
|
+
"pqcheck": "./bin/pqcheck.js",
|
|
43
|
+
"cipherwake-statusline": "./bin/cipherwake-statusline.js",
|
|
44
|
+
"cipherwake-chat-hook": "./bin/cipherwake-chat-hook.js",
|
|
45
|
+
"cipherwake-prompt-hook": "./bin/cipherwake-prompt-hook.js"
|
|
35
46
|
},
|
|
36
47
|
"files": [
|
|
37
48
|
"bin/",
|