Skip to content

Commit 6b92b0b

Browse files
authored
chore(release): v3.2.1 (#51)
fix: correct agent command from claude-agent to cursor-agent - Fix AgentBridge to search for cursor-agent instead of claude-agent - Update search paths to use ~/.cursor/ instead of ~/.agent/ - This is a critical fix for the v3.2.0 release
1 parent a3a04ac commit 6b92b0b

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [3.2.1] - 2025-10-23
4+
5+
### Fixed
6+
- Corrected agent command from `claude-agent` to `cursor-agent` in AgentBridge
7+
- Updated command search paths to use `~/.cursor/` instead of `~/.agent/`
8+
39
## [3.2.0] - 2025-10-23
410

511
### Added

bin/cc-web.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const program = new Command();
1111
program
1212
.name('cc-web')
1313
.description('Web-based interface for Claude Code CLI')
14-
.version('3.2.0')
14+
.version('3.2.1')
1515
.option('-p, --port <number>', 'port to run the server on', '32352')
1616
.option('--no-open', 'do not automatically open browser')
1717
.option('--auth <token>', 'authentication token for secure access')

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "claude-code-web",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "Web-based interface for Claude Code CLI accessible via browser",
55
"main": "src/server.js",
66
"bin": {

0 commit comments

Comments
 (0)