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

@@ -430,10 +430,10 @@ async def send_feedback_to_rl_curator(
"bzzz_type": "feedback_event",
"timestamp": datetime.utcnow().isoformat(),
"origin": {
"node_id": "hive",
"node_id": "whoosh",
"agent_id": agent_id,
"task_id": f"hive-feedback-{feedback_id}",
"workspace": "hive://context-feedback",
"task_id": f"whoosh-feedback-{feedback_id}",
"workspace": "whoosh://context-feedback",
"directory": "/feedback/"
},
"feedback": {
@@ -441,9 +441,9 @@ async def send_feedback_to_rl_curator(
"category": "general", # Could be enhanced with category detection
"role": role,
"context_id": context_id,
"reason": f"Feedback from Hive agent {agent_id}",
"reason": f"Feedback from WHOOSH agent {agent_id}",
"confidence": confidence,
"usage_context": "hive_platform"
"usage_context": "whoosh_platform"
},
"task_outcome": {
"completed": feedback_type in ["upvote", "task_success"],