mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
24 lines
570 B
Python
24 lines
570 B
Python
|
|
"""
|
||
|
|
SuperClaude Framework
|
||
|
|
|
||
|
|
AI-enhanced development framework for Claude Code.
|
||
|
|
Provides pytest plugin for enhanced testing and optional skills system.
|
||
|
|
"""
|
||
|
|
|
||
|
|
__version__ = "0.4.0"
|
||
|
|
__author__ = "Kazuki Nakai"
|
||
|
|
|
||
|
|
# Expose main components
|
||
|
|
from .pm_agent.confidence import ConfidenceChecker
|
||
|
|
from .pm_agent.self_check import SelfCheckProtocol
|
||
|
|
from .pm_agent.reflexion import ReflexionPattern
|
||
|
|
from .pm_agent.token_budget import TokenBudgetManager
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"ConfidenceChecker",
|
||
|
|
"SelfCheckProtocol",
|
||
|
|
"ReflexionPattern",
|
||
|
|
"TokenBudgetManager",
|
||
|
|
"__version__",
|
||
|
|
]
|