@k-msg/cli 0.9.6 → 0.9.8
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 -0
- package/README.md +6 -3
- package/package.json +31 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @k-msg/cli
|
|
2
2
|
|
|
3
|
+
## 0.9.8 — 2026-04-12
|
|
4
|
+
|
|
5
|
+
### Patch changes
|
|
6
|
+
|
|
7
|
+
- [c3aeb65](https://github.com/k-otp/k-msg/commit/c3aeb6525eed6859c6bc3a614fb5751ece1f4989) Refresh the Bun/Bunli toolchain baselines, update the CLI for Bunli 0.9, and keep completion/build workflows working without depending on the broken upstream `bunli` executable path. — Thanks @imjlk!
|
|
8
|
+
- [9ababe0](https://github.com/k-otp/k-msg/commit/9ababe0f7cbe72f4e6bfff21b243707888d2fc06) Upgrade the CLI to the Bunli 0.9.1 toolchain, preserve strict boolean and empty-string argument handling, and add fullscreen interactive TUI flows for `k-msg config init` and `k-msg config provider add`. — Thanks @imjlk!
|
|
9
|
+
- Updated dependencies: channel@0.29.5, core@0.29.5, messaging@0.29.5, provider@0.29.5, template@0.29.5, k-msg@0.29.5
|
|
10
|
+
|
|
11
|
+
## 0.9.7 — 2026-03-08
|
|
12
|
+
|
|
13
|
+
### Patch changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies: channel@0.29.4, core@0.29.4, messaging@0.29.4, provider@0.29.4, template@0.29.4, k-msg@0.29.4
|
|
16
|
+
|
|
3
17
|
## 0.9.6 — 2026-03-07
|
|
4
18
|
|
|
5
19
|
### Patch changes
|
package/README.md
CHANGED
|
@@ -103,15 +103,18 @@ Schema URLs:
|
|
|
103
103
|
Initialize config:
|
|
104
104
|
|
|
105
105
|
```bash
|
|
106
|
-
# default: interactive wizard (TTY)
|
|
106
|
+
# default: interactive wizard (TTY opens the fullscreen TUI)
|
|
107
107
|
k-msg config init
|
|
108
108
|
|
|
109
109
|
# force full template (also auto-used in non-interactive environments)
|
|
110
110
|
k-msg config init --template full
|
|
111
111
|
|
|
112
112
|
# add providers incrementally
|
|
113
|
+
# interactive TTY: opens the alternate-buffer TUI
|
|
113
114
|
k-msg config provider add
|
|
114
115
|
k-msg config provider add iwinv
|
|
116
|
+
|
|
117
|
+
# non-interactive environments still fall back to the prompt/validation path
|
|
115
118
|
```
|
|
116
119
|
|
|
117
120
|
### `env:` substitution
|
|
@@ -165,8 +168,8 @@ Required values by provider/channel:
|
|
|
165
168
|
|
|
166
169
|
## Commands
|
|
167
170
|
|
|
168
|
-
- `k-msg config init|show|validate`
|
|
169
|
-
- `k-msg config provider add [type]`
|
|
171
|
+
- `k-msg config init|show|validate` (`init` opens the fullscreen config form in interactive TTYs)
|
|
172
|
+
- `k-msg config provider add [type]` (interactive TTY opens the fullscreen provider form)
|
|
170
173
|
- `k-msg providers list|health|doctor`
|
|
171
174
|
- `k-msg sms send`
|
|
172
175
|
- `k-msg alimtalk preflight|send`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@k-msg/cli",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.8",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "k-msg CLI (prebuilt binaries via GitHub Releases)",
|
|
6
6
|
"type": "module",
|
|
@@ -20,11 +20,11 @@
|
|
|
20
20
|
"CHANGELOG.md"
|
|
21
21
|
],
|
|
22
22
|
"scripts": {
|
|
23
|
-
"generate": "bunli
|
|
24
|
-
"doctor:completions": "bun run generate &&
|
|
25
|
-
"build": "bunli
|
|
26
|
-
"build:all": "bunli
|
|
27
|
-
"build:native": "bunli
|
|
23
|
+
"generate": "bun run scripts/bunli-generate.ts",
|
|
24
|
+
"doctor:completions": "bun run generate && bun run scripts/bunli-doctor-completions.ts --strict",
|
|
25
|
+
"build": "bun run scripts/bunli-build.ts",
|
|
26
|
+
"build:all": "bun run scripts/bunli-build.ts --targets all",
|
|
27
|
+
"build:native": "bun run scripts/bunli-build.ts --targets native",
|
|
28
28
|
"build:js": "bun run generate && bun build src/k-msg.ts --outdir=dist --format=esm --target=bun",
|
|
29
29
|
"dev": "bun run generate && bun --watch src/k-msg.ts",
|
|
30
30
|
"typecheck": "bun run generate && tsc --noEmit -p tsconfig.json",
|
|
@@ -34,19 +34,31 @@
|
|
|
34
34
|
"clean": "rm -rf dist"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@bunli/core": "
|
|
38
|
-
"@bunli/
|
|
39
|
-
"@bunli/plugin-
|
|
40
|
-
"@bunli/
|
|
41
|
-
"@
|
|
42
|
-
"@
|
|
43
|
-
"@
|
|
44
|
-
"@k-msg/
|
|
45
|
-
"@k-msg/
|
|
46
|
-
"@
|
|
47
|
-
"@
|
|
48
|
-
"
|
|
49
|
-
"
|
|
37
|
+
"@bunli/core": "0.9.1",
|
|
38
|
+
"@bunli/generator": "^0.6.5",
|
|
39
|
+
"@bunli/plugin-ai-detect": "0.6.4",
|
|
40
|
+
"@bunli/plugin-completions": "0.3.5",
|
|
41
|
+
"@bunli/runtime": "0.3.2",
|
|
42
|
+
"@bunli/test": "^0.6.0",
|
|
43
|
+
"@bunli/tui": "0.6.0",
|
|
44
|
+
"@k-msg/channel": "0.29.4",
|
|
45
|
+
"@k-msg/core": "0.29.4",
|
|
46
|
+
"@k-msg/messaging": "0.29.4",
|
|
47
|
+
"@k-msg/provider": "0.29.4",
|
|
48
|
+
"@k-msg/template": "0.29.4",
|
|
49
|
+
"@opentui/core-darwin-arm64": "0.1.97",
|
|
50
|
+
"@opentui/core-darwin-x64": "0.1.97",
|
|
51
|
+
"@opentui/core-linux-arm64": "0.1.97",
|
|
52
|
+
"@opentui/core-linux-x64": "0.1.97",
|
|
53
|
+
"@opentui/core-win32-x64": "0.1.97",
|
|
54
|
+
"@types/bun": "^1.3.11",
|
|
55
|
+
"@types/node": "^22.19.17",
|
|
56
|
+
"@types/react": "^19.2.14",
|
|
57
|
+
"@types/react-dom": "^19.2.3",
|
|
58
|
+
"bunli": "0.9.1",
|
|
59
|
+
"k-msg": "0.29.4",
|
|
60
|
+
"react": "^19.2.5",
|
|
61
|
+
"react-dom": "^19.2.5",
|
|
50
62
|
"solapi": "^5.5.4",
|
|
51
63
|
"typescript": "^5.7.2",
|
|
52
64
|
"zod": "^4.0.14"
|