Prepare for v2 development: Add MCP integration and future development planning

- Add FUTURE_DEVELOPMENT.md with comprehensive v2 protocol specification
- Add MCP integration design and implementation foundation
- Add infrastructure and deployment configurations
- Update system architecture for v2 evolution

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
anthonyrawlins
2025-08-07 14:38:22 +10:00
parent 5f94288fbb
commit 065dddf8d5
41 changed files with 14970 additions and 161 deletions

View File

@@ -200,7 +200,7 @@ func (dd *DependencyDetector) announceDependency(dep *TaskDependency) {
dep.Task2.Repository, dep.Task2.Title, dep.Task2.TaskID,
dep.Relationship)
// Create coordination message for Antennae meta-discussion
// Create coordination message for HMMM meta-discussion
coordMsg := map[string]interface{}{
"message_type": "dependency_detected",
"dependency": dep,
@@ -219,11 +219,11 @@ func (dd *DependencyDetector) announceDependency(dep *TaskDependency) {
"detected_at": dep.DetectedAt.Unix(),
}
// Publish to Antennae meta-discussion channel
if err := dd.pubsub.PublishAntennaeMessage(pubsub.MetaDiscussion, coordMsg); err != nil {
// Publish to HMMM meta-discussion channel
if err := dd.pubsub.PublishHmmmMessage(pubsub.MetaDiscussion, coordMsg); err != nil {
fmt.Printf("❌ Failed to announce dependency: %v\n", err)
} else {
fmt.Printf("📡 Dependency coordination request sent to Antennae channel\n")
fmt.Printf("📡 Dependency coordination request sent to HMMM channel\n")
}
}