mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-17 09:46:06 +00:00
Major improvements to SuperClaude Framework infrastructure and testing: ## New Features - Add 'superclaude install' command to install slash commands (/research, /index-repo, /agent, /recommend) - Create comprehensive test suite with 71 tests (70 passing, 1 skipped) - Add GitHub Actions CI/CD workflows for automated testing - Add essential documentation files (PLANNING.md, TASK.md, KNOWLEDGE.md) ## Testing - tests/unit/: 59 tests covering PM Agent components - test_confidence.py: 13 tests for ConfidenceChecker - test_self_check.py: 14 tests for SelfCheckProtocol - test_reflexion.py: 9 tests for ReflexionPattern - test_token_budget.py: 12 tests for TokenBudgetManager - test_cli_install.py: 12 tests for install command (NEW) - tests/integration/: 11 tests for pytest plugin integration - tests/conftest.py: Shared fixtures for all tests ## CI/CD Workflows - .github/workflows/test.yml: Comprehensive test matrix - Tests on Python 3.10, 3.11, 3.12 - Lint and format checks with ruff - Pytest plugin verification - SuperClaude doctor health checks - Coverage reporting with Codecov - .github/workflows/quick-check.yml: Fast PR validation (~2-3 min) - .github/workflows/README.md: Workflow documentation ## Documentation - PLANNING.md: Architecture, design principles, absolute rules - TASK.md: Current tasks, priorities, backlog - KNOWLEDGE.md: Accumulated insights, best practices, troubleshooting ## Bug Fixes - Fix .gitignore contradictions (remove conflicting Claude Code patterns) - Fix TokenBudgetManager to properly validate and default invalid complexity - Update package.json version to 4.1.6 (sync with VERSION file) ## CLI Improvements - src/superclaude/cli/install_commands.py: Command installation logic - src/superclaude/cli/main.py: Add 'install' command with --list and --force options - README.md: Update installation instructions with correct commands ## Breaking Changes None - all changes are backwards compatible ## Migration Guide Users should run 'superclaude install' after upgrading to install slash commands Fixes #466 (indirectly by clarifying installation process) Refs #419 (plugin system - documentation updated) 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
202 lines
2.1 KiB
Plaintext
202 lines
2.1 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# PyPI Publishing
|
|
*.whl
|
|
*.tar.gz
|
|
twine.log
|
|
.twine/
|
|
|
|
# PyInstaller
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
.venv/
|
|
|
|
# IDEs and editors
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# OS specific
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Node.js (if any frontend components)
|
|
node_modules/
|
|
npm-debug.log
|
|
yarn-error.log
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# pyenv
|
|
.python-version
|
|
|
|
# pipenv
|
|
Pipfile.lock
|
|
|
|
# Poetry
|
|
poetry.lock
|
|
|
|
# Claude Code - only ignore user-specific files
|
|
.claude/history/
|
|
.claude/cache/
|
|
.claude/*.lock
|
|
|
|
# SuperClaude specific
|
|
.serena/
|
|
.superclaude/
|
|
*.backup
|
|
*.bak
|
|
|
|
# Project specific
|
|
Tests/
|
|
temp/
|
|
tmp/
|
|
.cache/
|
|
|
|
# Build artifacts
|
|
*.tar.gz
|
|
*.zip
|
|
*.dmg
|
|
*.pkg
|
|
*.deb
|
|
*.rpm
|
|
|
|
# Documentation builds
|
|
docs/_build/
|
|
site/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.temp/
|
|
|
|
# Security & API Keys
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.pypirc
|
|
secrets/
|
|
private/
|
|
*.key
|
|
*.pem
|
|
*.p12
|
|
*.pfx
|
|
|
|
# PyPI & Package Management
|
|
uv.lock
|
|
Pipfile.lock
|
|
poetry.lock
|
|
requirements-dev.txt
|
|
requirements-test.txt
|
|
|
|
# Development Tools
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.black/
|
|
.isort.cfg
|
|
.flake8
|
|
pyrightconfig.json
|
|
.pylintrc
|
|
|
|
# Publishing & Release
|
|
PYPI_SETUP_COMPLETE.md
|
|
release-notes/
|
|
changelog-temp/
|
|
|
|
# Build artifacts (additional)
|
|
*.deb
|
|
*.rpm
|
|
*.dmg
|
|
*.pkg
|
|
*.msi
|
|
*.exe
|
|
|
|
# IDE & Editor specific
|
|
.vscode/settings.json
|
|
.vscode/launch.json
|
|
.idea/workspace.xml
|
|
.idea/tasks.xml
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# System & OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
Desktop.ini
|
|
$RECYCLE.BIN/
|
|
|
|
# Personal files
|
|
CRUSH.md
|
|
TODO.txt
|
|
|
|
# Development artifacts (should not be in repo)
|
|
package-lock.json
|
|
uv.lock
|