oh-my-opencode-kikokikok 2.14.1 → 2.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.js +366 -242
- package/dist/cli/types.d.ts +7 -0
- package/package.json +1 -1
package/dist/cli/types.d.ts
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
export type ClaudeSubscription = "no" | "yes" | "max20";
|
|
2
2
|
export type BooleanArg = "no" | "yes";
|
|
3
|
+
export type MemoryProvider = "no" | "mem0-cloud" | "mem0-local" | "letta";
|
|
3
4
|
export interface InstallArgs {
|
|
4
5
|
tui: boolean;
|
|
5
6
|
claude?: ClaudeSubscription;
|
|
6
7
|
chatgpt?: BooleanArg;
|
|
7
8
|
gemini?: BooleanArg;
|
|
9
|
+
memory?: MemoryProvider;
|
|
10
|
+
memoryEndpoint?: string;
|
|
8
11
|
skipAuth?: boolean;
|
|
9
12
|
}
|
|
10
13
|
export interface InstallConfig {
|
|
@@ -12,6 +15,8 @@ export interface InstallConfig {
|
|
|
12
15
|
isMax20: boolean;
|
|
13
16
|
hasChatGPT: boolean;
|
|
14
17
|
hasGemini: boolean;
|
|
18
|
+
memoryProvider: MemoryProvider;
|
|
19
|
+
memoryEndpoint?: string;
|
|
15
20
|
}
|
|
16
21
|
export interface ConfigMergeResult {
|
|
17
22
|
success: boolean;
|
|
@@ -24,4 +29,6 @@ export interface DetectedConfig {
|
|
|
24
29
|
isMax20: boolean;
|
|
25
30
|
hasChatGPT: boolean;
|
|
26
31
|
hasGemini: boolean;
|
|
32
|
+
memoryProvider: MemoryProvider;
|
|
33
|
+
memoryEndpoint?: string;
|
|
27
34
|
}
|