Show HN: Mediator.ai – Using Nash bargaining and LLMs to systematize fairness
TL;DR Highlight
Combining Nash equilibrium theory with LLMs, Mediator.ai automatically generates mutually acceptable settlement proposals for disputes, applicable to real-world scenarios like founder equity splits and contract disagreements.
Who Should Read
Developers and startup founders navigating negotiations—such as co-founder equity disputes, contract disagreements, or shared living expense allocation—as well as AI engineers interested in game theory-based decision-making systems powered by LLMs.
Core Mechanics
- Mediator.ai operates based on the cooperative bargaining theory (Nash Bargaining Solution) proposed by economist John Nash in 1950. While this mathematical framework isn't new, the key is LLMs converting party statements written in natural language into a format processable by mathematics.
- Each party independently inputs their position without knowing what the other has written. Mediator analyzes both statements, extracting key figures (monthly rent, actual working hours, amounts waived, revenue growth, etc.).
- The system generates multiple candidate settlements, then iteratively evaluates and improves them using a Genetic Algorithm. Each candidate is scored against both parties’ requirements, and the process repeats 'until no further improvement is possible'.
- In a bakery example, when Maya (60 hours/week operator) and Daniel (25 hours/week production) were at odds over 70/30 vs. 50/50 equity, the system proposed 62/38 initial equity + Daniel’s earn-back path (1% for every 200 hours, up to +5%). This structure itemizes contributions instead of a simple compromise.
- The settlement details all contributions as individual items, such as Maya owing Daniel $4,800 in rent (with an additional 2% equity for repayment within 24 months), Daniel waiving $12,000 in distributions ($6,000 from investment, quarterly payments from profits), and Maya receiving a $1,800/month operating management fee (paid before profit distribution).
- The intended use case is described as 'situations where both parties want an agreement but negotiations are stalled'—such as founder equity disputes, shared housing cost allocation, or contractor disputes. It assumes collaborative negotiation, unlike arbitration or litigation, which are binding.
- Technically, the LLM converts natural language input into structured preferences (Utility Function), while Nash Bargaining Solution mathematics calculates the optimal settlement point.
Evidence
- "A commenter with a background as a professional mediator pointed out that the tool is closer to arbitration than mediation. True mediation helps parties reach their own conclusions, rather than a mediator presenting a fair outcome, and emotional/human factors (a $50,000 dispute ending with an apology) are key—aspects this tool doesn’t address."
How to Apply
- When co-founders have an equity dispute, separately inputting each person’s contributions (time, funds, opportunity cost) into Mediator.ai can explore third-party settlement structures (earn-back clauses, installment payments) that neither side considered.
- In disputes with contractors over unpaid/overcharged amounts, inputting both sides’ positions into a Nash-based draft agreement before resorting to legal action can serve as a negotiation starting point. However, the results should be used as an exploratory framework, not a binding decision.
- If you want to implement an LLM + game theory architecture yourself, this case—LLM converting natural language input into preference numbers → Nash Bargaining equations calculating the optimal point → Genetic Algorithm iteratively improving—can serve as a reference pipeline. Shapley Value is also a viable alternative framework.
- Applying it first to emotionally sensitive but quantifiable situations (household chores, expense allocation) can help you understand the tool’s limitations and strengths. Expecting a complete agreement is unrealistic; using it to discover structures you hadn’t thought of is more practical.
Terminology
Related Papers
Anthropic's open-source framework for AI-powered vulnerability discovery
Anthropic이 Claude를 활용해 코드 취약점을 자율적으로 탐지·트리아지·패치하는 오픈소스 레퍼런스 구현체를 공개했다. 실제 보안팀과의 협업 경험을 바탕으로 만들어진 파이프라인이라 실전 적용성이 높다.
Will the Agent Recuse Itself? Measuring LLM-Agent Compliance with In-Band Access-Deny Signals
서버가 SSH 배너나 DB NOTICE로 'AI 에이전트는 접근하지 마세요' 신호를 보내면 GPT-4o, Claude Code 같은 LLM 에이전트가 실제로 물러나는지 실험으로 측정했다.
ToolChoiceConfusion: Causal Minimal Tool Filtering for Reliable LLM Agents
LLM 에이전트에 도구를 100개 다 보여주지 말고, 지금 당장 필요한 것 1개만 보여주면 성공률은 그대로에 토큰은 90% 절약된다.
My Agent Skill for Test-Driven Development
AI 에이전트가 형편없는 테스트를 작성하는 문제를 해결하기 위해, Kent Beck의 Canon TDD 원칙을 'Skill'로 만들어 에이전트에게 주입하는 방법을 공유한다. 에이전트 코딩에서 테스트 품질을 높이고 싶은 개발자에게 실용적인 접근법을 제시한다.
Show HN: Paseo – Beautiful open-source coding agent interface
Claude Code, Codex, GitHub Copilot 등 여러 코딩 에이전트를 하나의 UI로 제어하는 오픈소스 프로젝트로, 로컬 데몬 방식으로 자기 머신에서 실행하면서 모바일에서도 접근할 수 있다.
AI Agents Enable Adaptive Computer Worms
단일 GPU에서 돌아가는 오픈소스 LLM만으로 네트워크를 자율 전파하는 AI 웜을 실제로 구현해서, 이게 이론이 아닌 현실임을 증명했다.