We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebd5201 commit da16ad7Copy full SHA for da16ad7
1 file changed
packages/cli/src/scanner/connectors/codex.ts
@@ -14,7 +14,7 @@ const CODEX_INTERNAL_TOOLS = new Set([
14
]);
15
16
function isInternalTool(name: string): boolean {
17
- return isInternalTool(name) || name.startsWith("mcp__") || name.startsWith("mcp_");
+ return CODEX_INTERNAL_TOOLS.has(name) || name.startsWith("mcp__") || name.startsWith("mcp_");
18
}
19
20
const SKILL_PATH_RE = /skills\/([^/]+)\/SKILL\.md/;
0 commit comments