chore: include pre-built dist for github install

This commit is contained in:
Robin Mordasiewicz
2026-03-14 04:56:50 +00:00
parent a7f0a4cf46
commit bce8ff3a75
1011 changed files with 150081 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
export type ClaudeSubscription = "no" | "yes" | "max20";
export type BooleanArg = "no" | "yes";
export interface InstallArgs {
tui: boolean;
claude?: ClaudeSubscription;
openai?: BooleanArg;
gemini?: BooleanArg;
copilot?: BooleanArg;
opencodeZen?: BooleanArg;
zaiCodingPlan?: BooleanArg;
kimiForCoding?: BooleanArg;
opencodeGo?: BooleanArg;
skipAuth?: boolean;
}
export interface InstallConfig {
hasClaude: boolean;
isMax20: boolean;
hasOpenAI: boolean;
hasGemini: boolean;
hasCopilot: boolean;
hasOpencodeZen: boolean;
hasZaiCodingPlan: boolean;
hasKimiForCoding: boolean;
hasOpencodeGo: boolean;
}
export interface ConfigMergeResult {
success: boolean;
configPath: string;
error?: string;
}
export interface DetectedConfig {
isInstalled: boolean;
hasClaude: boolean;
isMax20: boolean;
hasOpenAI: boolean;
hasGemini: boolean;
hasCopilot: boolean;
hasOpencodeZen: boolean;
hasZaiCodingPlan: boolean;
hasKimiForCoding: boolean;
hasOpencodeGo: boolean;
}