oh-my-opencode-kikokikok 2.13.0 → 2.14.0
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/README.ja.md +32 -6
- package/README.ko.md +32 -6
- package/README.md +17 -7
- package/README.zh-cn.md +32 -6
- package/dist/agents/sisyphus-prompt-builder.d.ts +1 -0
- package/dist/cli/config-manager.d.ts +9 -0
- package/dist/cli/doctor/constants.d.ts +1 -1
- package/dist/cli/index.js +371 -99
- package/dist/config/schema.d.ts +273 -0
- package/dist/features/knowledge-provider/index.d.ts +8 -0
- package/dist/features/knowledge-provider/providers/local.d.ts +18 -0
- package/dist/features/knowledge-provider/providers/local.test.d.ts +1 -0
- package/dist/features/knowledge-provider/providers/mcp.d.ts +23 -0
- package/dist/features/knowledge-provider/providers/mem0.d.ts +23 -0
- package/dist/features/knowledge-provider/providers/notebooklm.d.ts +34 -0
- package/dist/features/knowledge-provider/providers/notebooklm.test.d.ts +1 -0
- package/dist/features/knowledge-provider/registry.d.ts +22 -0
- package/dist/features/knowledge-provider/registry.test.d.ts +1 -0
- package/dist/features/knowledge-provider/types.d.ts +266 -0
- package/dist/features/knowledge-repo/client.d.ts +9 -1
- package/dist/features/knowledge-repo/index.d.ts +1 -0
- package/dist/features/knowledge-repo/sync.d.ts +35 -0
- package/dist/features/knowledge-repo/types.d.ts +55 -1
- package/dist/features/mem0-memory/types.d.ts +6 -1
- package/dist/features/openspec/client.d.ts +39 -0
- package/dist/features/openspec/client.test.d.ts +1 -0
- package/dist/features/openspec/index.d.ts +3 -0
- package/dist/features/openspec/types.d.ts +365 -0
- package/dist/features/skill-mcp-manager/env-cleaner.d.ts +2 -0
- package/dist/features/skill-mcp-manager/env-cleaner.test.d.ts +1 -0
- package/dist/features/skill-mcp-manager/manager.d.ts +8 -0
- package/dist/hooks/index.d.ts +3 -0
- package/dist/hooks/knowledge-monitor/index.test.d.ts +1 -0
- package/dist/hooks/memory-rehydration/constants.d.ts +4 -0
- package/dist/hooks/memory-rehydration/index.d.ts +17 -0
- package/dist/hooks/memory-rehydration/types.d.ts +12 -0
- package/dist/hooks/openspec-commitment/index.d.ts +32 -0
- package/dist/hooks/openspec-continuity/index.d.ts +15 -0
- package/dist/hooks/ralph-loop/types.d.ts +1 -0
- package/dist/hooks/tool-output-truncator.test.d.ts +1 -0
- package/dist/index.js +3338 -607
- package/dist/shared/config-path.d.ts +2 -2
- package/dist/shared/index.d.ts +2 -0
- package/dist/shared/opencode-config-dir.d.ts +19 -0
- package/dist/shared/opencode-config-dir.test.d.ts +1 -0
- package/dist/shared/package-info.d.ts +6 -0
- package/dist/tools/index.d.ts +1 -0
- package/dist/tools/memory/constants.d.ts +5 -0
- package/dist/tools/memory/index.d.ts +2 -0
- package/dist/tools/memory/tools.d.ts +3 -0
- package/dist/tools/memory/tools.test.d.ts +1 -0
- package/dist/tools/memory/types.d.ts +6 -0
- package/package.json +1 -1
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
*/
|
|
9
9
|
export declare function getUserConfigDir(): string;
|
|
10
10
|
/**
|
|
11
|
-
* Returns the full path to the user-level
|
|
11
|
+
* Returns the full path to the user-level config file.
|
|
12
12
|
*/
|
|
13
13
|
export declare function getUserConfigPath(): string;
|
|
14
14
|
/**
|
|
15
|
-
* Returns the full path to the project-level
|
|
15
|
+
* Returns the full path to the project-level config file.
|
|
16
16
|
*/
|
|
17
17
|
export declare function getProjectConfigPath(directory: string): string;
|
package/dist/shared/index.d.ts
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export type OpenCodeBinaryType = "opencode" | "opencode-desktop";
|
|
2
|
+
export interface OpenCodeConfigDirOptions {
|
|
3
|
+
binary: OpenCodeBinaryType;
|
|
4
|
+
version?: string | null;
|
|
5
|
+
checkExisting?: boolean;
|
|
6
|
+
}
|
|
7
|
+
export interface OpenCodeConfigPaths {
|
|
8
|
+
configDir: string;
|
|
9
|
+
configJson: string;
|
|
10
|
+
configJsonc: string;
|
|
11
|
+
packageJson: string;
|
|
12
|
+
omoConfig: string;
|
|
13
|
+
}
|
|
14
|
+
export declare const TAURI_APP_IDENTIFIER = "ai.opencode.desktop";
|
|
15
|
+
export declare const TAURI_APP_IDENTIFIER_DEV = "ai.opencode.desktop.dev";
|
|
16
|
+
export declare function isDevBuild(version: string | null | undefined): boolean;
|
|
17
|
+
export declare function getOpenCodeConfigDir(options: OpenCodeConfigDirOptions): string;
|
|
18
|
+
export declare function getOpenCodeConfigPaths(options: OpenCodeConfigDirOptions): OpenCodeConfigPaths;
|
|
19
|
+
export declare function detectExistingConfigDir(binary: OpenCodeBinaryType, version?: string | null): string | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare function getPackageName(): string;
|
|
2
|
+
export declare function getPackageVersion(): string;
|
|
3
|
+
export declare function getConfigFileName(): string;
|
|
4
|
+
export declare function getConfigFileNameC(): string;
|
|
5
|
+
export declare function getLogFileName(): string;
|
|
6
|
+
export declare function getSchemaFileName(): string;
|
package/dist/tools/index.d.ts
CHANGED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare const TOOL_PREFIX = "memory";
|
|
2
|
+
export declare const MEMORY_LAYERS: readonly ["user", "session", "project", "team", "org", "company", "agent"];
|
|
3
|
+
export declare const DEFAULT_SEARCH_LIMIT = 10;
|
|
4
|
+
export declare const DEFAULT_SEARCH_THRESHOLD = 0.5;
|
|
5
|
+
export declare const MAX_CONTENT_LENGTH = 10000;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|