adversarial-review-gate 2.0.0 → 2.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.
- package/package.json +1 -1
- package/src/hosts/claude-code.js +1 -1
- package/src/hosts/wrapper.js +1 -1
package/package.json
CHANGED
package/src/hosts/claude-code.js
CHANGED
|
@@ -22,7 +22,7 @@ import path from "node:path";
|
|
|
22
22
|
* @returns {object} hook config JSON object
|
|
23
23
|
*/
|
|
24
24
|
function buildHookConfig(binPath) {
|
|
25
|
-
const bin = binPath || "npx adversarial-review";
|
|
25
|
+
const bin = binPath || "npx adversarial-review-gate";
|
|
26
26
|
return {
|
|
27
27
|
hooks: {
|
|
28
28
|
SessionStart: [
|
package/src/hosts/wrapper.js
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
* @returns {{ host: string, wrapperCommand: string, enforcement: string, residualRisk: string }}
|
|
19
19
|
*/
|
|
20
20
|
export function wrapperInstructions({ host, reviewer, binPath }) {
|
|
21
|
-
const bin = binPath || "npx adversarial-review";
|
|
21
|
+
const bin = binPath || "npx adversarial-review-gate";
|
|
22
22
|
const reviewerNote = reviewer && reviewer !== "none" ? ` (reviewer: ${reviewer})` : "";
|
|
23
23
|
|
|
24
24
|
// Build a representative wrapper command. The user substitutes their actual
|