Fix hardcoded paths after workspace restructure

Update all hardcoded paths from ~/AI/projects/* to ~/chorus/project-queues/active/*
and ~/AI/secrets/* to ~/chorus/business/secrets/* after workspace reorganization.

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
anthonyrawlins
2025-08-05 11:10:58 +10:00
parent 5978a0b8f5
commit 5f94288fbb
11 changed files with 53 additions and 35 deletions

View File

@@ -91,14 +91,14 @@ This report documents the implementation and testing progress of the Bzzz P2P me
## File Locations and Key Components
### Core Implementation Files
- `/home/tony/AI/projects/Bzzz/github/integration.go` - Enhanced task filtering and P2P coordination
- `/home/tony/AI/projects/hive/backend/app/services/project_service.py` - Database-driven project service
- `/home/tony/AI/projects/hive/docker-compose.swarm.yml` - Docker secrets configuration
- `/home/tony/chorus/project-queues/active/BZZZ/github/integration.go` - Enhanced task filtering and P2P coordination
- `/home/tony/chorus/project-queues/inactive/hive/backend/app/services/project_service.py` - Database-driven project service
- `/home/tony/chorus/project-queues/inactive/hive/docker-compose.swarm.yml` - Docker secrets configuration
### Testing and Monitoring
- `/home/tony/AI/projects/Bzzz/mock-hive-server.py` - Mock API with work capture
- `/home/tony/AI/projects/Bzzz/cmd/bzzz-monitor.py` - Real-time coordination dashboard
- `/home/tony/AI/projects/Bzzz/scripts/trigger_mock_coordination.sh` - Coordination test script
- `/home/tony/chorus/project-queues/active/BZZZ/mock-hive-server.py` - Mock API with work capture
- `/home/tony/chorus/project-queues/active/BZZZ/cmd/bzzz-monitor.py` - Real-time coordination dashboard
- `/home/tony/chorus/project-queues/active/BZZZ/scripts/trigger_mock_coordination.sh` - Coordination test script
### Configuration
- `/etc/systemd/system/bzzz.service.d/mock-api.conf` - Systemd override for mock API testing

View File

@@ -1,4 +1,4 @@
# Bzzz + Antennae Development Task Backlog
# Bzzz + HMMM Development Task Backlog
Based on the UNIFIED_DEVELOPMENT_PLAN.md, here are the development tasks ready for distribution to the Hive cluster:
@@ -13,9 +13,9 @@ Based on the UNIFIED_DEVELOPMENT_PLAN.md, here are the development tasks ready f
- Use go-libp2p library for mesh networking
- Implement mDNS peer discovery for local network (192.168.1.0/24)
- Create secure encrypted P2P connections with peer identity
- Design pub/sub topics for both task coordination (Bzzz) and meta-discussion (Antennae)
- Design pub/sub topics for both task coordination (Bzzz) and meta-discussion (HMMM)
- Prepare for Docker + host networking deployment
- Create modular Go code structure in `/home/tony/AI/projects/Bzzz/`
- Create modular Go code structure in `/home/tony/chorus/project-queues/active/BZZZ/`
**Deliverables**:
- `main.go` - Entry point and peer initialization
@@ -35,7 +35,7 @@ Based on the UNIFIED_DEVELOPMENT_PLAN.md, here are the development tasks ready f
- Design append-only log streams using Hypercore Protocol
- Implement public key broadcasting for log identity
- Create log replication capabilities between peers
- Store both execution logs (Bzzz) and discussion transcripts (Antennae)
- Store both execution logs (Bzzz) and discussion transcripts (HMMM)
- Ensure tamper-proof audit trails for debugging
- Integrate with P2P capability detection module
@@ -72,7 +72,7 @@ Based on the UNIFIED_DEVELOPMENT_PLAN.md, here are the development tasks ready f
**Assigned to**: IRONWOOD (Reasoning Analysis)
**Priority**: 3 (Medium)
**Dependencies**: Task 1, Task 2
**Objective**: Implement Antennae meta-discussion layer for collaborative reasoning
**Objective**: Implement HMMM meta-discussion layer for collaborative reasoning
**Requirements**:
- Create structured messaging for agent collaboration
@@ -85,7 +85,7 @@ Based on the UNIFIED_DEVELOPMENT_PLAN.md, here are the development tasks ready f
**Assigned to**: WALNUT (Advanced Coding)
**Priority**: 2 (Normal)
**Dependencies**: All previous tasks
**Objective**: Integrate all components and create working Bzzz+Antennae system
**Objective**: Integrate all components and create working Bzzz+HMMM system
**Requirements**:
- Combine P2P networking, logging, and GitHub integration
@@ -109,4 +109,4 @@ Based on the UNIFIED_DEVELOPMENT_PLAN.md, here are the development tasks ready f
1. Fix task creation API endpoint issues
2. Submit tasks to respective agents based on specializations
3. Monitor execution and coordinate between agents
4. Test the collaborative reasoning (Antennae) layer once P2P foundation is complete
4. Test the collaborative reasoning (HMMM) layer once P2P foundation is complete

View File

@@ -6,7 +6,7 @@ Tests the newly created API endpoints for dynamic repository discovery.
import sys
import os
sys.path.append('/home/tony/AI/projects/hive/backend')
sys.path.append('/home/tony/chorus/project-queues/inactive/hive/backend')
from app.services.project_service import ProjectService
import json

View File

@@ -10,17 +10,17 @@ def get_github_token():
"""Get GitHub token from secrets file."""
try:
# Try gh-token first
gh_token_path = Path("/home/tony/AI/secrets/passwords_and_tokens/gh-token")
gh_token_path = Path("/home/tony/chorus/business/secrets/gh-token")
if gh_token_path.exists():
return gh_token_path.read_text().strip()
# Try GitHub token
github_token_path = Path("/home/tony/AI/secrets/passwords_and_tokens/github-token")
github_token_path = Path("/home/tony/chorus/business/secrets/github-token")
if github_token_path.exists():
return github_token_path.read_text().strip()
# Fallback to GitLab token if GitHub token doesn't exist
gitlab_token_path = Path("/home/tony/AI/secrets/passwords_and_tokens/claude-gitlab-token")
gitlab_token_path = Path("/home/tony/chorus/business/secrets/claude-gitlab-token")
if gitlab_token_path.exists():
return gitlab_token_path.read_text().strip()
except Exception: