codex-cli-architect-mcp
Version:
MCP server for OpenAI Codex CLI - Enable AI-powered coding assistance through Model Context Protocol
20 lines • 951 B
TypeScript
import { z } from 'zod';
import type { ToolDefinition } from '../types/index.js';
export declare const reviewSchema: z.ZodObject<{
target: z.ZodString;
focus: z.ZodOptional<z.ZodArray<z.ZodEnum<["security", "performance", "readability", "best-practices", "architecture"]>, "many">>;
languages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
model: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
target: string;
model?: string | undefined;
languages?: string[] | undefined;
focus?: ("architecture" | "security" | "performance" | "readability" | "best-practices")[] | undefined;
}, {
target: string;
model?: string | undefined;
languages?: string[] | undefined;
focus?: ("architecture" | "security" | "performance" | "readability" | "best-practices")[] | undefined;
}>;
export declare const codexReviewTool: ToolDefinition<z.infer<typeof reviewSchema>>;
//# sourceMappingURL=review.tool.d.ts.map