@aiyiran/myclaw 1.1.119 → 1.1.121
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/index.js +8 -0
- package/package.json +1 -1
- package/patches/patch-manifest.json +1 -5
package/index.js
CHANGED
|
@@ -2743,6 +2743,14 @@ if (!command) {
|
|
|
2743
2743
|
console.log('[2/4] mc patch — 注入 UI + 技能');
|
|
2744
2744
|
runPatch();
|
|
2745
2745
|
console.log('');
|
|
2746
|
+
console.log('[2.5/4] inject-minimax --default — 注入 MiniMax 模型并设为默认');
|
|
2747
|
+
try {
|
|
2748
|
+
const minimax = require('./injects/inject-minimax');
|
|
2749
|
+
minimax.run(['--default']);
|
|
2750
|
+
} catch (err) {
|
|
2751
|
+
console.log('[mc init] ⚠ inject-minimax 失败: ' + err.message);
|
|
2752
|
+
}
|
|
2753
|
+
console.log('');
|
|
2746
2754
|
console.log('[3/4] mc server — 启动同步服务');
|
|
2747
2755
|
runServer(args[1]);
|
|
2748
2756
|
console.log('');
|
package/package.json
CHANGED