mumucc 0.2.0 → 0.2.1

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/bin/mumucc CHANGED
@@ -51,8 +51,9 @@ if [[ ! -d "$CLAUDE_CONFIG_DIR" ]]; then
51
51
  echo " Run 'mumucc /login' to configure your API provider."
52
52
  fi
53
53
 
54
- # ── Disable Anthropic-specific traffic (version checks, telemetry) ──
55
- export CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC=1
54
+ # ── Disable Anthropic-specific traffic (version checks, autoupdater) ──
55
+ # mumucc: 不再设 CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC,因为它会杀死 Channels 的特性开关
56
+ # 只禁用自动更新和遥测
56
57
  export DISABLE_AUTOUPDATER=1
57
58
  export DISABLE_TELEMETRY=1
58
59
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mumucc",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Open-source AI coding assistant CLI with multi-model support (Anthropic, OpenAI/GPT, DeepSeek, GLM, Ollama, etc.), MCP integration, agent swarms, and out-of-the-box developer experience.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -152,4 +152,4 @@
152
152
  "bun-types": "*",
153
153
  "typescript": "^5"
154
154
  }
155
- }
155
+ }
package/src/main.tsx CHANGED
@@ -1639,7 +1639,7 @@ async function run(): Promise<CommanderCommand> {
1639
1639
  // devChannels is deferred: showSetupScreens shows a confirmation dialog
1640
1640
  // and only appends to allowedChannels on accept.
1641
1641
  let devChannels: ChannelEntry[] | undefined;
1642
- if (feature('KAIROS') || feature('KAIROS_CHANNELS')) {
1642
+ { // mumucc: 总是解析 channels 参数,不受 feature flag 限制
1643
1643
  // Parse plugin:name@marketplace / server:Y tags into typed entries.
1644
1644
  // Tag decides trust model downstream: plugin-kind hits marketplace
1645
1645
  // verification + GrowthBook allowlist, server-kind always fails
@@ -3842,7 +3842,8 @@ async function run(): Promise<CommanderCommand> {
3842
3842
  if (feature('KAIROS')) {
3843
3843
  program.addOption(new Option('--assistant', 'Force assistant mode (Agent SDK daemon use)').hideHelp());
3844
3844
  }
3845
- if (feature('KAIROS') || feature('KAIROS_CHANNELS')) {
3845
+ // mumucc: 总是注册 channels 参数,不受 feature flag 限制
3846
+ {
3846
3847
  program.addOption(new Option('--channels <servers...>', 'MCP servers whose channel notifications (inbound push) should register this session. Space-separated server names.').hideHelp());
3847
3848
  program.addOption(new Option('--dangerously-load-development-channels <servers...>', 'Load channel servers not on the approved allowlist. For local channel development only. Shows a confirmation dialog at startup.').hideHelp());
3848
3849
  program.addOption(new Option('--channels-dev <servers...>', 'mumucc: --dangerously-load-development-channels 的短别名').hideHelp()); // mumucc: 短别名