Extend server setup prompts with deployment mode (local_trusted vs authenticated), exposure (private vs public), bind host, and auth config. Add auth bootstrap-ceo command that creates a one-time invite URL for the initial instance admin. Add deployment-auth-check to doctor diagnostics. Register the new command in the CLI entry point. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
658 B
TypeScript
19 lines
658 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 { deploymentAuthCheck } from "./deployment-auth-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";
|
|
export { storageCheck } from "./storage-check.js";
|