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

@@ -99,7 +99,7 @@ async def get_bzzz_project_tasks(project_id: str) -> List[Dict[str, Any]]:
@bzzz_router.post("/projects/{project_id}/claim")
async def claim_bzzz_task(project_id: str, task_data: Dict[str, Any]) -> Dict[str, Any]:
"""Register task claim with Hive system."""
"""Register task claim with WHOOSH system."""
try:
task_number = task_data.get("task_number")
agent_id = task_data.get("agent_id")
@@ -114,7 +114,7 @@ async def claim_bzzz_task(project_id: str, task_data: Dict[str, Any]) -> Dict[st
@bzzz_router.put("/projects/{project_id}/status")
async def update_bzzz_task_status(project_id: str, status_data: Dict[str, Any]) -> Dict[str, Any]:
"""Update task status in Hive system."""
"""Update task status in WHOOSH system."""
try:
task_number = status_data.get("task_number")
status = status_data.get("status")