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:
6
main.go
6
main.go
@@ -59,7 +59,7 @@ func main() {
|
||||
ctx, cancel := context.WithCancel(context.Background())
|
||||
defer cancel()
|
||||
|
||||
fmt.Println("🚀 Starting Bzzz + Antennae P2P Task Coordination System...")
|
||||
fmt.Println("🚀 Starting Bzzz + HMMM P2P Task Coordination System...")
|
||||
|
||||
// Load configuration
|
||||
cfg, err := config.LoadConfig("")
|
||||
@@ -129,7 +129,7 @@ func main() {
|
||||
defer mdnsDiscovery.Close()
|
||||
|
||||
// Initialize PubSub with hypercore logging
|
||||
ps, err := pubsub.NewPubSubWithLogger(ctx, node.Host(), "bzzz/coordination/v1", "antennae/meta-discussion/v1", hlog)
|
||||
ps, err := pubsub.NewPubSubWithLogger(ctx, node.Host(), "bzzz/coordination/v1", "hmmm/meta-discussion/v1", hlog)
|
||||
if err != nil {
|
||||
log.Fatalf("Failed to create PubSub: %v", err)
|
||||
}
|
||||
@@ -198,7 +198,7 @@ func main() {
|
||||
|
||||
fmt.Printf("🔍 Listening for peers on local network...\n")
|
||||
fmt.Printf("📡 Ready for task coordination and meta-discussion\n")
|
||||
fmt.Printf("🎯 Antennae collaborative reasoning enabled\n")
|
||||
fmt.Printf("🎯 HMMM collaborative reasoning enabled\n")
|
||||
|
||||
// Handle graceful shutdown
|
||||
c := make(chan os.Signal, 1)
|
||||
|
||||
Reference in New Issue
Block a user