mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
Updated all root documentation to reflect V4 Beta capabilities: Root Documentation: - VERSION: Updated to 4.0.0-beta.1 - README.md: Complete rewrite with V4 features (21 commands, 13 agents, 6 MCP servers) - ARCHITECTURE_OVERVIEW.md: Updated for V4 Beta with correct counts and new features - CHANGELOG.md: Added comprehensive V4.0.0-beta.1 release section - ROADMAP.md: Added V4 Beta current status and updated future vision - CONTRIBUTING.md: Updated architecture, testing, and contribution guidelines - SECURITY.md: Added V4 security features and version support table - MANIFEST.in: Updated to include new V4 directories - pyproject.toml: Updated URLs and description for V4 Beta User Documentation: - commands-guide.md: Updated to 21 commands with new V4 commands - superclaude-user-guide.md: Comprehensive V4 Beta features documentation - flags-guide.md: Updated with new V4 flags and agent system - installation-guide.md: V4 Beta installation including hooks system - agents-guide.md: NEW - Complete guide for 13 specialized agents - personas-guide.md: Renamed to personas-guide-v3-legacy.md Key V4 Beta Features Documented: - 21 specialized commands (added: brainstorm, reflect, save, select-tool) - 13 domain expert agents replacing persona system - 6 MCP servers (added Morphllm and Serena) - 4 Behavioral Modes (Brainstorming, Introspection, Task Management, Token Efficiency) - Session Lifecycle with cross-session persistence - Redesigned Hooks System with Python integration - SuperClaude-Lite minimal implementation - Comprehensive Templates system All documentation maintains friendly, accessible tone while accurately reflecting V4 Beta's advanced capabilities. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
63 lines
1.8 KiB
TOML
63 lines
1.8 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "SuperClaude"
|
|
dynamic = ["version"]
|
|
description = "SuperClaude V4 Beta - Advanced orchestration framework for Claude Code with 21 commands, 13 agents, and 6 MCP servers"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "Mithun Gowda B", email = "contact@superclaude.dev"},
|
|
{name = "NomenAK", email = "contact@superclaude.dev"},
|
|
]
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"setuptools>=45.0.0",
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"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",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/SuperClaude-Org/SuperClaude_Framework"
|
|
Repository = "https://github.com/SuperClaude-Org/SuperClaude_Framework"
|
|
"Bug Tracker" = "https://github.com/SuperClaude-Org/SuperClaude_Framework/issues"
|
|
"GitHub" = "https://github.com/SuperClaude-Org/SuperClaude_Framework"
|
|
"Mithun Gowda B" = "https://github.com/mithun50"
|
|
"NomenAK" = "https://github.com/NomenAK"
|
|
"Anton Nesterov" = "https://github.com/anton-nesterov"
|
|
|
|
[project.scripts]
|
|
SuperClaude = "SuperClaude.__main__:main"
|
|
|
|
[tool.hatch.version]
|
|
path = "VERSION"
|
|
pattern = "(?P<version>.*)"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["SuperClaude"]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = [
|
|
"SuperClaude/",
|
|
"config/",
|
|
"profiles/",
|
|
"setup/",
|
|
"VERSION",
|
|
"README.md",
|
|
"LICENSE",
|
|
"MANIFEST.in",
|
|
]
|
|
|