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
"""
Hive Cluster Coordination for n8n Workflow Development
WHOOSH Cluster Coordination for n8n Workflow Development
Coordinates distributed development of intelligent task allocation workflows
"""
@@ -45,7 +45,7 @@ AGENTS = {
}
}
class HiveN8NCoordinator:
class WHOOSHN8NCoordinator:
def __init__(self):
self.session = None
self.results = {}
@@ -134,7 +134,7 @@ Respond with detailed technical solutions, code examples, and implementation gui
async def coordinate_development(self):
"""Coordinate the distributed development of n8n workflows"""
print("🐝 HIVE CLUSTER N8N WORKFLOW DEVELOPMENT COORDINATION")
print("🐝 WHOOSH CLUSTER N8N WORKFLOW DEVELOPMENT COORDINATION")
print("=" * 70)
print(f"🚀 Coordinating {len(AGENTS)} specialized AI agents")
print(f"🎯 Target: Intelligent task allocation workflows for 25-person software company")
@@ -276,7 +276,7 @@ Respond with detailed technical solutions, code examples, and implementation gui
# Save detailed results
timestamp = int(time.time())
results_file = f"/home/tony/AI/projects/hive/results/n8n_coordination_{timestamp}.json"
results_file = f"/home/tony/AI/projects/whoosh/results/n8n_coordination_{timestamp}.json"
with open(results_file, 'w') as f:
json.dump({
@@ -313,9 +313,9 @@ async def main():
# Ensure results directory exists
import os
os.makedirs("/home/tony/AI/projects/hive/results", exist_ok=True)
os.makedirs("/home/tony/AI/projects/whoosh/results", exist_ok=True)
async with HiveN8NCoordinator() as coordinator:
async with WHOOSHN8NCoordinator() as coordinator:
await coordinator.coordinate_development()
if __name__ == "__main__":