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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stigmergy",
3
- "version": "1.3.27-beta.0",
3
+ "version": "1.3.28-beta.0",
4
4
  "description": "Stigmergy CLI - Multi-Agents Cross-AI CLI Tools Collaboration System",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -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
- 'oh-my-opencode': {
98
- name: 'Oh-My-OpenCode Plugin Manager',
99
- version: 'oh-my-opencode --version',
100
- install: 'npm install bun -g && bunx oh-my-opencode install --no-tui --claude=no --chatgpt=no --gemini=no',
101
- hooksDir: path.join(os.homedir(), '.opencode', 'plugins'),
102
- config: path.join(os.homedir(), '.opencode', 'config.json'),
103
- skipVersionCheck: true, // Version check may not work properly for bunx packages
104
- requiresBun: true, // Requires bun runtime
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