HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Ricky_Tsou

no profile record

Submissions

[untitled]

1 points·by Ricky_Tsou·เดือนที่แล้ว·0 comments

[untitled]

1 points·by Ricky_Tsou·3 เดือนที่ผ่านมา·0 comments

Show HN: MUP – Claude builds a presentation while talking, then writes game live

youtube.com
1 points·by Ricky_Tsou·4 เดือนที่ผ่านมา·0 comments

Your model quality is tied to a business model

2 points·by Ricky_Tsou·4 เดือนที่ผ่านมา·0 comments

Show HN: MUP – Stop making LLMs rebuild UI from scratch every time

1 points·by Ricky_Tsou·4 เดือนที่ผ่านมา·0 comments

Show HN: MUP – Interactive UI inside LLM chat, so anyone can use agentic AI

github.com
1 points·by Ricky_Tsou·4 เดือนที่ผ่านมา·2 comments

comments

Ricky_Tsou
·4 เดือนที่ผ่านมา·discuss
Thanks!

MUP is just a protocol — it defines the format and communication between a MUP and its host, but it doesn't dictate how the host handles these things.

Conflict resolution depends on the host implementation. Different applications may need different strategies (queuing, locking, last-write-wins, etc.) — that's a host-level decision, not a protocol-level one.

Same for MUP-to-MUP communication. The protocol keeps each MUP isolated by design, but a host could absolutely build a coordination layer on top. In our PoC, the LLM acts as the orchestrator between MUPs, but that's just one approach.

The spec intentionally stays out of these decisions so it can work across different hosts and use cases.