oh-my-opencode-gpt-slim 0.1.2 → 0.1.3
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.md +2 -2
- package/README.zh-cn.md +2 -2
- package/dist/agents/dynamic-agent-prompt-builder.d.ts +9 -1
- package/dist/agents/sisyphus/gpt-5-4.d.ts +1 -1
- package/dist/agents/sisyphus.d.ts +2 -2
- package/dist/cli/doctor/checks/config-validation.d.ts +10 -0
- package/dist/cli/index.js +250 -238
- package/dist/index.js +659 -513
- package/dist/shared/index.d.ts +1 -0
- package/dist/shared/omo-config-file.d.ts +5 -0
- package/package.json +10 -10
package/dist/shared/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export * from "./data-path";
|
|
|
14
14
|
export * from "./config-errors";
|
|
15
15
|
export * from "./claude-config-dir";
|
|
16
16
|
export * from "./jsonc-parser";
|
|
17
|
+
export * from "./omo-config-file";
|
|
17
18
|
export * from "./migration";
|
|
18
19
|
export * from "./opencode-config-dir";
|
|
19
20
|
export type { OpenCodeBinaryType, OpenCodeConfigDirOptions, OpenCodeConfigPaths, } from "./opencode-config-dir-types";
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare const OMO_CONFIG_FILENAME = "oh-my-opencode-gpt-slim.json";
|
|
2
|
+
export declare function getOmoConfigFilePath(directory: string): string;
|
|
3
|
+
export declare function getProjectOmoConfigFilePath(projectRoot: string): string;
|
|
4
|
+
export declare function parseOmoConfigJson<T = unknown>(content: string): T;
|
|
5
|
+
export declare function readOmoConfigFile<T = unknown>(filePath: string): T | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-opencode-gpt-slim",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "GPT-optimized lean fork of oh-my-openagent — 33 hooks removed, 5 tools removed, Sisyphus prompt rewritten based on OpenAI Codex prompt.md",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -78,15 +78,15 @@
|
|
|
78
78
|
"typescript": "^5.7.3"
|
|
79
79
|
},
|
|
80
80
|
"optionalDependencies": {
|
|
81
|
-
"oh-my-opencode-gpt-slim-darwin-arm64": "0.1.
|
|
82
|
-
"oh-my-opencode-gpt-slim-darwin-x64": "0.1.
|
|
83
|
-
"oh-my-opencode-gpt-slim-darwin-x64-baseline": "0.1.
|
|
84
|
-
"oh-my-opencode-gpt-slim-linux-arm64": "0.1.
|
|
85
|
-
"oh-my-opencode-gpt-slim-linux-arm64-musl": "0.1.
|
|
86
|
-
"oh-my-opencode-gpt-slim-linux-x64": "0.1.
|
|
87
|
-
"oh-my-opencode-gpt-slim-linux-x64-baseline": "0.1.
|
|
88
|
-
"oh-my-opencode-gpt-slim-linux-x64-musl": "0.1.
|
|
89
|
-
"oh-my-opencode-gpt-slim-linux-x64-musl-baseline": "0.1.
|
|
81
|
+
"oh-my-opencode-gpt-slim-darwin-arm64": "0.1.3",
|
|
82
|
+
"oh-my-opencode-gpt-slim-darwin-x64": "0.1.3",
|
|
83
|
+
"oh-my-opencode-gpt-slim-darwin-x64-baseline": "0.1.3",
|
|
84
|
+
"oh-my-opencode-gpt-slim-linux-arm64": "0.1.3",
|
|
85
|
+
"oh-my-opencode-gpt-slim-linux-arm64-musl": "0.1.3",
|
|
86
|
+
"oh-my-opencode-gpt-slim-linux-x64": "0.1.3",
|
|
87
|
+
"oh-my-opencode-gpt-slim-linux-x64-baseline": "0.1.3",
|
|
88
|
+
"oh-my-opencode-gpt-slim-linux-x64-musl": "0.1.3",
|
|
89
|
+
"oh-my-opencode-gpt-slim-linux-x64-musl-baseline": "0.1.3"
|
|
90
90
|
},
|
|
91
91
|
"overrides": {
|
|
92
92
|
"@opencode-ai/sdk": "^1.2.17"
|