@k-msg/cli 0.9.7 → 0.9.9

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +6 -3
  3. package/package.json +32 -20
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @k-msg/cli
2
2
 
3
+ ## 0.9.9 — 2026-04-12
4
+
5
+ ### Patch changes
6
+
7
+ - Updated dependencies: channel@0.29.6, core@0.29.6, messaging@0.29.6, provider@0.29.6, template@0.29.6, k-msg@0.29.6
8
+
9
+ ## 0.9.8 — 2026-04-12
10
+
11
+ ### Patch changes
12
+
13
+ - [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!
14
+ - [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!
15
+ - 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
16
+
3
17
  ## 0.9.7 — 2026-03-08
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.7",
3
+ "version": "0.9.9",
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 generate",
24
- "doctor:completions": "bun run generate && bunx bunli@0.7.1 doctor completions --strict",
25
- "build": "bunli build",
26
- "build:all": "bunli build --targets all",
27
- "build:native": "bunli build --targets native",
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,21 +34,33 @@
34
34
  "clean": "rm -rf dist"
35
35
  },
36
36
  "devDependencies": {
37
- "@bunli/core": "^0.7.0",
38
- "@bunli/plugin-ai-detect": "^0.6.2",
39
- "@bunli/plugin-completions": "^0.3.3",
40
- "@bunli/test": "^0.4.2",
41
- "@k-msg/channel": "0.28.0",
42
- "@k-msg/core": "0.28.0",
43
- "@k-msg/messaging": "0.28.0",
44
- "@k-msg/provider": "0.28.0",
45
- "@k-msg/template": "0.28.0",
46
- "@types/bun": "^1.3.9",
47
- "@types/node": "^22.0.0",
48
- "bunli": "^0.7.1",
49
- "k-msg": "0.28.0",
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.5",
45
+ "@k-msg/core": "0.29.5",
46
+ "@k-msg/messaging": "0.29.5",
47
+ "@k-msg/provider": "0.29.5",
48
+ "@k-msg/template": "0.29.5",
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": "^25.6.0",
56
+ "@types/react": "^19.2.14",
57
+ "@types/react-dom": "^19.2.3",
58
+ "bunli": "0.9.1",
59
+ "k-msg": "0.29.5",
60
+ "react": "^19.2.5",
61
+ "react-dom": "^19.2.5",
50
62
  "solapi": "^5.5.4",
51
- "typescript": "^5.7.2",
63
+ "typescript": "^6.0.2",
52
64
  "zod": "^4.0.14"
53
65
  },
54
66
  "keywords": [