claude-threads 1.18.2 → 1.19.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.
@@ -10,6 +10,7 @@ workingDir: /home/user/repos/myproject
10
10
  chrome: false
11
11
  worktreeMode: prompt
12
12
  respondOnlyWhenMentioned: false
13
+ userAttribution: true
13
14
 
14
15
  platforms:
15
16
  # Mattermost
@@ -44,6 +45,7 @@ platforms:
44
45
  | `chrome` | Enable Chrome integration | `false` |
45
46
  | `worktreeMode` | Git worktree mode: `off`, `prompt`, or `require` | `prompt` |
46
47
  | `respondOnlyWhenMentioned` | Start new threads in quiet mode, where the bot only replies to messages that @mention it. Users can still toggle per-thread with `!mentions`. | `false` |
48
+ | `userAttribution` | Prefix each user turn sent to Claude with the sender's `[@username]:` so Claude can tell who is speaking in multi-user threads. Only applied once a thread has more than one participant (after `!invite`); solo threads are left untouched. Set `false` to disable. Applies to new sessions. | `true` |
47
49
  | `keepAlive` | Prevent system sleep while sessions are active | `true` |
48
50
  | `limits` | Resource limits and timeouts (see below) | see below |
49
51
  | `threadLogs` | Thread logging (see below) | enabled |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-threads",
3
- "version": "1.18.2",
3
+ "version": "1.19.0",
4
4
  "description": "Run Claude Code from Slack or Mattermost. Sessions stream live into threads where your whole team can watch and steer.",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -29,7 +29,7 @@
29
29
  "lint": "eslint src/",
30
30
  "lint:fix": "eslint src/ --fix",
31
31
  "typecheck": "tsc --noEmit",
32
- "knip": "npx knip",
32
+ "knip": "knip --no-config-hints",
33
33
  "prepare": "husky"
34
34
  },
35
35
  "keywords": [
@@ -67,7 +67,7 @@
67
67
  "package.json"
68
68
  ],
69
69
  "dependencies": {
70
- "@hono/node-server": "2.0.9",
70
+ "@hono/node-server": "2.0.11",
71
71
  "@inkjs/ui": "^2.0.0",
72
72
  "@modelcontextprotocol/sdk": "^1.26.0",
73
73
  "@redactpii/node": "^1.0.16",
@@ -75,10 +75,10 @@
75
75
  "commander": "^14.0.2",
76
76
  "diff": "^8.0.3",
77
77
  "express-rate-limit": "^8.3.0",
78
- "hono": "4.12.30",
78
+ "hono": "4.12.31",
79
79
  "ink": "^6.6.0",
80
80
  "ink-scroll-view": "^0.3.5",
81
- "js-yaml": "^4.1.1",
81
+ "js-yaml": "^4.3.0",
82
82
  "prompts": "^2.4.2",
83
83
  "react": "^19.2.3",
84
84
  "semver": "7.8.5",
@@ -98,6 +98,7 @@
98
98
  "@types/ws": "^8.18.0",
99
99
  "eslint": "^10.7.0",
100
100
  "husky": "^9.1.7",
101
+ "knip": "6.29.0",
101
102
  "lint-staged": "^17.0.4",
102
103
  "prettier": "^3.9.5",
103
104
  "typescript": "^6.0.2",
@@ -120,9 +121,10 @@
120
121
  "flatted": ">=3.4.0",
121
122
  "picomatch": ">=2.3.2",
122
123
  "path-to-regexp": ">=8.4.0",
123
- "fast-uri": ">=3.1.2",
124
+ "fast-uri": ">=3.1.4",
125
+ "brace-expansion": ">=5.0.7",
124
126
  "ws": "$ws",
125
- "shell-quote": ">=1.8.4"
127
+ "shell-quote": ">=1.10.0"
126
128
  },
127
129
  "resolutions": {
128
130
  "hono": "$hono",
@@ -131,8 +133,9 @@
131
133
  "flatted": ">=3.4.0",
132
134
  "picomatch": ">=2.3.2",
133
135
  "path-to-regexp": ">=8.4.0",
134
- "fast-uri": ">=3.1.2",
136
+ "fast-uri": ">=3.1.4",
137
+ "brace-expansion": ">=5.0.7",
135
138
  "ws": "$ws",
136
- "shell-quote": ">=1.8.4"
139
+ "shell-quote": ">=1.10.0"
137
140
  }
138
141
  }