chore: bump version to 4.1.9 and add __init__.py to all packages

- Bump version from 4.1.8 to 4.1.9 in all relevant files
- Add __init__.py to all directories in src/superclaude/ and plugins/superclaude/
- Update pyproject.toml to include plugins/superclaude package
- Update MANIFEST.in to include plugin resources
- Ensure proper Python package structure with 27 __init__.py files

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
mithun50 2025-11-14 14:15:44 +01:00
parent 18c0e4e127
commit fd8c67f6f0
30 changed files with 47 additions and 29 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.8. > **⚠️ IMPORTANT**: The `.claude-plugin/` directory and TypeScript plugin system described in older docs **DO NOT EXIST** in v4.1.9.
> 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.8 Architecture**: Python package with slash commands **Current v4.1.9 Architecture**: Python package with slash commands
``` ```
# Claude Code Configuration (v4.1.8) # Claude Code Configuration (v4.1.9)
.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.8. > **⚠️ NOT IMPLEMENTED**: The TypeScript plugin system described below does not exist in v4.1.9.
> 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.8 Commands** (slash commands, not plugins): **Current v4.1.9 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.8) ### Current Installation Method (v4.1.9)
**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.8. > **⚠️ IMPORTANT**: The plugin system described in older documentation **does not exist** in v4.1.9.
> 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.8, but package.json says 4.1.5, pyproject.toml says 0.4.0. **Problem**: VERSION file says 4.1.9, 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.8) - **Framework version** (VERSION file): User-facing version (4.1.9)
- **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.8) - **NPM package** (package.json): Should match framework version (4.1.9)
**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.8 **What happened**: README described v2.0 plugin system that didn't exist in v4.1.9
**Impact**: Users spent hours trying to install non-existent features **Impact**: Users spent hours trying to install non-existent features

View File

@ -17,6 +17,17 @@ recursive-include src/superclaude/examples *.md
recursive-include src/superclaude/hooks *.json recursive-include src/superclaude/hooks *.json
recursive-include src/superclaude/scripts *.py *.sh recursive-include src/superclaude/scripts *.py *.sh
recursive-include src/superclaude/skills *.md *.ts *.json recursive-include src/superclaude/skills *.md *.ts *.json
recursive-include plugins/superclaude *.py *.md *.ts *.json *.sh
recursive-include plugins/superclaude/commands *.md
recursive-include plugins/superclaude/agents *.md
recursive-include plugins/superclaude/modes *.md
recursive-include plugins/superclaude/mcp *.py *.md *.json
recursive-include plugins/superclaude/mcp/configs *.json
recursive-include plugins/superclaude/core *.md
recursive-include plugins/superclaude/examples *.md
recursive-include plugins/superclaude/hooks *.json
recursive-include plugins/superclaude/scripts *.py *.sh
recursive-include plugins/superclaude/skills *.py *.md *.ts *.json
global-exclude __pycache__ global-exclude __pycache__
global-exclude *.py[co] global-exclude *.py[co]
global-exclude .DS_Store global-exclude .DS_Store

View File

