claude-threads 1.3.2 → 1.4.2
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 +31 -0
- package/dist/index.js +489 -29
- package/dist/mcp/permission-server.js +7897 -12155
- package/package.json +11 -4
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,37 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.4.2] - 2026-01-18
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **Todo checkbox alignment** - Replace ⬜ with 🔲 for pending tasks to fix irregular spacing (#238)
|
|
12
|
+
|
|
13
|
+
## [1.4.1] - 2026-01-18
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- **npm publish failure** - Fixed override conflict for hono dependency that caused npm publish to fail
|
|
17
|
+
|
|
18
|
+
## [1.4.0] - 2026-01-18
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- **Tool formatters for additional MCP tools** - New formatters for shell, notebook, playwright, figma, and context7 tools (#237)
|
|
22
|
+
- `TaskOutput`, `KillShell`, `BashOutput` for shell operations
|
|
23
|
+
- `NotebookEdit` for Jupyter notebook operations
|
|
24
|
+
- Playwright browser automation tools (navigate, screenshot, wait, etc.)
|
|
25
|
+
- Figma design tools (screenshot, metadata, design context)
|
|
26
|
+
- Context7 documentation tools (resolve-library-id, query-docs)
|
|
27
|
+
- **Commands in first message** - `!commands` now work in the initial session message (#236)
|
|
28
|
+
- Supports `!permissions`, `!cd`, `!worktree`, `!invite`, `!context`
|
|
29
|
+
- Example: `@bot !permissions skip` starts session without permission prompts
|
|
30
|
+
- **Skill tool formatter** - Display for `/skill` commands showing skill name and arguments (#234)
|
|
31
|
+
|
|
32
|
+
### Security
|
|
33
|
+
- **Security audit fixes and Trivy CI integration** - Added npm audit and Trivy scanning to CI workflow (#235)
|
|
34
|
+
- Fixed path traversal vulnerability in thread logger
|
|
35
|
+
- Fixed prototype pollution in thread logger
|
|
36
|
+
- Sanitized worktree branch names to prevent git command injection
|
|
37
|
+
- Sanitized session IDs to prevent directory traversal
|
|
38
|
+
|
|
8
39
|
## [1.3.2] - 2026-01-17
|
|
9
40
|
|
|
10
41
|
### Changed
|