Swipe-based matchmaking platform designed to help builders discover potential co-founders, collaborators, or indie hackers

This paper presents Hackmate, a low-bandwidth collaborator matching system designed around single-bit preference signals (left/right swipes) and a deterministic, in-memory real-time matching engine. Unlike profile-heavy collaboration networks, Hackmate captures clean behavioral data by reducing user interaction to a minimal binary decision. The system leverages Redis as a fast-path state machine and PostgreSQL for durable storage. Evaluation across 100 early users and 1,100 interactions demonstrates that deterministic preference encoding produces higher-quality matches and faster feedback loops than ranking models or ELO-style scoring.
Traditional collaborator discovery systems rely on long-form profiles, noisy recommendation algorithms, or feed-based browsing resulting in low-quality signals and high abandonment rates. Hackmate investigates whether collaborators can be matched using extremely low-bandwidth input: a single binary decision. The system evaluates whether minimal interaction can still produce accurate behavioral signals, reliable matches, and scalable real-time performance.
Hackmate is composed of two synchronized execution layers: a Redis fast-path used for all real-time operations and a PostgreSQL durable layer for long-term state. The fast-path ensures sub-millisecond latency for swipes, mutual-match detection, and live feed updates.

likes:<user_id> – SET (record all outgoing preferences)
matches:<user_id> – LIST (ordered list of confirmed matches)
user:<user_id> – HASH (cached user profile data)
Later iterations moved match-checking to the browser, achieving instant right-swipe feedback and reducing server load.
Hackmate was evaluated across 100 users, producing 1,100 total interactions and 200+ confirmed matches across the West Coast and EU regions.
Even a single-bit input captures rich latent dimensions of compatibility skill relevance, intent alignment, collaboration style, and project expectations. Hackmate shows that deterministic pipelines can outperform early ML models when datasets are small or behavior is still emerging.
Hackmate demonstrates that collaborator discovery can be made faster, more accurate, and more data-rich by using minimal input signals and deterministic, in-memory computation. The system converts simple decisions into high-quality behavioral datasets and provides a foundation for future ML-driven modeling of collaborative compatibility.