2026-02-17 13:39:47 -06:00
|
|
|
export interface CheckResult {
|
|
|
|
|
name: string;
|
|
|
|
|
status: "pass" | "warn" | "fail";
|
|
|
|
|
message: string;
|
|
|
|
|
canRepair?: boolean;
|
|
|
|
|
repair?: () => void | Promise<void>;
|
|
|
|
|
repairHint?: string;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-18 16:46:45 -06:00
|
|
|
export { agentJwtSecretCheck } from "./agent-jwt-secret-check.js";
|
2026-02-17 13:39:47 -06:00
|
|
|
export { configCheck } from "./config-check.js";
|
|
|
|
|
export { databaseCheck } from "./database-check.js";
|
|
|
|
|
export { llmCheck } from "./llm-check.js";
|
|
|
|
|
export { logCheck } from "./log-check.js";
|
|
|
|
|
export { portCheck } from "./port-check.js";
|
2026-02-19 15:43:59 -06:00
|
|
|
export { secretsCheck } from "./secrets-check.js";
|