mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-14 01:50:39 +09:00
Add secrets section to onboard, configure, and doctor commands. Doctor validates local encrypted provider key file and can auto-repair missing keys. Extract shared path resolution into path-resolver module used by database and log checks. Show secrets env vars in `paperclip env`. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
541 B
TypeScript
16 lines
541 B
TypeScript
export interface CheckResult {
|
|
name: string;
|
|
status: "pass" | "warn" | "fail";
|
|
message: string;
|
|
canRepair?: boolean;
|
|
repair?: () => void | Promise<void>;
|
|
repairHint?: string;
|
|
}
|
|
|
|
export { agentJwtSecretCheck } from "./agent-jwt-secret-check.js";
|
|
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";
|
|
export { secretsCheck } from "./secrets-check.js";
|