chore: bump version to 4.1.8

Updated version across all documentation files:
- pyproject.toml (main version)
- README files (en, ja, kr, zh)
- CLAUDE.md
- KNOWLEDGE.md
- PLANNING.md

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
mithun50
2025-11-13 12:36:38 +01:00
parent 25785363af
commit 61591211ae
8 changed files with 21 additions and 21 deletions

View File

@@ -18,13 +18,13 @@ uv run python script.py # Execute scripts
## 📂 Project Structure ## 📂 Project Structure
> **⚠️ IMPORTANT**: The `.claude-plugin/` directory and TypeScript plugin system described in older docs **DO NOT EXIST** in v4.1.7. > **⚠️ IMPORTANT**: The `.claude-plugin/` directory and TypeScript plugin system described in older docs **DO NOT EXIST** in v4.1.8.
> This is planned for v5.0 (see [issue #419](https://github.com/SuperClaude-Org/SuperClaude_Framework/issues/419)). > This is planned for v5.0 (see [issue #419](https://github.com/SuperClaude-Org/SuperClaude_Framework/issues/419)).
**Current v4.1.7 Architecture**: Python package with slash commands **Current v4.1.8 Architecture**: Python package with slash commands
``` ```
# Claude Code Configuration (v4.1.7) # Claude Code Configuration (v4.1.8)
.claude/ .claude/
├── settings.json # User settings ├── settings.json # User settings
└── commands/ # Slash commands (installed via `superclaude install`) └── commands/ # Slash commands (installed via `superclaude install`)
@@ -122,10 +122,10 @@ Registered via `pyproject.toml` entry point, automatically available after insta
### TypeScript Plugins (Planned for v5.0) ### TypeScript Plugins (Planned for v5.0)
> **⚠️ NOT IMPLEMENTED**: The TypeScript plugin system described below does not exist in v4.1.7. > **⚠️ NOT IMPLEMENTED**: The TypeScript plugin system described below does not exist in v4.1.8.
> This is planned for v5.0. See [issue #419](https://github.com/SuperClaude-Org/SuperClaude_Framework/issues/419) and `docs/plugin-reorg.md`. > This is planned for v5.0. See [issue #419](https://github.com/SuperClaude-Org/SuperClaude_Framework/issues/419) and `docs/plugin-reorg.md`.
**Current v4.1.7 Commands** (slash commands, not plugins): **Current v4.1.8 Commands** (slash commands, not plugins):
- Install via: `pipx install superclaude && superclaude install` - Install via: `pipx install superclaude && superclaude install`
- Commands installed to: `~/.claude/commands/` - Commands installed to: `~/.claude/commands/`
- Available commands: `/pm`, `/research`, `/index-repo` (and others) - Available commands: `/pm`, `/research`, `/index-repo` (and others)
@@ -248,7 +248,7 @@ Integrates with multiple MCP servers via **airis-mcp-gateway**.
## 🚀 Development & Installation ## 🚀 Development & Installation
### Current Installation Method (v4.1.7) ### Current Installation Method (v4.1.8)
**Standard Installation**: **Standard Installation**:
```bash ```bash
@@ -276,7 +276,7 @@ make verify
### Plugin System (Planned for v5.0 - NOT AVAILABLE) ### Plugin System (Planned for v5.0 - NOT AVAILABLE)
> **⚠️ IMPORTANT**: The plugin system described in older documentation **does not exist** in v4.1.7. > **⚠️ IMPORTANT**: The plugin system described in older documentation **does not exist** in v4.1.8.
> These features are planned for v5.0 (see [issue #419](https://github.com/SuperClaude-Org/SuperClaude_Framework/issues/419)). > These features are planned for v5.0 (see [issue #419](https://github.com/SuperClaude-Org/SuperClaude_Framework/issues/419)).
**What Does NOT Work** (yet): **What Does NOT Work** (yet):

View File

@@ -153,12 +153,12 @@ cat test_output.txt
### **Pitfall 4: Version Inconsistency** ### **Pitfall 4: Version Inconsistency**
**Problem**: VERSION file says 4.1.7, but package.json says 4.1.5, pyproject.toml says 0.4.0. **Problem**: VERSION file says 4.1.8, but package.json says 4.1.5, pyproject.toml says 0.4.0.
**Solution**: Understand versioning strategy: **Solution**: Understand versioning strategy:
- **Framework version** (VERSION file): User-facing version (4.1.7) - **Framework version** (VERSION file): User-facing version (4.1.8)
- **Python package** (pyproject.toml): Library semantic version (0.4.0) - **Python package** (pyproject.toml): Library semantic version (0.4.0)
- **NPM package** (package.json): Should match framework version (4.1.7) - **NPM package** (package.json): Should match framework version (4.1.8)
**When updating versions**: **When updating versions**:
1. Update VERSION file first 1. Update VERSION file first
@@ -523,7 +523,7 @@ Based on real usage data:
### **Lesson 1: Documentation Drift is Real** ### **Lesson 1: Documentation Drift is Real**
**What happened**: README described v2.0 plugin system that didn't exist in v4.1.7 **What happened**: README described v2.0 plugin system that didn't exist in v4.1.8
**Impact**: Users spent hours trying to install non-existent features **Impact**: Users spent hours trying to install non-existent features

View File

@@ -23,7 +23,7 @@ SuperClaude Framework transforms Claude Code into a structured development platf
## 🏗️ **Architecture Overview** ## 🏗️ **Architecture Overview**
### **Current State (v4.1.7)** ### **Current State (v4.1.8)**
SuperClaude is a **Python package** with: SuperClaude is a **Python package** with:
- Pytest plugin (auto-loaded via entry points) - Pytest plugin (auto-loaded via entry points)
@@ -33,7 +33,7 @@ SuperClaude is a **Python package** with:
- Optional slash commands (installed to ~/.claude/commands/) - Optional slash commands (installed to ~/.claude/commands/)
``` ```
SuperClaude Framework v4.1.7 SuperClaude Framework v4.1.8
├── Core Package (src/superclaude/) ├── Core Package (src/superclaude/)
│ ├── pytest_plugin.py # Auto-loaded by pytest │ ├── pytest_plugin.py # Auto-loaded by pytest
@@ -237,7 +237,7 @@ Use SelfCheckProtocol to prevent hallucinations:
### **Version Management** ### **Version Management**
1. **Version sources of truth**: 1. **Version sources of truth**:
- Framework version: `VERSION` file (e.g., 4.1.7) - Framework version: `VERSION` file (e.g., 4.1.8)
- Python package version: `pyproject.toml` (e.g., 0.4.0) - Python package version: `pyproject.toml` (e.g., 0.4.0)
- NPM package version: `package.json` (should match VERSION) - NPM package version: `package.json` (should match VERSION)
@@ -338,7 +338,7 @@ Before releasing a new version:
## 🚀 **Roadmap** ## 🚀 **Roadmap**
### **v4.1.7 (Current)** ### **v4.1.8 (Current)**
- ✅ Python package with pytest plugin - ✅ Python package with pytest plugin
- ✅ PM Agent patterns (confidence, self-check, reflexion) - ✅ PM Agent patterns (confidence, self-check, reflexion)
- ✅ Parallel execution framework - ✅ Parallel execution framework

View File

@@ -5,7 +5,7 @@
### **Claude Codeを構造化開発プラットフォームに変換** ### **Claude Codeを構造化開発プラットフォームに変換**
<p align="center"> <p align="center">
<img src="https://img.shields.io/badge/version-4.1.7-blue" alt="Version"> <img src="https://img.shields.io/badge/version-4.1.8-blue" alt="Version">
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License"> <img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License">
<img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome"> <img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome">
</p> </p>

View File

@@ -5,7 +5,7 @@
### **Claude Code를 구조화된 개발 플랫폼으로 변환** ### **Claude Code를 구조화된 개발 플랫폼으로 변환**
<p align="center"> <p align="center">
<img src="https://img.shields.io/badge/version-4.1.7-blue" alt="Version"> <img src="https://img.shields.io/badge/version-4.1.8-blue" alt="Version">
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License"> <img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License">
<img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome"> <img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome">
</p> </p>

View File

@@ -5,7 +5,7 @@
### **将Claude Code转换为结构化开发平台** ### **将Claude Code转换为结构化开发平台**
<p align="center"> <p align="center">
<img src="https://img.shields.io/badge/version-4.1.7-blue" alt="Version"> <img src="https://img.shields.io/badge/version-4.1.8-blue" alt="Version">
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License"> <img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License">
<img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome"> <img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome">
</p> </p>

View File

@@ -14,7 +14,7 @@
<a href="https://github.com/SuperClaude-Org/SuperQwen_Framework" target="_blank"> <a href="https://github.com/SuperClaude-Org/SuperQwen_Framework" target="_blank">
<img src="https://img.shields.io/badge/Try-SuperQwen_Framework-orange" alt="Try SuperQwen Framework"/> <img src="https://img.shields.io/badge/Try-SuperQwen_Framework-orange" alt="Try SuperQwen Framework"/>
</a> </a>
<img src="https://img.shields.io/badge/version-4.1.7-blue" alt="Version"> <img src="https://img.shields.io/badge/version-4.1.8-blue" alt="Version">
<a href="https://github.com/SuperClaude-Org/SuperClaude_Framework/actions/workflows/test.yml"> <a href="https://github.com/SuperClaude-Org/SuperClaude_Framework/actions/workflows/test.yml">
<img src="https://github.com/SuperClaude-Org/SuperClaude_Framework/actions/workflows/test.yml/badge.svg" alt="Tests"> <img src="https://github.com/SuperClaude-Org/SuperClaude_Framework/actions/workflows/test.yml/badge.svg" alt="Tests">
</a> </a>
@@ -107,7 +107,7 @@ Claude Code is a product built and maintained by [Anthropic](https://www.anthrop
> not yet available (planned for v5.0). For current installation > not yet available (planned for v5.0). For current installation
> instructions, please follow the steps below for v4.x. > instructions, please follow the steps below for v4.x.
### **Current Stable Version (v4.1.7)** ### **Current Stable Version (v4.1.8)**
SuperClaude currently uses slash commands. SuperClaude currently uses slash commands.

View File

@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "superclaude" name = "superclaude"
version = "4.1.7" version = "4.1.8"
description = "AI-enhanced development framework for Claude Code - pytest plugin with optional skills" description = "AI-enhanced development framework for Claude Code - pytest plugin with optional skills"
readme = "README.md" readme = "README.md"
license = {text = "MIT"} license = {text = "MIT"}