@lark-project/meegle 1.0.6 → 1.0.7

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/CHANGELOG.md CHANGED
@@ -8,6 +8,12 @@ versioned section on each npm release.
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [v1.0.7] - 2026-06-09
12
+
13
+ ### Fixed
14
+
15
+ - `meegle` now keeps local commands (`auth`, `config`, `inspect`, `completion`, `url`) bootable when server-side tool discovery fails and no command cache exists. Dynamic business commands now return a clear `TOOL_DISCOVERY_FAILED` server error instead of causing CLI bootstrap to fail before local command handlers can run.
16
+
11
17
  ## [v1.0.6] - 2026-05-28
12
18
 
13
19
  ### Changed
package/README.md CHANGED
@@ -893,6 +893,7 @@ meegle auth login
893
893
  ```
894
894
 
895
895
  The command list is cached automatically and refreshed silently in the background when expired.
896
+ When server-side command discovery fails with no usable cache, local commands such as `auth`, `config`, `inspect`, `completion`, and `url` still start normally; dynamic business commands report a `TOOL_DISCOVERY_FAILED` server error until connectivity recovers.
896
897
 
897
898
  ## Security & Risk Warnings
898
899
 
package/README.zh-CN.md CHANGED
@@ -870,6 +870,7 @@ meegle auth login
870
870
  ```
871
871
 
872
872
  命令列表会自动缓存,过期后在后台静默刷新,不影响使用。
873
+ 当服务端命令发现失败且没有可用缓存时,`auth`、`config`、`inspect`、`completion`、`url` 等本地命令仍会正常启动;动态业务命令会返回 `TOOL_DISCOVERY_FAILED` 服务端错误,直到网络恢复。
873
874
 
874
875
  ## 安全与风险提示
875
876
 
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lark-project/meegle",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Agent-First CLI for Meegle (Lark Project)",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/larksuite/meegle-cli#readme",