pqcheck 0.15.3 → 0.15.4
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/bin/pqcheck.js +6 -6
- package/package.json +1 -1
package/bin/pqcheck.js
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
})();
|
|
25
25
|
|
|
26
26
|
const API_BASE = process.env.PQCHECK_API_BASE || "https://cipherwake.io";
|
|
27
|
-
const VERSION = "0.15.
|
|
27
|
+
const VERSION = "0.15.4";
|
|
28
28
|
|
|
29
29
|
// API-key support — paid tiers (Starter $29 / Growth $79 / Scale $199) get
|
|
30
30
|
// per-account monthly quotas instead of the per-IP rate limit. Set via:
|
|
@@ -4770,7 +4770,7 @@ esac
|
|
|
4770
4770
|
const CLAUDE_STATUSLINE_CONFIG_SNIPPET = `
|
|
4771
4771
|
"statusLine": {
|
|
4772
4772
|
"type": "command",
|
|
4773
|
-
"command": "npx cipherwake-statusline"
|
|
4773
|
+
"command": "npx --package=pqcheck@latest cipherwake-statusline"
|
|
4774
4774
|
}`;
|
|
4775
4775
|
|
|
4776
4776
|
// R74-confirm SHIP #14-15 (GPT 2026-05-22): network connectivity diagnostic.
|
|
@@ -5107,12 +5107,12 @@ async function runSetupCommand(args) {
|
|
|
5107
5107
|
if (existed && settings.statusLine && typeof settings.statusLine === "object") {
|
|
5108
5108
|
// Already has a statusLine config — don't overwrite.
|
|
5109
5109
|
console.log(color("dim", ` ⊝ ~/.claude/settings.json already has a statusLine entry — leaving alone`));
|
|
5110
|
-
console.log(color("dim", ` To use the Cipherwake statusline instead, set: "command": "npx cipherwake-statusline"`));
|
|
5110
|
+
console.log(color("dim", ` To use the Cipherwake statusline instead, set: "command": "npx --package=pqcheck@latest cipherwake-statusline"`));
|
|
5111
5111
|
installSummary.push({ component: "Claude Code statusLine", path: settingsPath, status: "skipped-existing-config" });
|
|
5112
5112
|
} else {
|
|
5113
5113
|
const backupPath = existed ? await backupSettingsJson(settingsPath) : null;
|
|
5114
5114
|
if (backupPath) console.log(color("dim", ` backup: ${backupPath}`));
|
|
5115
|
-
settings.statusLine = { type: "command", command: "npx cipherwake-statusline" };
|
|
5115
|
+
settings.statusLine = { type: "command", command: "npx --package=pqcheck@latest cipherwake-statusline" };
|
|
5116
5116
|
await fs.mkdir(path.dirname(settingsPath), { recursive: true });
|
|
5117
5117
|
await fs.writeFile(settingsPath, JSON.stringify(settings, null, 2) + "\n", "utf8");
|
|
5118
5118
|
console.log(color("green", ` ✓ added statusLine config → ~/.claude/settings.json`));
|
|
@@ -5151,7 +5151,7 @@ async function runSetupCommand(args) {
|
|
|
5151
5151
|
}
|
|
5152
5152
|
bashEntry.hooks = bashEntry.hooks || [];
|
|
5153
5153
|
|
|
5154
|
-
const cipherwakeHookCmd = "npx cipherwake-chat-hook";
|
|
5154
|
+
const cipherwakeHookCmd = "npx --package=pqcheck@latest cipherwake-chat-hook";
|
|
5155
5155
|
const alreadyInstalled = bashEntry.hooks.some(
|
|
5156
5156
|
(h) => h?.type === "command" && typeof h?.command === "string" && h.command.includes("cipherwake-chat-hook"),
|
|
5157
5157
|
);
|
|
@@ -5196,7 +5196,7 @@ async function runSetupCommand(args) {
|
|
|
5196
5196
|
settings.hooks = settings.hooks || {};
|
|
5197
5197
|
settings.hooks.UserPromptSubmit = settings.hooks.UserPromptSubmit || [];
|
|
5198
5198
|
|
|
5199
|
-
const cipherwakeHookCmd = "npx cipherwake-prompt-hook";
|
|
5199
|
+
const cipherwakeHookCmd = "npx --package=pqcheck@latest cipherwake-prompt-hook";
|
|
5200
5200
|
const alreadyInstalled = settings.hooks.UserPromptSubmit.some(
|
|
5201
5201
|
(entry) => Array.isArray(entry?.hooks) && entry.hooks.some(
|
|
5202
5202
|
(h) => h?.type === "command" && typeof h?.command === "string" && h.command.includes("cipherwake-prompt-hook"),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pqcheck",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.4",
|
|
4
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
6
|
"ai-coder",
|