Skip to content

Commit 1f4b320

Browse files
committed
Create new release
1 parent efbd79f commit 1f4b320

File tree

3 files changed

+77
-2
lines changed

3 files changed

+77
-2
lines changed

CHANGELOG.md

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,65 @@ All notable changes to the "claude-code-chat" extension will be documented in th
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7+
## [0.1.0] - 2025-06-20
8+
9+
### 🚀 Major Features Added
10+
11+
#### **Interactive Thinking Mode with Intensity Control**
12+
- Added configurable thinking mode with 4 intensity levels: Think, Think Hard, Think Harder, Ultrathink
13+
- Beautiful slider interface in settings for intensity selection
14+
- Clickable intensity labels for easy selection
15+
- Different thinking prompts based on selected intensity level
16+
- Higher intensities provide more detailed reasoning but consume more tokens
17+
- Settings persist across sessions with VS Code configuration integration
18+
19+
#### **Plan First Mode**
20+
- New toggle for "Plan First" mode that instructs Claude to plan before making changes
21+
- Requires user approval before proceeding with implementation
22+
- Safer experimentation workflow for complex changes
23+
- Simple switch interface above the text input area
24+
25+
#### **Slash Commands Modal System**
26+
- Type "/" to open beautiful slash commands modal with 19+ commands
27+
- Complete Claude Code command integration: /bug, /clear, /compact, /config, /cost, /doctor, /help, /init, /login, /logout, /mcp, /memory, /model, /permissions, /pr_comments, /review, /status, /terminal-setup, /vim
28+
- Custom command input field for executing any Claude Code command
29+
- Session-aware command execution with automatic session resumption
30+
- Commands open in VS Code terminal with proper WSL support
31+
- Visual feedback and user guidance for terminal interaction
32+
33+
#### **Enhanced Model Configuration**
34+
- Updated "Default" model to show "User configured" instead of "Smart allocation"
35+
- Added "Configure" button next to Default model option
36+
- Configure button opens terminal with `claude /model` command for easy model setup
37+
- Session-aware model configuration with current session context
38+
- Clear user messaging about terminal interaction and return workflow
39+
40+
#### **Advanced Settings Management**
41+
- Restructured settings with better organization and grouping
42+
- Added "Coming Soon" sections for Custom Slash Commands and MCP Configuration
43+
- Consistent UI patterns across all settings sections
44+
- Clean, professional design matching VS Code aesthetics
45+
46+
### 🎨 **UI/UX Improvements**
47+
- Smaller, more subtle mode toggle switches (reduced by 2px)
48+
- Clickable text labels for all toggle switches
49+
- Improved slider positioning and label alignment
50+
- Sober, clean interface design without unnecessary colors or decorations
51+
- Better visual hierarchy in settings modal
52+
- Responsive design improvements
53+
54+
### 🔧 **Technical Enhancements**
55+
- Session ID now passed to all slash commands for context awareness
56+
- Improved message handling between frontend and backend
57+
- Better error handling and user feedback
58+
- Enhanced WSL compatibility for all new features
59+
- Modular code structure for easier maintenance
60+
61+
### 📚 **Documentation Updates**
62+
- Updated keyboard shortcuts documentation
63+
- Enhanced configuration examples
64+
- Improved feature descriptions and usage examples
65+
766
## [0.0.9] - 2025-06-19
867

968
### Added

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,25 @@ Ditch the command line and experience Claude Code like never before. This extens
6565
### 🤖 **Model Selection**
6666
- **Opus** - Most capable model for complex tasks requiring deep reasoning
6767
- **Sonnet** - Balanced model offering great performance for most use cases
68-
- **Default** - Smart model allocation based on Claude's recommendations
68+
- **Default** - Uses your configured model setting
6969
- Model preference persists across sessions and is saved automatically
7070
- Easy switching via dropdown selector in the chat interface
7171
- Visual confirmation when switching between models
72+
- One-click model configuration through integrated terminal
73+
74+
### **Slash Commands Integration**
75+
- **Slash Commands Modal** - Type "/" to access all Claude Code commands instantly
76+
- **19+ Built-in Commands** - /cost, /status, /config, /help, /memory, /review, and more
77+
- **Custom Command Support** - Execute any Claude Code command with session context
78+
- **Session-Aware Execution** - All commands run with current conversation context
79+
- **Terminal Integration** - Commands open directly in VS Code terminal with WSL support
80+
81+
### 🧠 **Advanced AI Modes**
82+
- **Plan First Mode** - Toggle to make Claude plan before implementing changes
83+
- **Thinking Mode** - Configurable intensity levels (Think, Think Hard, Think Harder, Ultrathink)
84+
- **Mode Toggles** - Simple switches above the text input area
85+
- **Intelligent Prompting** - Different prompts based on selected thinking intensity
86+
- **Token Awareness** - Higher thinking levels consume more tokens but provide deeper reasoning
7287

7388
---
7489

@@ -168,6 +183,7 @@ If you want to revert these changes, just click "Restore Checkpoint" to go back
168183
| `Ctrl+Shift+C` | Open Claude Code Chat |
169184
| `Enter` | Send message |
170185
| `@` | Open file picker |
186+
| `/` | Open slash commands modal |
171187

172188
### WSL Configuration (Windows Users)
173189
If you're using Claude Code through WSL (Windows Subsystem for Linux), you can configure the extension to use WSL:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "claude-code-chat",
33
"displayName": "Claude Code Chat",
44
"description": "Beautiful Claude Code Chat Interface for VS Code",
5-
"version": "0.0.9",
5+
"version": "0.1.0",
66
"publisher": "AndrePimenta",
77
"author": "Andre Pimenta",
88
"repository": {

0 commit comments

Comments
 (0)