This commit is contained in:
YeonGyu-Kim
2026-05-27 13:58:58 +09:00
parent 73e8988f31
commit db00bb3d42
18 changed files with 21606 additions and 431 deletions
+4 -1
View File
@@ -1,13 +1,14 @@
export type ClaudeSubscription = "no" | "yes" | "max20"
export type BooleanArg = "no" | "yes"
export type InstallPlatform = "opencode" | "codex" | "both"
export interface InstallArgs {
tui: boolean
platform?: InstallPlatform
claude?: ClaudeSubscription
openai?: BooleanArg
gemini?: BooleanArg
copilot?: BooleanArg
codex?: BooleanArg
opencodeZen?: BooleanArg
zaiCodingPlan?: BooleanArg
kimiForCoding?: BooleanArg
@@ -17,6 +18,8 @@ export interface InstallArgs {
}
export interface InstallConfig {
platform: InstallPlatform
hasOpenCode: boolean
hasClaude: boolean
isMax20: boolean
hasOpenAI: boolean