sfcoe-ailabs
Version:
AI-powered code review tool with static analysis integration for comprehensive code quality assessment.
30 lines (29 loc) • 801 B
TypeScript
/**
* @file index.ts
* Simple message constants for the AI Code Reviewer CLI tool
* Replaces the Salesforce Messages framework with straightforward constants
*/
export declare const MESSAGES: {
'pr-review': {
summary: string;
description: string;
examples: string[];
flags: {
repoDir: string;
from: string;
to: string;
pullRequestId: string;
sfConfigFile: string;
pmdConfigFile: string;
aiProvider: string;
aiToken: string;
aiModel: string;
aiApiEndpoint: string;
aiApiVersion: string;
gitProvider: string;
gitToken: string;
gitOwner: string;
gitRepo: string;
};
};
};