mirror of
https://github.com/andrepimenta/claude-code-chat.git
synced 2025-12-08 17:39:44 +00:00
- Add model selector dropdown in chat interface (Opus, Sonnet, Default) - Model preference persists across sessions using workspace state - Add model validation to prevent invalid selections - Display confirmation messages when switching models - Update Claude command to include --model flag when specific model selected - Reorganize input controls layout for better UX - Update documentation in README.md and CHANGELOG.md
196 lines
4.6 KiB
JSON
196 lines
4.6 KiB
JSON
{
|
|
"name": "claude-code-chat",
|
|
"displayName": "Claude Code Chat",
|
|
"description": "Beautiful Claude Code Chat Interface for VS Code",
|
|
"version": "0.0.9",
|
|
"publisher": "AndrePimenta",
|
|
"author": "Andre Pimenta",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/andrepimenta/claude-code-chat"
|
|
},
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"engines": {
|
|
"vscode": "^1.95.0"
|
|
},
|
|
"categories": [
|
|
"Other",
|
|
"AI",
|
|
"Chat",
|
|
"Machine Learning",
|
|
"Snippets",
|
|
"Programming Languages",
|
|
"Education",
|
|
"Testing",
|
|
"Formatters",
|
|
"Linters"
|
|
],
|
|
"keywords": [
|
|
"claude code",
|
|
"code explanation",
|
|
"code generation",
|
|
"code summary",
|
|
"code transform",
|
|
"vibe coding",
|
|
"prompt language",
|
|
"copilot",
|
|
"claude",
|
|
"ai",
|
|
"assistant",
|
|
"chatbot",
|
|
"chat",
|
|
"anthropic",
|
|
"code",
|
|
"programming",
|
|
"development",
|
|
"productivity"
|
|
],
|
|
"icon": "icon.png",
|
|
"main": "./out/extension.js",
|
|
"activationEvents": [
|
|
"onStartupFinished"
|
|
],
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "claude-code-chat.openChat",
|
|
"title": "Open Claude Code Chat",
|
|
"category": "Claude Code Chat",
|
|
"icon": "icon.png"
|
|
}
|
|
],
|
|
"keybindings": [
|
|
{
|
|
"command": "claude-code-chat.openChat",
|
|
"key": "ctrl+shift+c",
|
|
"mac": "cmd+shift+c"
|
|
}
|
|
],
|
|
"menus": {
|
|
"commandPalette": [
|
|
{
|
|
"command": "claude-code-chat.openChat"
|
|
}
|
|
],
|
|
"editor/context": [
|
|
{
|
|
"command": "claude-code-chat.openChat",
|
|
"group": "claude@1",
|
|
"when": "editorTextFocus"
|
|
}
|
|
],
|
|
"editor/title": [
|
|
{
|
|
"command": "claude-code-chat.openChat",
|
|
"group": "navigation@1",
|
|
"when": "true"
|
|
}
|
|
],
|
|
"editor/title/context": [
|
|
{
|
|
"command": "claude-code-chat.openChat",
|
|
"group": "claude@1"
|
|
}
|
|
],
|
|
"explorer/context": [
|
|
{
|
|
"command": "claude-code-chat.openChat",
|
|
"group": "claude@1"
|
|
}
|
|
],
|
|
"scm/title": [
|
|
{
|
|
"command": "claude-code-chat.openChat",
|
|
"group": "navigation@1",
|
|
"when": "true"
|
|
}
|
|
],
|
|
"view/title": [
|
|
{
|
|
"command": "claude-code-chat.openChat",
|
|
"group": "navigation@1",
|
|
"when": "view == workbench.explorer.fileView"
|
|
}
|
|
],
|
|
"touchBar": [
|
|
{
|
|
"command": "claude-code-chat.openChat",
|
|
"group": "editing",
|
|
"when": "true"
|
|
}
|
|
],
|
|
"menuBar/file": [
|
|
{
|
|
"command": "claude-code-chat.openChat",
|
|
"group": "1_new@1"
|
|
}
|
|
]
|
|
},
|
|
"views": {
|
|
"claude-code-chat": [
|
|
{
|
|
"id": "claude-code-chat.chat",
|
|
"name": "Claude Code Chat",
|
|
"when": "true",
|
|
"icon": "icon.png",
|
|
"contextualTitle": "Claude Code Chat"
|
|
}
|
|
]
|
|
},
|
|
"viewsContainers": {
|
|
"activitybar": [
|
|
{
|
|
"id": "claude-code-chat",
|
|
"title": "Claude Code Chat",
|
|
"icon": "icon.png"
|
|
}
|
|
]
|
|
},
|
|
"configuration": {
|
|
"title": "Claude Code Chat",
|
|
"properties": {
|
|
"claudeCodeChat.wsl.enabled": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Enable WSL integration for running Claude"
|
|
},
|
|
"claudeCodeChat.wsl.distro": {
|
|
"type": "string",
|
|
"default": "Ubuntu",
|
|
"description": "WSL distribution name (e.g., Ubuntu, Debian)"
|
|
},
|
|
"claudeCodeChat.wsl.nodePath": {
|
|
"type": "string",
|
|
"default": "/usr/bin/node",
|
|
"description": "Path to Node.js in the WSL distribution"
|
|
},
|
|
"claudeCodeChat.wsl.claudePath": {
|
|
"type": "string",
|
|
"default": "/usr/local/bin/claude",
|
|
"description": "Path to Claude executable in the WSL distribution"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run compile",
|
|
"compile": "tsc -p ./",
|
|
"watch": "tsc -watch -p ./",
|
|
"pretest": "npm run compile && npm run lint",
|
|
"lint": "eslint src",
|
|
"test": "vscode-test"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^10.0.10",
|
|
"@types/node": "20.x",
|
|
"@types/vscode": "^1.95.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.31.1",
|
|
"@typescript-eslint/parser": "^8.31.1",
|
|
"@vscode/test-cli": "^0.0.10",
|
|
"@vscode/test-electron": "^2.5.2",
|
|
"@vscode/vsce": "^3.5.0",
|
|
"eslint": "^9.25.1",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|