metame-cli 1.5.15 → 1.5.16

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 CHANGED
@@ -592,15 +592,13 @@ weixin:
592
592
  4. Scan and confirm with Weixin, then run `/weixin login wait --session <key>`.
593
593
  5. Run `/weixin` or `/weixin status` to verify the account is linked.
594
594
 
595
- Natural-language setup is available through the intent hook. If you want the model to expose the setup flow on demand, enable this in `~/.metame/daemon.yaml`:
595
+ Natural-language setup is enabled by default. Prompts like “帮我配置微信桥接” or “开始微信扫码登录” will inject the enable-and-bind workflow for the model. If you ever want to turn it off, set this in `~/.metame/daemon.yaml`:
596
596
 
597
597
  ```yaml
598
598
  hooks:
599
- weixin_bridge: true
599
+ weixin_bridge: false
600
600
  ```
601
601
 
602
- Then prompts like “帮我配置微信桥接” or “开始微信扫码登录” will inject the enable-and-bind workflow for the model.
603
-
604
602
  ## Mentor Mode (Why + How)
605
603
 
606
604
  Mentor Mode is designed for users who want MetaMe to actively improve decision quality, not just execute commands.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "metame-cli",
3
- "version": "1.5.15",
3
+ "version": "1.5.16",
4
4
  "description": "The Cognitive Profile Layer for Claude Code. Knows how you think, not just what you said.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -43,7 +43,7 @@ hooks:
43
43
  team_dispatch: true # 改为 false 可禁用
44
44
  ops_assist: true
45
45
  task_create: false # 禁用任务调度提示
46
- weixin_bridge: false # 默认关闭;命中明确微信配置语境时再按需开启
46
+ weixin_bridge: true # 默认开启;只匹配明确的微信配置/绑定语境
47
47
  ```
48
48
 
49
49
  改完立即生效(intent-engine 每次运行时读取)。
@@ -12,7 +12,7 @@ const DEFAULTS = Object.freeze({
12
12
  ops_assist: true,
13
13
  task_create: true,
14
14
  file_transfer: true,
15
- weixin_bridge: false,
15
+ weixin_bridge: true,
16
16
  memory_recall: true,
17
17
  doc_router: true,
18
18
  perpetual: true,