@lark-project/meegle 1.0.13 → 1.0.15
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 +14 -2
- package/README.md +4 -3
- package/README.zh-CN.md +4 -3
- package/bin/meegle-darwin-arm64 +0 -0
- package/bin/meegle-darwin-x64 +0 -0
- package/bin/meegle-linux-arm64 +0 -0
- package/bin/meegle-linux-x64 +0 -0
- package/bin/meegle-win32-arm64.exe +0 -0
- package/bin/meegle-win32-x64.exe +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,11 +8,23 @@ versioned section on each npm release.
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [v1.0.15] - 2026-07-07
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- New `--auto-paginate` global flag. When set, the CLI inspects the first response for pagination signals (`next_page_token` or `pagination.has_more`) and automatically fetches subsequent pages, concatenating list arrays into a single merged payload. Supports both token-based and `page_num`-based pagination. A 200-page safety cap and a 3-consecutive-empty-page streak guard prevent runaway loops against stuck cursors; when the cap is hit the merged result is returned with `truncated: true` and a continuation token/page number in `meta`, alongside a stderr hint. Batch (`+batch-get`) and attachment shortcut commands are exempt — they manage their own multi-call execution paths.
|
|
16
|
+
|
|
17
|
+
## [v1.0.14] - 2026-07-01
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- Restored the valid npm quick-start command to `npx @lark-project/meegle@latest install`. `npx @lark-project/meegle@latest` already invokes the package's `meegle` binary, so appending `meegle install` passes an invalid extra `meegle` subcommand to the CLI.
|
|
22
|
+
|
|
11
23
|
## [v1.0.13] - 2026-06-30
|
|
12
24
|
|
|
13
25
|
### Fixed
|
|
14
26
|
|
|
15
|
-
- Corrected the npm quick-start commands
|
|
27
|
+
- Corrected the npm quick-start commands for the setup wizard. This was superseded by v1.0.14 after verifying the package invocation semantics across npx versions.
|
|
16
28
|
|
|
17
29
|
## [v1.0.12] - 2026-06-29
|
|
18
30
|
|
|
@@ -24,7 +36,7 @@ versioned section on each npm release.
|
|
|
24
36
|
|
|
25
37
|
### Added
|
|
26
38
|
|
|
27
|
-
- `meegle install` now runs a one-stop setup wizard for npm users: install or upgrade the CLI globally, install the AI Agent Skill, configure the host, and start browser or Device Code login. This enables `npx @lark-project/meegle@latest
|
|
39
|
+
- `meegle install` now runs a one-stop setup wizard for npm users: install or upgrade the CLI globally, install the AI Agent Skill, configure the host, and start browser or Device Code login. This enables `npx @lark-project/meegle@latest install` as the primary quick-start command.
|
|
28
40
|
|
|
29
41
|
### Fixed
|
|
30
42
|
|
package/README.md
CHANGED
|
@@ -50,7 +50,7 @@ Command-line tool for [Meegle](https://meegle.com?utm_source=github&utm_medium=r
|
|
|
50
50
|
Run the setup wizard:
|
|
51
51
|
|
|
52
52
|
```bash
|
|
53
|
-
npx @lark-project/meegle@latest
|
|
53
|
+
npx @lark-project/meegle@latest install
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
The wizard installs or upgrades the CLI globally, installs the AI Agent Skill, configures the Meegle host, and starts login.
|
|
@@ -61,7 +61,7 @@ The wizard installs or upgrades the CLI globally, installs the AI Agent Skill, c
|
|
|
61
61
|
|
|
62
62
|
```bash
|
|
63
63
|
# 1. Install CLI + Skill, configure host, and log in
|
|
64
|
-
npx @lark-project/meegle@latest
|
|
64
|
+
npx @lark-project/meegle@latest install
|
|
65
65
|
|
|
66
66
|
# 2. View this week's to-dos
|
|
67
67
|
meegle mywork todo --action this_week --page-num 1
|
|
@@ -79,7 +79,7 @@ meegle inspect workitem.create
|
|
|
79
79
|
The default browser OAuth flow requires a real TTY. In CI runners, pipes, and agent shells like Claude Code, run the same setup wizard with an explicit host and Device Code login:
|
|
80
80
|
|
|
81
81
|
```bash
|
|
82
|
-
npx -y @lark-project/meegle@latest
|
|
82
|
+
npx -y @lark-project/meegle@latest install --host <host> --device-code --lang en
|
|
83
83
|
```
|
|
84
84
|
|
|
85
85
|
Examples of `<host>`: `project.feishu.cn`, `meegle.com`, or your self-hosted tenant domain such as `your-tenant.example.com`. The Device Code flow prints an authorization URL; send it to the user and keep the command running until authorization completes.
|
|
@@ -640,6 +640,7 @@ meegle workflow get-node --work-item-id 12345 --need-sub-task
|
|
|
640
640
|
| `--verbose` | `-v` | Verbose output |
|
|
641
641
|
| `--profile` | | Use a specific configuration profile |
|
|
642
642
|
| `--refresh` | | Refresh cached commands from server (bypass the local 24 h cache) |
|
|
643
|
+
| `--auto-paginate` | | Automatically fetch and merge all pages when the response contains pagination signals (`next_page_token` or `pagination.has_more`); merged list arrays are concatenated, and a 200-page safety cap plus a 3-empty-page streak guard prevent runaway loops |
|
|
643
644
|
|
|
644
645
|
## Advanced Usage
|
|
645
646
|
|
package/README.zh-CN.md
CHANGED
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
运行安装向导:
|
|
51
51
|
|
|
52
52
|
```bash
|
|
53
|
-
npx @lark-project/meegle@latest
|
|
53
|
+
npx @lark-project/meegle@latest install
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
向导会全局安装或升级 CLI、安装 AI Agent Skill、配置 Meegle host,并启动登录。
|
|
@@ -61,7 +61,7 @@ npx @lark-project/meegle@latest meegle install
|
|
|
61
61
|
|
|
62
62
|
```bash
|
|
63
63
|
# 1. 安装 CLI + Skill,配置 host,并登录
|
|
64
|
-
npx @lark-project/meegle@latest
|
|
64
|
+
npx @lark-project/meegle@latest install
|
|
65
65
|
|
|
66
66
|
# 2. 查看本周待办
|
|
67
67
|
meegle mywork todo --action this_week --page-num 1
|
|
@@ -79,7 +79,7 @@ meegle inspect workitem.create
|
|
|
79
79
|
默认浏览器 OAuth 流程依赖真实 TTY。在 CI Runner、管道、Claude Code 这类环境里,使用同一个安装向导,但显式传入 host 并启用 Device Code 登录:
|
|
80
80
|
|
|
81
81
|
```bash
|
|
82
|
-
npx -y @lark-project/meegle@latest
|
|
82
|
+
npx -y @lark-project/meegle@latest install --host <host> --device-code --lang zh
|
|
83
83
|
```
|
|
84
84
|
|
|
85
85
|
`<host>` 示例:`project.feishu.cn`、`meegle.com`,或自建租户域名(如 `your-tenant.example.com`)。
|
|
@@ -625,6 +625,7 @@ meegle workflow get-node --work-item-id 12345 --need-sub-task
|
|
|
625
625
|
| `--verbose` | `-v` | 详细输出 |
|
|
626
626
|
| `--profile` | | 指定配置 profile |
|
|
627
627
|
| `--refresh` | | 从服务端刷新本地命令缓存(旁路 24 小时缓存) |
|
|
628
|
+
| `--auto-paginate` | | 当响应包含分页信号(`next_page_token` 或 `pagination.has_more`)时自动拉取并合并所有页;列表数组会拼接,200 页安全上限与连续 3 空页保护防止失控循环 |
|
|
628
629
|
|
|
629
630
|
## 进阶用法
|
|
630
631
|
|
package/bin/meegle-darwin-arm64
CHANGED
|
Binary file
|
package/bin/meegle-darwin-x64
CHANGED
|
Binary file
|
package/bin/meegle-linux-arm64
CHANGED
|
Binary file
|
package/bin/meegle-linux-x64
CHANGED
|
Binary file
|
|
Binary file
|
package/bin/meegle-win32-x64.exe
CHANGED
|
Binary file
|