@k-msg/cli 0.2.0 → 0.3.0

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
@@ -1,5 +1,12 @@
1
1
  # @k-msg/cli
2
2
 
3
+ ## 0.3.0 — 2026-02-16
4
+
5
+ ### Minor changes
6
+
7
+ - [204531e](https://github.com/k-otp/k-msg/commit/204531ea503a51fc0ee320fa53cf95f0293f66e8) Integrate Bunli `@bunli/plugin-ai-detect` into the CLI and auto-enable JSON output
8
+ in AI-agent environments (including custom detections for `CODEX_*` and `MCP_*`). — Thanks @imjlk!
9
+
3
10
  ## 0.2.0 — 2026-02-15
4
11
 
5
12
  ### Minor changes
package/README.md CHANGED
@@ -153,6 +153,8 @@ k-msg kakao template request --template-code TPL_001 --channel main
153
153
  ## Output / Exit Codes
154
154
 
155
155
  - `--json`: print machine-readable JSON
156
+ - AI environments (Bunli `@bunli/plugin-ai-detect`): JSON output is auto-enabled
157
+ when an agent is detected (`CLAUDECODE`, `CURSOR_AGENT`, `CODEX_*`, `MCP_*`)
156
158
  - exit code:
157
159
  - `0`: success
158
160
  - `2`: input/config error
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k-msg/cli",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "private": false,
5
5
  "description": "k-msg CLI (prebuilt binaries via GitHub Releases)",
6
6
  "type": "module",
@@ -30,11 +30,12 @@
30
30
  },
31
31
  "devDependencies": {
32
32
  "@bunli/core": "^0.5.4",
33
+ "@bunli/plugin-ai-detect": "^0.5.2",
33
34
  "@bunli/test": "^0.3.2",
34
35
  "@types/bun": "latest",
35
36
  "@types/node": "^22.0.0",
36
- "k-msg": "0.7.3",
37
37
  "bunli": "^0.5.3",
38
+ "k-msg": "0.8.0",
38
39
  "typescript": "^5.7.2",
39
40
  "zod": "^4.0.14"
40
41
  },