@lark-project/meegle 1.0.13 → 1.0.14
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 +8 -2
- package/README.md +3 -3
- package/README.zh-CN.md +3 -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,17 @@ versioned section on each npm release.
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [v1.0.14] - 2026-07-01
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- 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.
|
|
16
|
+
|
|
11
17
|
## [v1.0.13] - 2026-06-30
|
|
12
18
|
|
|
13
19
|
### Fixed
|
|
14
20
|
|
|
15
|
-
- Corrected the npm quick-start commands
|
|
21
|
+
- 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
22
|
|
|
17
23
|
## [v1.0.12] - 2026-06-29
|
|
18
24
|
|
|
@@ -24,7 +30,7 @@ versioned section on each npm release.
|
|
|
24
30
|
|
|
25
31
|
### Added
|
|
26
32
|
|
|
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
|
|
33
|
+
- `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
34
|
|
|
29
35
|
### Fixed
|
|
30
36
|
|
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.
|
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`)。
|
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
|