stigmergy 1.3.27-beta.0 → 1.3.28-beta.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/package.json +1 -1
- package/src/core/cli_tools.js +9 -10
package/package.json
CHANGED
package/src/core/cli_tools.js
CHANGED
|
@@ -93,16 +93,15 @@ const CLI_TOOLS = {
|
|
|
93
93
|
hooksDir: path.join(os.homedir(), '.opencode', 'hooks'),
|
|
94
94
|
config: path.join(os.homedir(), '.opencode', 'config.json'),
|
|
95
95
|
autoInstall: false, // 默认不安装
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
autoInstall: false, // 默认不安装
|
|
96
|
+
plugins: [
|
|
97
|
+
{
|
|
98
|
+
name: 'oh-my-opencode',
|
|
99
|
+
install: 'npm install bun -g && bunx oh-my-opencode install --no-tui --claude=no --chatgpt=no --gemini=no',
|
|
100
|
+
hooksDir: path.join(os.homedir(), '.opencode', 'plugins'),
|
|
101
|
+
skipVersionCheck: true,
|
|
102
|
+
requiresBun: true
|
|
103
|
+
}
|
|
104
|
+
]
|
|
106
105
|
},
|
|
107
106
|
};
|
|
108
107
|
|