claude-threads 1.16.3 → 1.17.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
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.17.1] - 2026-06-19
11
+
12
+ ### Fixed
13
+ - **Quiet mode (`!mentions on`) now survives an idle pause.** A session with "respond only when mentioned" enabled would still resume on the first non-mention reply once it had been paused for inactivity, defeating the whole point of quiet mode. The active-session path honored the gate but the paused-session resume path did not check the persisted `respondOnlyWhenMentioned` flag, so any plain message woke the session up. The resume path now applies the same gate: while quiet mode is on, a reply that doesn't @mention the bot no longer resumes a paused session. Commands (including `!stop`) still bypass the gate as before. (#410)
14
+
15
+ ### Security
16
+ - **`hono` 4.12.23 → 4.12.25** to resolve CVE-2026-54290 (HIGH): the CORS middleware reflected any `Origin` with credentials when `origin` defaulted to `*`.
17
+ - **Pinned transitive `ws` ≥ 8.21.0 and `shell-quote` ≥ 1.8.4** (both pulled in via `ink`) to clear GHSA-96hv-2xvq-fx4p (HIGH, `ws` memory-exhaustion DoS) and GHSA-w7jw-789q-3m8p (CRITICAL, `shell-quote` newline escaping). Added to the existing `overrides`/`resolutions` blocks; runtime behavior is unchanged.
18
+
19
+ ## [1.17.0] - 2026-06-05
20
+
21
+ ### Added
22
+ - **`!mentions` quiet mode: respond only when @mentioned.** New per-session toggle for holding side conversations inside a bot thread without the bot replying to every message. `!mentions on` makes the bot ignore thread replies that don't explicitly @mention it; `!mentions off` (or a bare `!mentions` to flip the current value) turns it back off. Commands and pending worktree-branch-name prompts always bypass the gate, so `!mentions off` (and answering a worktree prompt) works even while quiet mode is on. When quiet mode is on, the session header shows a row noting it, so a returning user can see why the bot is staying quiet. The setting is owned by the session owner or a globally allowed user and persists across a bot restart. A global `respondOnlyWhenMentioned: true` in `config.yaml` (also offered in the onboarding wizard) seeds quiet mode on every new thread, so users who mostly want quiet threads don't have to run `!mentions on` each time; each session still keeps its own value and can override per-thread. The default everywhere is unchanged (the bot treats every approved-user reply as input), so existing threads and configs are unaffected. (#402)
23
+
24
+ ### Dependencies
25
+ - **Production:** `js-yaml` 4.1.1 → 4.2.0, `react` 19.2.6 → 19.2.7. (#404)
26
+ - **Dev:** `typescript-eslint` 8.60.0 → 8.60.1. (#403)
27
+
10
28
  ## [1.16.3] - 2026-05-31
11
29
 
12
30
  ### Changed
package/README.md CHANGED
@@ -85,6 +85,7 @@ Type `!help` in any session thread:
85
85
  | `!compact` | Compress context to free up space |
86
86
  | `!cd <path>` | Change working directory (restarts Claude) |
87
87
  | `!permissions <mode>` | Set permission mode: `default` / `auto` / `bypass` |
88
+ | `!mentions [on\|off]` | Quiet mode: only respond when @mentioned (bare `!mentions` toggles) |
88
89
  | `!worktree <branch>` | Create and switch to a git worktree (also: `list`, `switch`, `remove`, `cleanup`, `off`) |
89
90
  | `!plugin <list\|install\|uninstall> [name]` | Manage Claude Code plugins (restarts Claude) |
90
91
  | `!invite @user` | Invite a user to this session (added as `Co-Authored-By:` on commits) |