2025-08-14 22:03:34 +02:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "SuperClaude"
|
Fix component validation and bump version to 4.0.6 (#292)
* ✨ Enhance documentation with advanced markdown formatting
Major improvements to documentation presentation and usability:
README.md:
- Added centered hero section with framework statistics dashboard
- Created visual support section with donation cards
- Enhanced What's New section with feature grid layout
- Reorganized documentation links into categorized table
- Added professional badges and visual separators
installation.md:
- Centered title with platform badges and quick navigation
- Consolidated 4 installation methods into unified table
- Created visual requirement cards (Required vs Optional)
- Added collapsible troubleshooting sections
- Removed 3 duplicate "What's Next" sections
- Enhanced learning journey with progression tables
quick-start.md:
- Added visual framework architecture flow diagram
- Created component statistics dashboard (21|14|6|6)
- Built comparison table for SuperClaude vs Standard Claude
- Added 4-week learning timeline with milestones
- Enhanced workflow patterns with step-by-step tables
- Created key insights cards explaining framework philosophy
All documents now feature consistent styling with centered titles,
organized tables, emojis for visual scanning, and improved navigation.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* 🔥 Remove outdated publishing and release instruction files
Cleaned up repository by removing:
- PUBLISHING.md: Outdated publishing guidelines
- RELEASE_INSTRUCTIONS.md: Old release process documentation
These files are no longer needed as the project has evolved
and the processes have been streamlined or moved elsewhere.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* 🐛 Fix component validation to check metadata file instead of settings.json
Resolves #291 - Validation errors after V4 upgrade
## Changes
- Fixed validation logic to check .superclaude-metadata.json instead of settings.json
- Standardized all component versions to 4.0.4 across the framework
- Fixed agent validation to check for correct filenames (architect vs specialist/engineer)
- Cleaned up metadata file structure for consistency
## Technical Details
The issue was caused by components registering in .superclaude-metadata.json but
validation checking settings.json for component registration. This mismatch caused
false validation errors even though components were properly installed.
## Testing
All components now validate successfully with the corrected logic.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* 🔖 Bump version to 4.0.6 across entire project
## Summary
Comprehensive version update from 4.0.4 to 4.0.6 with validation fixes
## Changes
- Updated VERSION file, pyproject.toml, and package.json
- Updated all Python __version__ declarations (8 occurrences)
- Updated all component metadata versions (6 components, 25+ occurrences)
- Updated documentation and README version badges (11 files)
- Fixed package.json inconsistency (was 4.0.5)
- Updated legacy backup.py version reference (was 3.0.0)
- Added CHANGELOG entry for version 4.0.6
## Files Modified (26 total)
- Core: VERSION, pyproject.toml, package.json
- Python: SuperClaude/__init__.py, __main__.py, setup/__init__.py, cli/base.py
- Components: core.py, commands.py, agents.py, mcp.py, mcp_docs.py, modes.py
- Docs: README.md, CONTRIBUTING.md, SECURITY.md, installation.md, quick-start.md
- Config: features.json, backup.py, update.py
- User: ~/.claude/.superclaude-metadata.json
## Verification
All version references now consistently show 4.0.6
Historical references in CHANGELOG preserved as intended
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* 📝 Update README.md installation instructions
---------
Signed-off-by: NomenAK <39598727+NomenAK@users.noreply.github.com>
Co-authored-by: Claude <noreply@anthropic.com>
2025-08-23 12:08:09 +02:00
|
|
|
version = "4.0.6"
|
2025-08-14 22:03:34 +02:00
|
|
|
authors = [
|
2025-08-15 21:30:29 +02:00
|
|
|
{name = "NomenAK", email = "anton.knoery@gmail.com"},
|
2025-08-16 08:07:04 +05:30
|
|
|
{name = "Mithun Gowda B", email = "mithungowda.b7411@gmail.com"}
|
2025-08-14 22:03:34 +02:00
|
|
|
]
|
2025-08-15 15:15:51 +02:00
|
|
|
description = "SuperClaude Framework Management Hub - AI-enhanced development framework for Claude Code"
|
2025-08-14 22:03:34 +02:00
|
|
|
readme = "README.md"
|
2025-08-22 20:39:46 +02:00
|
|
|
license = "MIT"
|
2025-08-14 22:03:34 +02:00
|
|
|
requires-python = ">=3.8"
|
|
|
|
|
classifiers = [
|
2025-08-15 15:15:51 +02:00
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
|
"Intended Audience :: Developers",
|
2025-08-22 21:00:56 +02:00
|
|
|
"Operating System :: OS Independent",
|
2025-08-14 22:03:34 +02:00
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
|
"Programming Language :: Python :: 3.12",
|
2025-08-15 15:15:51 +02:00
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
|
"Topic :: Software Development :: Code Generators",
|
|
|
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
|
|
|
"Environment :: Console",
|
2025-08-14 22:03:34 +02:00
|
|
|
]
|
2025-08-15 15:15:51 +02:00
|
|
|
keywords = ["claude", "ai", "automation", "framework", "mcp", "agents", "development", "code-generation", "assistant"]
|
2025-08-14 22:03:34 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"setuptools>=45.0.0",
|
|
|
|
|
"importlib-metadata>=1.0.0; python_version<'3.8'"
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
|
Homepage = "https://github.com/SuperClaude-Org/SuperClaude_Framework"
|
|
|
|
|
GitHub = "https://github.com/SuperClaude-Org/SuperClaude_Framework"
|
|
|
|
|
"Bug Tracker" = "https://github.com/SuperClaude-Org/SuperClaude_Framework/issues"
|
|
|
|
|
"Mithun Gowda B" = "https://github.com/mithun50"
|
|
|
|
|
"NomenAK" = "https://github.com/NomenAK"
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
SuperClaude = "SuperClaude.__main__:main"
|
|
|
|
|
superclaude = "SuperClaude.__main__:main"
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest>=6.0",
|
|
|
|
|
"pytest-cov>=2.0",
|
|
|
|
|
"black>=22.0",
|
|
|
|
|
"flake8>=4.0",
|
|
|
|
|
"mypy>=0.900"
|
|
|
|
|
]
|
|
|
|
|
test = [
|
|
|
|
|
"pytest>=6.0",
|
|
|
|
|
"pytest-cov>=2.0"
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
|
include-package-data = true
|
|
|
|
|
|
2025-08-15 15:15:51 +02:00
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
|
where = ["."]
|
|
|
|
|
include = ["SuperClaude*", "setup*"]
|
|
|
|
|
exclude = ["tests*", "*.tests*", "*.tests", ".git*", ".venv*", "*.egg-info*"]
|
|
|
|
|
|
2025-08-14 22:03:34 +02:00
|
|
|
[tool.setuptools.package-data]
|
2025-08-15 15:15:51 +02:00
|
|
|
"setup" = ["data/*.json", "data/*.yaml", "data/*.yml", "components/*.py", "**/*.py"]
|
|
|
|
|
"SuperClaude" = ["*.md", "*.txt", "**/*.md", "**/*.txt", "**/*.json", "**/*.yaml", "**/*.yml"]
|
2025-08-14 22:03:34 +02:00
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
|
line-length = 88
|
|
|
|
|
target-version = ["py38", "py39", "py310", "py311", "py312"]
|
|
|
|
|
include = '\.pyi?$'
|
|
|
|
|
extend-exclude = '''
|
|
|
|
|
/(
|
|
|
|
|
# directories
|
|
|
|
|
\.eggs
|
|
|
|
|
| \.git
|
|
|
|
|
| \.hg
|
|
|
|
|
| \.mypy_cache
|
|
|
|
|
| \.tox
|
|
|
|
|
| \.venv
|
|
|
|
|
| build
|
|
|
|
|
| dist
|
|
|
|
|
)/
|
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
|
python_version = "3.8"
|
|
|
|
|
warn_return_any = true
|
|
|
|
|
warn_unused_configs = true
|
|
|
|
|
disallow_untyped_defs = true
|
|
|
|
|
disallow_incomplete_defs = true
|
|
|
|
|
check_untyped_defs = true
|
|
|
|
|
disallow_untyped_decorators = true
|
|
|
|
|
no_implicit_optional = true
|
|
|
|
|
warn_redundant_casts = true
|
|
|
|
|
warn_unused_ignores = true
|
|
|
|
|
warn_no_return = true
|
|
|
|
|
warn_unreachable = true
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
python_files = ["test_*.py", "*_test.py"]
|
|
|
|
|
python_classes = ["Test*"]
|
|
|
|
|
python_functions = ["test_*"]
|
|
|
|
|
addopts = "-v --tb=short --strict-markers"
|
|
|
|
|
markers = [
|
|
|
|
|
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
|
|
|
|
|
"integration: marks tests as integration tests"
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
|
source = ["SuperClaude", "setup"]
|
|
|
|
|
omit = [
|
|
|
|
|
"*/tests/*",
|
|
|
|
|
"*/test_*",
|
|
|
|
|
"*/__pycache__/*",
|
|
|
|
|
"*/.*"
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.coverage.report]
|
|
|
|
|
exclude_lines = [
|
|
|
|
|
"pragma: no cover",
|
|
|
|
|
"def __repr__",
|
|
|
|
|
"if self.debug:",
|
|
|
|
|
"if settings.DEBUG",
|
|
|
|
|
"raise AssertionError",
|
|
|
|
|
"raise NotImplementedError",
|
|
|
|
|
"if 0:",
|
|
|
|
|
"if __name__ == .__main__.:"
|
|
|
|
|
]
|
2025-08-16 08:07:04 +05:30
|
|
|
show_missing = true
|