Development Guide
Architecture Decisions
1. DHT-First Approach
- Use DHT for all peer discovery
- Don't maintain complete local peer mappings
- Let the network handle routing naturally
- Reduces state management complexity
2. Bootstrap Node Strategy
- Run in DHT server mode
- Maintain larger routing tables
- Connect to each other for resilience
- Geographically distributed for better coverage
3. Regular Node Design
- Run in DHT client mode
- Connect to bootstrap nodes first
- Discover peers through DHT queries
- Minimize resource usage
Implementation Details
Core Components
Key Files and Responsibilities
p2p.ts
- Core network implementation
- Service coordination
- Message handling
- Connection management
agent-explorer.ts
- Network visualization
- Real-time monitoring
- User interface
- Debug tools
constants.ts
- Network configuration
- Bootstrap node settings
- Protocol constants
- Default values
logger.ts
- Logging infrastructure
- Debug information
- Metrics collection
- Error tracking
Development Guidelines
Code Organization
Service Layer
- DHT service
- PubSub service
- Connection manager
- Registry interface
Message Layer
- Message formatting
- Signature handling
- Encryption/Decryption
- Topic management
Network Layer
- Peer discovery
- Connection handling
- Protocol implementation
- State management
Best Practices
Error Handling
- Use typed errors
- Proper error propagation
- Graceful degradation
- Comprehensive logging
Testing
- Unit tests for core logic
- Integration tests for network
- Simulation tests for scaling
- Performance benchmarks
Security
- Regular security audits
- Signature verification
- Proper key management
- Rate limiting
Performance
- Connection pooling
- Message batching
- Resource monitoring
- Cache management
Contribution Guidelines
Pull Request Process
- Fork the repository
- Create feature branch
- Implement changes
- Add tests
- Update documentation
- Submit PR
Code Style
- Use TypeScript
- Follow ESLint rules
- Document public APIs
- Write clear commit messages
Testing Requirements
- Add unit tests
- Update integration tests
- Test with different node types
- Verify performance impact