fullcourtdefense-cli 1.1.2 → 1.1.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/dist/commands/hook.js +20 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/commands/hook.js
CHANGED
|
@@ -38,6 +38,14 @@ const fs = __importStar(require("fs"));
|
|
|
38
38
|
const os = __importStar(require("os"));
|
|
39
39
|
const path = __importStar(require("path"));
|
|
40
40
|
const DEFAULT_API_URL = 'https://api.fullcourtdefense.ai';
|
|
41
|
+
const DEBUG_LOG = path.join(os.homedir(), '.fullcourtdefense-hook.log');
|
|
42
|
+
/** Append a diagnostic line so we can see exactly what Cursor invoked + the verdict. */
|
|
43
|
+
function dbg(obj) {
|
|
44
|
+
try {
|
|
45
|
+
fs.appendFileSync(DEBUG_LOG, JSON.stringify({ t: new Date().toISOString(), ...obj }) + '\n');
|
|
46
|
+
}
|
|
47
|
+
catch { /* ignore */ }
|
|
48
|
+
}
|
|
41
49
|
function readStdin() {
|
|
42
50
|
return new Promise((resolve) => {
|
|
43
51
|
let data = '';
|
|
@@ -216,21 +224,30 @@ async function hookCommand(args, config) {
|
|
|
216
224
|
const apiUrl = (args.apiUrl || process.env.FULLCOURTDEFENSE_API_URL || config.apiUrl || home.apiUrl || DEFAULT_API_URL)
|
|
217
225
|
.replace(/\/$/, '');
|
|
218
226
|
let raw = '';
|
|
227
|
+
let stdinErr = '';
|
|
228
|
+
const isTTY = !!process.stdin.isTTY;
|
|
219
229
|
try {
|
|
220
230
|
raw = await readStdin();
|
|
221
231
|
}
|
|
222
|
-
catch {
|
|
232
|
+
catch (e) {
|
|
233
|
+
stdinErr = e instanceof Error ? e.message : String(e);
|
|
234
|
+
}
|
|
223
235
|
let payload = {};
|
|
236
|
+
let parseErr = '';
|
|
224
237
|
if (raw.trim()) {
|
|
225
238
|
try {
|
|
226
239
|
payload = JSON.parse(raw);
|
|
227
240
|
}
|
|
228
|
-
catch {
|
|
241
|
+
catch (e) {
|
|
242
|
+
parseErr = e instanceof Error ? e.message : String(e);
|
|
229
243
|
payload = {};
|
|
230
244
|
}
|
|
231
245
|
}
|
|
232
246
|
const event = inferEvent(args.event, payload);
|
|
233
247
|
const text = extractText(event, payload).trim();
|
|
248
|
+
dbg({ phase: 'invoke', event, argEvent: args.event, pid: process.pid,
|
|
249
|
+
isTTY, rawLen: raw.length, rawPreview: raw.slice(0, 300), stdinErr, parseErr,
|
|
250
|
+
argv: process.argv.slice(2), payloadKeys: Object.keys(payload), textPreview: text.slice(0, 80) });
|
|
234
251
|
// Emit the verdict in the shape Cursor expects for THIS event, then exit.
|
|
235
252
|
// beforeSubmitPrompt blocks via { continue: false }; the execution hooks
|
|
236
253
|
// (shell/mcp/read) block via { permission: "deny" }. Exit 2 reinforces it.
|
|
@@ -242,6 +259,7 @@ async function hookCommand(args, config) {
|
|
|
242
259
|
decision.user_message = userMsg;
|
|
243
260
|
if (agentMsg)
|
|
244
261
|
decision.agent_message = agentMsg;
|
|
262
|
+
dbg({ phase: 'verdict', event, blocked, decision });
|
|
245
263
|
process.stdout.write(JSON.stringify(decision));
|
|
246
264
|
// ALWAYS exit 0 so Cursor uses our JSON verdict. Exit 2 is interpreted as
|
|
247
265
|
// `permission: "deny"`, which beforeSubmitPrompt ignores (it uses `continue`),
|
package/dist/index.js
CHANGED
|
@@ -10,7 +10,7 @@ const configure_1 = require("./commands/configure");
|
|
|
10
10
|
const discover_1 = require("./commands/discover");
|
|
11
11
|
const hook_1 = require("./commands/hook");
|
|
12
12
|
const installCursorHook_1 = require("./commands/installCursorHook");
|
|
13
|
-
const VERSION = '1.1.
|
|
13
|
+
const VERSION = '1.1.4';
|
|
14
14
|
function parseArgs(argv) {
|
|
15
15
|
const flags = {};
|
|
16
16
|
let command = '';
|