@lark-project/meegle 1.0.21 → 1.0.22

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.22] - 2026-08-27
12
+
13
+ ### Fixed
14
+
15
+ - Restored the Facade command-string Go SDK to its MCP-only contract: local CLI API commands such as `ai-handoff` and `preference handoff` remain available in the npm-distributed `meegle` CLI but are no longer registered or routed by the remote RPC SDK.
16
+
11
17
  ## [v1.0.21] - 2026-08-26
12
18
 
13
19
  ### Added
package/README.md CHANGED
@@ -849,9 +849,10 @@ escape sequences retain their backslash.
849
849
  This decoding only applies to programmatic command-string entry points such as
850
850
  `CommandClient.Execute` and `ExecuteCommandString`. The `meegle` binary receives
851
851
  an argument array from the shell, so normal shell quoting rules apply there.
852
- The command-string SDK registers both MCP-discovered commands and local CLI API
853
- commands, including `ai-handoff` and `preference handoff`; direct `CallTool`
854
- continues to address MCP tools only.
852
+ The command-string Go SDK used by Facade for remote RPC execution registers only
853
+ MCP-discovered commands. Local CLI API commands such as `ai-handoff` and
854
+ `preference handoff` are available only in the npm-distributed `meegle` CLI;
855
+ direct `CallTool` also continues to address MCP tools only.
855
856
 
856
857
  ## Authentication
857
858
 
package/README.zh-CN.md CHANGED
@@ -818,8 +818,9 @@ meegle inspect workitem.create
818
818
  该解码只作用于 `CommandClient.Execute`、`ExecuteCommandString` 等程序化
819
819
  命令字符串入口。`meegle` 二进制直接接收 shell 解析后的参数数组,因此仍遵循
820
820
  对应 shell 的引号和转义规则。
821
- 命令字符串 SDK 会同时注册 MCP 动态发现命令和本地 CLI API 命令,包括
822
- `ai-handoff` `preference handoff`;直接调用 `CallTool` 时仍然只访问 MCP tool。
821
+ Facade 远程 RPC 调用的命令字符串 Go SDK 只注册 MCP 动态发现命令。
822
+ `ai-handoff`、`preference handoff` 等本地 CLI API 命令只在 npm 分发的
823
+ `meegle` CLI 中提供;直接调用 `CallTool` 时也仍然只访问 MCP tool。
823
824
 
824
825
  ## 认证
825
826
 
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.21",
3
+ "version": "1.0.22",
4
4
  "description": "Agent-First CLI for Meegle (Lark Project)",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/larksuite/meegle-cli#readme",