Skip to content

Commit fdfb05e

Browse files
Version bump (#394)
* The -i flag has been removed from the `_run_command_cross_platform` function in `setup/components/mcp.py`. * fix: Prevent installer from hanging during MCP installation The SuperClaude installer was hanging during the installation of MCP components on non-Windows systems. This was caused by the use of an interactive shell (`-i`) when executing the `claude mcp add` command. The interactive shell would attempt to read from standard input, causing the process to be suspended by the shell. This commit fixes the issue by removing the `-i` flag from the `_run_command_cross_platform` function in `setup/components/mcp.py`. This ensures that the installation process runs non-interactively and completes without hanging. * fix: Add 'cmd /c' for Windows and refactor shell execution This commit resolves an issue with `npx` command execution on Windows by prepending `cmd /c` to the command. It also refactors the shell command execution for non-Windows systems to use the `executable` argument in `subprocess.run` for a cleaner and more robust implementation. * fix: Add 'cmd /c' for Windows and refactor shell execution This commit resolves an issue with `npx` command execution on Windows by prepending `cmd /c` to the command. It also refactors the shell command execution for non-Windows systems to use the `executable` argument in `subprocess.run` for a cleaner and more robust implementation. * docs: Update Chrome DevTools MCP documentation This commit updates the documentation for the Chrome DevTools MCP server to be more comprehensive and consistent with the existing documentation structure. The file `SuperClaude/MCP/MCP_Chrome-DevTools.md` has been updated with detailed information about the server's purpose, triggers, and usage examples. * docs: Update documentation for Chrome DevTools MCP This commit updates the main README.md and the MCP servers user guide to include information about the new Chrome DevTools MCP server. The documentation has been updated to reflect the new server count and provide details about the new server's functionality. * chore: Bump version to 4.1.5 This commit updates the version number from 4.1.4 to 4.1.5 across the entire codebase. This includes updates to: - CHANGELOG.md - Documentation files - Configuration files (package.json, pyproject.toml) - Source code fallbacks - The main VERSION file --------- Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
1 parent b2e93a5 commit fdfb05e

File tree

19 files changed

+28
-28
lines changed

19 files changed

+28
-28
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3838
- `TAVILY_API_KEY` environment variable for web search functionality
3939
- Node.js and npm for Tavily MCP execution
4040

41-
## [4.1.4] - 2025-09-20
41+
## [4.1.5] - 2025-09-26
4242
### Added
4343
- Comprehensive flag documentation integrated into `/sc:help` command
4444
- All 25 SuperClaude framework flags now discoverable from help system

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ This code of conduct draws inspiration from several established community standa
518518

519519
**Last Updated**: December 2024 (SuperClaude Framework v4.0)
520520
**Next Review**: June 2025 (Semi-annual review cycle)
521-
**Version**: 4.1.4 (Updated for v4 community structure and governance)
521+
**Version**: 4.1.5 (Updated for v4 community structure and governance)
522522

523523
**Review Schedule:**
524524
- **Semi-Annual Reviews**: Policy effectiveness assessment and community feedback integration

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ SuperClaude Framework transforms Claude Code into a structured development platf
2727
**Good Bug Report Example:**
2828
```
2929
**Environment:**
30-
- SuperClaude: 4.1.4
30+
- SuperClaude: 4.1.5
3131
- OS: Ubuntu 22.04
3232
- Claude Code: 1.5.2
3333
- Python: 3.9.7

Docs/Getting-Started/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
### **Transform Claude Code with 21 Commands, 14 Agents & 6 MCP Servers**
66

77
<p align="center">
8-
<img src="https://img.shields.io/badge/version-4.1.4-blue?style=for-the-badge" alt="Version">
8+
<img src="https://img.shields.io/badge/version-4.1.5-blue?style=for-the-badge" alt="Version">
99
<img src="https://img.shields.io/badge/Python-3.8+-green?style=for-the-badge" alt="Python">
1010
<img src="https://img.shields.io/badge/Platform-Linux%20|%20macOS%20|%20Windows-orange?style=for-the-badge" alt="Platform">
1111
</p>
@@ -266,7 +266,7 @@ SuperClaude install --dry-run
266266
```bash
267267
# Verify SuperClaude version
268268
python3 -m SuperClaude --version
269-
# Expected: SuperClaude 4.1.4
269+
# Expected: SuperClaude 4.1.5
270270

271271
# List installed components
272272
SuperClaude install --list-components

Docs/Getting-Started/quick-start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<p align="center">
88
<img src="https://img.shields.io/badge/Framework-Context_Engineering-purple?style=for-the-badge" alt="Framework">
9-
<img src="https://img.shields.io/badge/Version-4.1.4-blue?style=for-the-badge" alt="Version">
9+
<img src="https://img.shields.io/badge/Version-4.1.5-blue?style=for-the-badge" alt="Version">
1010
<img src="https://img.shields.io/badge/Time_to_Start-5_Minutes-green?style=for-the-badge" alt="Quick Start">
1111
</p>
1212

@@ -486,7 +486,7 @@ Create custom workflows
486486
</p>
487487

488488
<p align="center">
489-
<sub>SuperClaude v4.1.4 - Context Engineering for Claude Code</sub>
489+
<sub>SuperClaude v4.1.5 - Context Engineering for Claude Code</sub>
490490
</p>
491491

492492
</div>

Docs/Reference/common-issues.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Test: /sc:brainstorm "test" should ask questions
1313

1414
### 2. Installation Verification
1515
```bash
16-
python3 -m SuperClaude --version # Should show 4.1.4
16+
python3 -m SuperClaude --version # Should show 4.1.5
1717

1818
# If not working:
1919
# For pipx users
@@ -71,7 +71,7 @@ pip3 install SuperClaude
7171
```
7272

7373
## Verification Checklist
74-
- [ ] `python3 -m SuperClaude --version` returns 4.1.4
74+
- [ ] `python3 -m SuperClaude --version` returns 4.1.5
7575
- [ ] `/sc:brainstorm "test"` works in Claude Code
7676
- [ ] `SuperClaude install --list-components` shows components
7777

Docs/Reference/troubleshooting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Quick fixes to advanced diagnostics for SuperClaude Framework issues.
66

77
**Installation Verification:**
88
```bash
9-
python3 -m SuperClaude --version # Should show 4.1.4
9+
python3 -m SuperClaude --version # Should show 4.1.5
1010
SuperClaude install --list-components
1111
```
1212

@@ -19,7 +19,7 @@ SuperClaude install --list-components
1919
```
2020

2121
**Resolution Checklist:**
22-
- [ ] Version commands work and show 4.1.4
22+
- [ ] Version commands work and show 4.1.5
2323
- [ ] `/sc:` commands respond in Claude Code
2424
- [ ] MCP servers listed: `SuperClaude install --list-components | grep mcp`
2525

Docs/User-Guide-jp/commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ SuperClaude は、Claude Code が特殊な動作を実行するために読み
9292
```shell
9393
# Verify SuperClaude is working (primary method)
9494
python3 -m SuperClaude --version
95-
# Example output: SuperClaude 4.1.4
95+
# Example output: SuperClaude 4.1.5
9696

9797
# Claude Code CLI version check
9898
claude --version

Docs/User-Guide-zh/commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ SuperClaude 提供行为上下文文件,Claude Code 通过读取这些文件
6767
```bash
6868
# 验证 SuperClaude 是否正常工作(主要方法)
6969
python3 -m SuperClaude --version
70-
# 示例输出:SuperClaude 4.1.4
70+
# 示例输出:SuperClaude 4.1.5
7171

7272
# Claude Code CLI 版本检查
7373
claude --version

Docs/User-Guide/commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ SuperClaude provides behavioral context files that Claude Code reads to adopt sp
6767
```bash
6868
# Verify SuperClaude is working (primary method)
6969
python3 -m SuperClaude --version
70-
# Example output: SuperClaude 4.1.4
70+
# Example output: SuperClaude 4.1.5
7171

7272
# Claude Code CLI version check
7373
claude --version

0 commit comments

Comments
 (0)