@k-msg/cli 0.3.0 → 0.3.1

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.1 — 2026-02-16
4
+
5
+ ### Patch changes
6
+
7
+ - [4aaa986](https://github.com/k-otp/k-msg/commit/4aaa9865c6df4d611e8f64bdd509a500cb9cda42) Narrow AI auto-JSON detection to explicit Codex/MCP runtime env keys to avoid
8
+ switching human CLI output to JSON on unrelated environment variables. — Thanks @imjlk!
9
+
3
10
  ## 0.3.0 — 2026-02-16
4
11
 
5
12
  ### Minor changes
package/README.md CHANGED
@@ -24,6 +24,18 @@ Env overrides:
24
24
  - `K_MSG_CLI_CACHE_DIR`: override where the extracted binary is cached
25
25
  - `K_MSG_CLI_LOCAL_BINARY`: copy a local binary instead of downloading (useful for local testing)
26
26
 
27
+ ### curl installer (GitHub Pages)
28
+
29
+ ```bash
30
+ curl -fsSL https://k-otp.github.io/k-msg/cli/install.sh | bash
31
+ ```
32
+
33
+ Installer environment variables:
34
+
35
+ - `K_MSG_CLI_VERSION`: override target version (default: latest Pages script version)
36
+ - `K_MSG_CLI_INSTALL_DIR`: target directory (default: `~/.local/bin`)
37
+ - `K_MSG_CLI_BASE_URL`: override release base URL (default: `https://github.com/k-otp/k-msg/releases/download/cli-v<version>`)
38
+
27
39
  ### GitHub Releases (manual)
28
40
 
29
41
  The distribution workflow also publishes prebuilt binaries to GitHub Releases as:
@@ -154,7 +166,9 @@ k-msg kakao template request --template-code TPL_001 --channel main
154
166
 
155
167
  - `--json`: print machine-readable JSON
156
168
  - AI environments (Bunli `@bunli/plugin-ai-detect`): JSON output is auto-enabled
157
- when an agent is detected (`CLAUDECODE`, `CURSOR_AGENT`, `CODEX_*`, `MCP_*`)
169
+ when an agent is detected (`CLAUDECODE`, `CURSOR_AGENT`, `CODEX_CI` /
170
+ `CODEX_SHELL` / `CODEX_THREAD_ID`, `MCP_SERVER_NAME` / `MCP_SESSION_ID` /
171
+ `MCP_TOOL_NAME`)
158
172
  - exit code:
159
173
  - `0`: success
160
174
  - `2`: input/config error
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k-msg/cli",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "private": false,
5
5
  "description": "k-msg CLI (prebuilt binaries via GitHub Releases)",
6
6
  "type": "module",