Bring in mcp-skills-plugins branch: marketplace, plugins, skills, OpenCredits, and image previews

Major release adding:
- MCP marketplace with curated registry and search across multiple registries
- Plugins and skills marketplace integration
- OpenCredits payment integration with model selection and checkout flow
- Image preview before sending (paste, file picker)
- Self-hosted Umami analytics with custom events
- Support feedback modal with Discord webhook
- Local OpenAI to Anthropic router for model routing
- Inline stop button replacing send during processing
- Improved install flow requiring Node.js 18+
- WSL env var passthrough fixes
- Better error handling and Windows compatibility

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
andrepimenta
2026-04-11 23:54:13 +01:00
parent b527b6f4c9
commit deca7de8d5
25 changed files with 7994 additions and 641 deletions

View File

@@ -2,7 +2,7 @@
"name": "claude-code-chat",
"displayName": "Chat for Claude Code",
"description": "Beautiful Claude Code Chat Interface for VS Code",
"version": "1.1.0",
"version": "2.0.0",
"publisher": "AndrePimenta",
"author": "Andre Pimenta",
"repository": {
@@ -185,6 +185,26 @@
"type": "boolean",
"default": false,
"description": "Enable Yolo Mode to skip all permission checks. Use with caution as Claude can execute any command without asking."
},
"claudeCodeChat.executable.path": {
"type": "string",
"default": "",
"description": "Custom path to the Claude Code executable. Leave empty to use the default 'claude' command."
},
"claudeCodeChat.environment.variables": {
"type": "object",
"default": {},
"description": "Custom environment variables to pass to Claude Code. Example: {\"ANTHROPIC_API_KEY\": \"sk-...\"}"
},
"claudeCodeChat.environment.disabled": {
"type": "boolean",
"default": false,
"description": "When enabled, custom environment variables are not passed to Claude Code."
},
"claudeCodeChat.router.enabled": {
"type": "boolean",
"default": false,
"description": "Enable the local router to convert OpenAI format to Anthropic format. Required for providers that use OpenAI-compatible APIs."
}
}
}