Major WHOOSH system refactoring and feature enhancements

- Migrated from HIVE branding to WHOOSH across all components
- Enhanced backend API with new services: AI models, BZZZ integration, templates, members
- Added comprehensive testing suite with security, performance, and integration tests
- Improved frontend with new components for project setup, AI models, and team management
- Updated MCP server implementation with WHOOSH-specific tools and resources
- Enhanced deployment configurations with production-ready Docker setups
- Added comprehensive documentation and setup guides
- Implemented age encryption service and UCXL integration

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
anthonyrawlins
2025-08-27 08:34:48 +10:00
parent 0e9844ef13
commit 268214d971
399 changed files with 57390 additions and 2045 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env python3
"""
Comprehensive Testing Suite for Hive Distributed Workflows
Comprehensive Testing Suite for WHOOSH Distributed Workflows
Tests all aspects of the distributed development workflow system
"""
@@ -551,7 +551,7 @@ class DistributedWorkflowTester:
def generate_detailed_report(self) -> str:
"""Generate a detailed test report"""
report = []
report.append("# Hive Distributed Workflow System - Test Report")
report.append("# WHOOSH Distributed Workflow System - Test Report")
report.append(f"Generated: {datetime.now().isoformat()}")
report.append("")
@@ -598,11 +598,11 @@ class DistributedWorkflowTester:
async def main():
"""Main test execution function"""
parser = argparse.ArgumentParser(description="Test Hive Distributed Workflow System")
parser = argparse.ArgumentParser(description="Test WHOOSH Distributed Workflow System")
parser.add_argument(
"--url",
default="http://localhost:8000",
help="Base URL for the Hive API (default: http://localhost:8000)"
help="Base URL for the WHOOSH API (default: http://localhost:8000)"
)
parser.add_argument(
"--output",