@ -23,7 +23,7 @@ SuperClaude Framework transforms Claude Code into a structured development platf
## 🏗️ **Architecture Overview** ## 🏗️ **Architecture Overview**
### **Current State (v4.1.8)** ### **Current State (v4.1.9)**
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.8 SuperClaude Framework v4.1.9
├── 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.8) - Framework version: `VERSION` file (e.g., 4.1.9)
- 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.8 (Current)** ### **v4.1.9 (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.8-blue" alt="Version"> <img src="https://img.shields.io/badge/version-4.1.9-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>
@ -93,7 +93,7 @@ Claude Codeは[Anthropic](https://www.anthropic.com/)によって構築および
> まだ利用できませんv5.0で予定。v4.xの現在のインストール > まだ利用できませんv5.0で予定。v4.xの現在のインストール
> 手順については、以下の手順に従ってください。 > 手順については、以下の手順に従ってください。
### **現在の安定バージョン (v4.1.8)** ### **現在の安定バージョン (v4.1.9)**
SuperClaudeは現在スラッシュコマンドを使用しています。 SuperClaudeは現在スラッシュコマンドを使用しています。

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.8-blue" alt="Version"> <img src="https://img.shields.io/badge/version-4.1.9-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>
@ -96,7 +96,7 @@ Claude Code는 [Anthropic](https://www.anthropic.com/)에 의해 구축 및 유
> 아직 사용할 수 없습니다(v5.0에서 계획). v4.x의 현재 설치 > 아직 사용할 수 없습니다(v5.0에서 계획). v4.x의 현재 설치
> 지침은 아래 단계를 따르세요. > 지침은 아래 단계를 따르세요.
### **현재 안정 버전 (v4.1.8)** ### **현재 안정 버전 (v4.1.9)**
SuperClaude는 현재 슬래시 명령어를 사용합니다. SuperClaude는 현재 슬래시 명령어를 사용합니다.

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.8-blue" alt="Version"> <img src="https://img.shields.io/badge/version-4.1.9-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>
@ -93,7 +93,7 @@ Claude Code是由[Anthropic](https://www.anthropic.com/)构建和维护的产品
> 尚未可用计划在v5.0中推出。请按照以下v4.x的 > 尚未可用计划在v5.0中推出。请按照以下v4.x的
> 当前安装说明操作。 > 当前安装说明操作。
### **当前稳定版本 (v4.1.8)** ### **当前稳定版本 (v4.1.9)**
SuperClaude目前使用斜杠命令。 SuperClaude目前使用斜杠命令。

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.8-blue" alt="Version"> <img src="https://img.shields.io/badge/version-4.1.9-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.8)** ### **Current Stable Version (v4.1.9)**
SuperClaude currently uses slash commands. SuperClaude currently uses slash commands.

View File

@ -1 +1 @@
4.1.8 4.1.9

View File

@ -1,6 +1,6 @@
# SuperClaude Commands Reference # SuperClaude Commands Reference
Complete list of all 30 slash commands available in SuperClaude Framework v4.1.8+ Complete list of all 30 slash commands available in SuperClaude Framework v4.1.9+
## Command Categories ## Command Categories

View File

@ -1,6 +1,6 @@
# SuperClaude Framework - Comprehensive Feature List # SuperClaude Framework - Comprehensive Feature List
Complete inventory of all features restored in v4.1.8+ Complete inventory of all features restored in v4.1.9+
## 📋 Commands (30) ## 📋 Commands (30)

View File

View File

View File

View File

View File

View File

View File

View File

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "superclaude" name = "superclaude"
version = "4.1.8" version = "4.1.9"
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"}
@ -67,8 +67,9 @@ superclaude = "superclaude.cli.main:main"
superclaude = "superclaude.pytest_plugin" superclaude = "superclaude.pytest_plugin"
[tool.hatch.build.targets.wheel] [tool.hatch.build.targets.wheel]
packages = ["src/superclaude"] packages = ["src/superclaude", "plugins/superclaude"]
include = [ include = [
"src/superclaude/**/*.py",
"src/superclaude/skills/**/*.md", "src/superclaude/skills/**/*.md",
"src/superclaude/skills/**/*.ts", "src/superclaude/skills/**/*.ts",
"src/superclaude/skills/**/*.json", "src/superclaude/skills/**/*.json",
@ -82,11 +83,17 @@ include = [
"src/superclaude/hooks/**/*.json", "src/superclaude/hooks/**/*.json",
"src/superclaude/scripts/**/*.py", "src/superclaude/scripts/**/*.py",
"src/superclaude/scripts/**/*.sh", "src/superclaude/scripts/**/*.sh",
"plugins/superclaude/**/*.py",
"plugins/superclaude/**/*.md",
"plugins/superclaude/**/*.ts",
"plugins/superclaude/**/*.json",
"plugins/superclaude/**/*.sh",
] ]
[tool.hatch.build.targets.sdist] [tool.hatch.build.targets.sdist]
include = [ include = [
"src/", "src/",
"plugins/",
"tests/", "tests/",
"README.md", "README.md",
"LICENSE", "LICENSE",

View File

@ -5,7 +5,7 @@ AI-enhanced development framework for Claude Code.
Provides pytest plugin for enhanced testing and optional skills system. Provides pytest plugin for enhanced testing and optional skills system.
""" """
__version__ = "4.1.8" __version__ = "4.1.9"
__author__ = "NomenAK, Mithun Gowda B" __author__ = "NomenAK, Mithun Gowda B"
# Expose main components # Expose main components

View File

View File

View File

View File

View File

View File

View File