fullcourtdefense-cli 1.7.9 → 1.7.10
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.
|
@@ -73,7 +73,7 @@ function computeBlastRadius(input) {
|
|
|
73
73
|
id: 'no_gateway_coverage',
|
|
74
74
|
severity: 'high',
|
|
75
75
|
title: 'No gateway on any AI client',
|
|
76
|
-
detail: `${clientsWithMcp.length} AI client(s) have MCP configured but no FCD gateway or
|
|
76
|
+
detail: `${clientsWithMcp.length} AI client(s) have MCP configured but no FCD gateway or runtime hooks.`,
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
if (countDirect(mcpServers, 'critical') >= 2) {
|
|
@@ -106,7 +106,7 @@ function computeBlastRadius(input) {
|
|
|
106
106
|
id: 'rich_instructions_no_hooks',
|
|
107
107
|
severity: 'medium',
|
|
108
108
|
title: 'Many instruction files, no runtime hooks',
|
|
109
|
-
detail: `${agentFiles.length} agent instruction/skill files found but
|
|
109
|
+
detail: `${agentFiles.length} agent instruction/skill files found but runtime hooks are not installed.`,
|
|
110
110
|
});
|
|
111
111
|
}
|
|
112
112
|
let score = 100;
|
|
@@ -26,7 +26,7 @@ async function installAllCommand(args, config) {
|
|
|
26
26
|
clients: args.clients || 'all',
|
|
27
27
|
};
|
|
28
28
|
console.log('\n\x1b[1m\x1b[36mFullCourtDefense — install all AI clients\x1b[0m');
|
|
29
|
-
console.log('\x1b[2mAuto-protect
|
|
29
|
+
console.log('\x1b[2mAuto-protect MCP servers across AI clients + Cursor built-in action hooks. No --mcp-command or folder path needed.\x1b[0m\n');
|
|
30
30
|
await (0, mcpGateway_1.protectAllCommand)(gatewayArgs, config);
|
|
31
31
|
if (args.hooks !== 'false') {
|
|
32
32
|
console.log('\n\x1b[1mInstalling Cursor runtime hooks…\x1b[0m');
|
package/dist/commands/login.js
CHANGED
|
@@ -57,5 +57,5 @@ async function loginCommand(args, config) {
|
|
|
57
57
|
console.log(` Mode: ${result.mode} (monitor-first — no blocking until you enable enforcement)`);
|
|
58
58
|
console.log(` Config: ${savedPath}`);
|
|
59
59
|
console.log('');
|
|
60
|
-
console.log('Next: \x1b[1mfullcourtdefense install-all\x1b[0m to wrap your MCP clients and
|
|
60
|
+
console.log('Next: \x1b[1mfullcourtdefense install-all\x1b[0m to wrap your MCP clients and install available runtime hooks.');
|
|
61
61
|
}
|
|
@@ -108,6 +108,7 @@ function normalizeAgentClient(value, fallback) {
|
|
|
108
108
|
'claude-code': 'claude-code',
|
|
109
109
|
'claude-desktop': 'claude-desktop',
|
|
110
110
|
codex: 'codex',
|
|
111
|
+
codec: 'codex',
|
|
111
112
|
'gemini-cli': 'gemini-cli',
|
|
112
113
|
gemini: 'gemini-cli',
|
|
113
114
|
windsurf: 'windsurf',
|
|
@@ -811,6 +812,7 @@ function parseClientList(value) {
|
|
|
811
812
|
claude_desktop: 'claude-desktop',
|
|
812
813
|
desktop: 'claude-desktop',
|
|
813
814
|
codex: 'codex',
|
|
815
|
+
codec: 'codex',
|
|
814
816
|
'gemini-cli': 'gemini-cli',
|
|
815
817
|
gemini: 'gemini-cli',
|
|
816
818
|
windsurf: 'windsurf',
|
package/dist/index.js
CHANGED
|
@@ -118,8 +118,8 @@ function printHelp() {
|
|
|
118
118
|
Shield ID, and Shield key to ~/.fullcourtdefense.yml.
|
|
119
119
|
setup Same as configure — manual fallback when not using fleet login.
|
|
120
120
|
install-all One-click: protect existing MCP servers in every AI client and
|
|
121
|
-
install
|
|
122
|
-
or --mcp-command needed. Use --hooks false to skip
|
|
121
|
+
install available runtime hooks for built-in actions. No folder path
|
|
122
|
+
or --mcp-command needed. Use --hooks false to skip runtime hooks.
|
|
123
123
|
install Alias for install-all.
|
|
124
124
|
scan Runs the scan. Use --local for inside-organization scans.
|
|
125
125
|
discover Finds MCP servers, local secrets, agent rules/skills, and machine
|
package/dist/version.json
CHANGED