Hacker News

Subscribe to Hacker News feed
Hacker News RSS
Updated: 27 min 58 sec ago

Show HN: MoltHub – GitHub for AI Agents with Trust-Based Auto-Merge

Wed, 02/11/2026 - 11:25pm

MoltHub is a collaboration platform where AI agents have persistent cryptographic identities (Ed25519 DIDs), create repos, push commits with reasoning traces, and open pull requests — just like developers on GitHub. What makes it different from regular Git hosting: - Agents authenticate via challenge-response with Ed25519 keypairs - Every commit includes intent, reasoning steps, confidence scores, and metrics (not just code diffs) - A trust graph between agents enables auto-merge when trust thresholds are met - Commits are content-addressed (CBOR → SHA-256), so identical work always produces the same hash Built on Cloudflare Workers + Durable Objects + R2. The web dashboard lets humans browse agent repos, read commit reasoning, and inspect the trust graph. Any agent can join by reading the API guide at https://molt-hub.org/SKILL.md — paste it into your agent's chat and it can register itself, create repos, and start collaborating.

Comments URL: https://news.ycombinator.com/item?id=46984895

Points: 1

# Comments: 0

Categories: Hacker News

Proof-Oriented Programming in F*

Wed, 02/11/2026 - 11:24pm

Article URL: https://fstar-lang.org/tutorial/

Comments URL: https://news.ycombinator.com/item?id=46984894

Points: 1

# Comments: 0

Categories: Hacker News

Dear Agent: Prove It

Wed, 02/11/2026 - 11:23pm
Categories: Hacker News

Distributed Llama

Wed, 02/11/2026 - 11:07pm
Categories: Hacker News

GLM-5 was trained entirely on Huawei chips

Wed, 02/11/2026 - 11:06pm

Article URL: https://glm5.net/

Comments URL: https://news.ycombinator.com/item?id=46984799

Points: 4

# Comments: 1

Categories: Hacker News

Show HN: Prompt Builder – A block-based editor for composing AI prompts

Wed, 02/11/2026 - 11:05pm

Hi HN,

I built Prompt Builder (https://www.promptbuilder.space/) because I was frustrated managing complex AI prompts in plain text boxes.

The core idea: instead of one giant textarea, you compose prompts from draggable, reorderable blocks. Each block can have its own XML/custom tags, visibility toggles (so you can A/B test sections), and duplicates.

Key technical details: - Live compiled preview: the right pane shows the exact string being sent, updating as you drag/toggle blocks - Dynamic variables: define {{var_name}} once, use across blocks, change in one place - Multi-model execution: send the same compiled prompt to different model APIs and compare outputs - Voice transcription + optional translation (useful for non-English prompt authoring) - Editable response pane: modify the model's output in place - Folder organization, search, and password-protected shareable links

I'd love feedback on the UX and whether the block metaphor resonates with how you think about prompt structure. What's missing?

Comments URL: https://news.ycombinator.com/item?id=46984792

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: Membrane, revisable memory for long lived AI agents

Wed, 02/11/2026 - 10:42pm

Membrane is a general-purpose memory substrate for agentic systems.

Most agent memory today is either context window state or an append only retrieval store. That allows recall but not learning. Facts become stale, procedures drift, and agents cannot revise knowledge safely without losing provenance or auditability.

Membrane treats memory as something that can evolve over time. It ingests raw experience, promotes it into structured knowledge, and allows records to be superseded, forked, contested, merged, or retracted with evidence. The goal is to let long lived agents improve while remaining predictable and inspectable.

The core ideas are simple.

- Memory is typed instead of stored as flat text - Knowledge is revisable and keeps provenance - Agents can learn competences and procedures, not just facts - Salience decays over time so unused knowledge fades - Retrieval is filtered by trust and sensitivity levels - Revision history remains auditable

Membrane runs either as a daemon with a gRPC API or as an embedded Go library. Storage uses SQLite with optional SQLCipher encryption. The repository includes an evaluation suite covering ingestion, revision, consolidation, and retrieval ordering.

Membrane intentionally does not implement vector similarity search. Retrieval backends and agent policy are separated from the memory layer so the system can remain deterministic and inspectable.

I built this while experimenting with long lived agents that need something closer to learning than what RAG systems currently provide. Feedback on architecture, edge cases, and real-world use cases would be helpful.

If you have any suggestions or want to contribute, anything is welcome :)

Comments URL: https://news.ycombinator.com/item?id=46984655

Points: 1

# Comments: 0

Categories: Hacker News

Pages