fullcourtdefense-cli 1.6.11 → 1.6.13

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.
@@ -63,5 +63,5 @@ async function installAllCommand(args, config) {
63
63
  await (0, discover_1.discoverCommand)(discoverArgs, config);
64
64
  }
65
65
  console.log('\n\x1b[32mDone.\x1b[0m Run \x1b[1mfullcourtdefense protect-all --dry-run true\x1b[0m to verify gateways.');
66
- (0, restartNotice_1.printRestartNotice)();
66
+ await (0, restartNotice_1.promptRestartNotice)();
67
67
  }
@@ -1 +1,2 @@
1
1
  export declare function printRestartNotice(clients?: string): void;
2
+ export declare function promptRestartNotice(clients?: string): Promise<void>;
@@ -1,9 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.printRestartNotice = printRestartNotice;
4
+ exports.promptRestartNotice = promptRestartNotice;
4
5
  function printRestartNotice(clients = 'Cursor, Claude, Codex, VS Code, Windsurf, Gemini') {
5
6
  console.log('');
6
7
  console.log('\x1b[33m\x1b[1mACTION REQUIRED: restart your AI clients\x1b[0m');
7
8
  console.log(`\x1b[33mRestart/reload ${clients} so they load the protected MCP gateway and hooks.\x1b[0m`);
8
9
  console.log('\x1b[2mAlready-running MCP servers may keep using old unprotected processes until the client restarts.\x1b[0m');
10
+ console.log('\x1b[2mClose and reopen each client you use, then run: fullcourtdefense discover --surface mcp\x1b[0m');
11
+ }
12
+ async function promptRestartNotice(clients = 'Cursor, Claude, Codex, VS Code, Windsurf, Gemini') {
13
+ printRestartNotice(clients);
9
14
  }
package/dist/version.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "1.6.11"
2
+ "version": "1.6.13"
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fullcourtdefense-cli",
3
- "version": "1.6.11",
3
+ "version": "1.6.13",
4
4
  "description": "Full Court Defense CLI — security scanning for AI agents from your terminal",
5
5
  "main": "dist/index.js",
6
6
  "bin": {