creatrip-agent-rules-builder
Version:
Unified converter for AI coding agent rules across Cursor, Windsurf, and Claude
36 lines • 944 B
TypeScript
export type OutputFormat = "human" | "json" | "quiet";
export interface VerificationResult {
agent: string;
passed: boolean;
error?: string;
}
export interface LocationVerificationResult {
path: string;
status: "pass" | "fail";
agents: Record<string, {
passed: boolean;
error?: string;
}>;
summary: {
total: number;
passed: number;
failed: number;
};
diagnosis?: {
pattern: "all_outdated" | "single_diverged" | "multiple_diverged" | "all_synced";
action: "build" | "review" | "manual" | "none";
diverged?: string[];
};
}
export interface VerificationSummary {
status: "pass" | "fail";
locations: LocationVerificationResult[];
totalLocations: number;
timestamp?: string;
}
export interface AgentConfig {
name: string;
type: "standard" | "cursor-mdc";
targetPath?: string;
}
//# sourceMappingURL=types.d.ts.map