Hacker News
Show HN: MoltHub – GitHub for AI Agents with Trust-Based Auto-Merge
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
Proof-Oriented Programming in F*
Article URL: https://fstar-lang.org/tutorial/
Comments URL: https://news.ycombinator.com/item?id=46984894
Points: 1
# Comments: 0
Dear Agent: Prove It
Article URL: https://rijnard.com/blog/dear-agent-proof
Comments URL: https://news.ycombinator.com/item?id=46984891
Points: 1
# Comments: 0
Reflections on Using Claude Code
Article URL: http://ternarysearch.blogspot.com/2026/02/reflections-on-using-claude-code.html
Comments URL: https://news.ycombinator.com/item?id=46984890
Points: 1
# Comments: 0
Results from the Advent of FPGA Challenge
Article URL: https://blog.janestreet.com/advent-of-fpga-challenge-2025-results/
Comments URL: https://news.ycombinator.com/item?id=46984865
Points: 2
# Comments: 0
Island Enterprise Browser: Intelligent security built into the browsing session
Article URL: https://www.helpnetsecurity.com/2023/07/05/mike-fey-island-enterprise-browser/
Comments URL: https://news.ycombinator.com/item?id=46984854
Points: 1
# Comments: 0
Victorian Engineering Connections Diagram from the Brunel Museum
Article URL: https://thebrunelmuseum.com/engineering-connections/
Comments URL: https://news.ycombinator.com/item?id=46984828
Points: 2
# Comments: 1
Self-Distillation Enables Continual Learning
Article URL: https://self-distillation.github.io/SDFT.html
Comments URL: https://news.ycombinator.com/item?id=46984810
Points: 1
# Comments: 0
Distributed Llama
Article URL: https://github.com/b4rtaz/distributed-llama
Comments URL: https://news.ycombinator.com/item?id=46984802
Points: 3
# Comments: 0
GLM-5 was trained entirely on Huawei chips
Article URL: https://glm5.net/
Comments URL: https://news.ycombinator.com/item?id=46984799
Points: 4
# Comments: 1
Show HN: Prompt Builder – A block-based editor for composing AI prompts
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
Dawson's Creek star James Van Der Beek has died at 48 from Stage 3 colon cancer
Article URL: https://www.npr.org/2026/02/11/nx-s1-5552216/james-van-der-beek-dead-dawsons-creek
Comments URL: https://news.ycombinator.com/item?id=46984790
Points: 3
# Comments: 0
ClawShield – Security audit tool for OpenClaw deployments
Article URL: https://github.com/policygate/clawshield
Comments URL: https://news.ycombinator.com/item?id=46984787
Points: 1
# Comments: 2
Conversations Happen in Cars
Article URL: https://oedmethod.substack.com/p/best-conversations-are-in-cars
Comments URL: https://news.ycombinator.com/item?id=46984786
Points: 6
# Comments: 0
I built an app that lets you search for anything in your house like Google
Article URL: https://apps.apple.com/us/app/shelver-home-organization/id6756636954
Comments URL: https://news.ycombinator.com/item?id=46984781
Points: 2
# Comments: 2
Motorola's Password Pill Was Just One Idea
Article URL: https://hackaday.com/2026/02/11/motorolas-password-pill-was-just-one-idea/
Comments URL: https://news.ycombinator.com/item?id=46984778
Points: 1
# Comments: 0
1,300-year-old world chronicle unearthed in Sinai
Article URL: https://www.heritagedaily.com/2026/02/1300-year-old-world-chronicle-unearthed-in-sinai/156948
Comments URL: https://news.ycombinator.com/item?id=46984768
Points: 2
# Comments: 0
Show HN: Membrane, revisable memory for long lived AI agents
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
Google played key role in recovering video from Nancy Guthrie's nest camera
Article URL: https://www.cnn.com/2026/02/10/tech/google-video-nancy-guthrie
Comments URL: https://news.ycombinator.com/item?id=46984652
Points: 1
# Comments: 1
Show HN: DocForge – Multi-Agent RAG That Fact-Checks Its Own Answers
Article URL: https://github.com/ToheedAsghar/DocForge
Comments URL: https://news.ycombinator.com/item?id=46984641
Points: 1
# Comments: 0
