Hacker News

Subscribe to Hacker News feed
Hacker News RSS
Updated: 7 min 38 sec ago

Ask HN: Is anyone using MCP notifications?

Mon, 07/20/2026 - 11:37am

The MCP spec includes server-to-client notifications for things like list-changed events, progress, log messages, but I barely hear anyone talk about them, and I'm not sure how much they're used.

In theory, it would be nice to receive updates from MCP servers ("Your product has been shipped") like we are already receiving from apps installed on the devices.

I'm wondering if this is a useful part of the protocol or just something that will mostly be ignored/deprecated.

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

Points: 1

# Comments: 0

Categories: Hacker News

Manna – Two Views of Humanity's Future

Mon, 07/20/2026 - 10:44am

Article URL: https://marshallbrain.com/manna

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

Points: 1

# Comments: 1

Categories: Hacker News

Watching AI agents build a new business

Mon, 07/20/2026 - 10:44am

Article URL: https://michii.dev/live

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

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: We let Muse Spark 1.1 vibe code itself to produce 2048

Mon, 07/20/2026 - 10:44am

We provided our harness with a single objective - 2048 with a twist - and 2 days later it delivered.

https://github.com/awesoftsolutions/idea_meta-muse-2048-game

The run is recorded end to end, so the code can be checked against the process that produced it. Our app is drivable via replay here: https://favur.dev/go/drive/the2048

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

Points: 1

# Comments: 0

Categories: Hacker News

What Is AI Good At?

Mon, 07/20/2026 - 10:41am
Categories: Hacker News

Show HN: The Plato Programming Language

Mon, 07/20/2026 - 10:40am

A functional programming language, designed and optimized especially for cross-platform numerical and geometry computation. I'd like to know if there are other domains relevant to you that this could be useful for: what is missing, or could be improved? Let's discuss thanks!

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

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: VoxThermic – A macOS journaling app that uses Apple's Foundation Models

Mon, 07/20/2026 - 10:40am

TL;DR version: I made a macOS journaling app that use Foundation Models to analyze entries for mood + written themes, and also has voice transcription, because I couldn't find any other journaling app that does those things.

OK, now for the longer, I-rambled-too-much version:

For the past few weeks I've been working on a macOS journaling app called VoxThermic.

The idea for it came from my own journaling habits, where my mood tends to shift a lot depending on whatever I'm dealing with. I've tried some journaling apps, but I've never found one that can analyze mood or see how my mood changes depending on what I'm writing about.

So I just figured I'd build it myself. I've been experimenting a lot with Apple's Foundation Models and Natural Language frameworks, and those all work on-device and offline (which is good because there's no way I'm sending journal entries to some AI company's data centers!)

But there's one problem with using Foundation Models: they're tiny. About 3 billion parameters, with a context window of 4096 tokens. That's fine for analyzing ONE journal entry. But how would I get it to analyze multiple entries?

It took a lot of experiments and the Foundation Model just outright refusing to work for several of them. Turns out it just refuses to work if you send in too much data... who would have guessed? Eventually I came up with one solution: summarizing multiple entries and then passing those into the model. Sometimes the summaries get summarized too, depending on the amount of data to process.

The approach works, but summarization loses detail and nuance. The analysis for a single journal entry can have a lot of detail and depth, because there's no summarizing involved and thus no data loss. The summary for a year's worth of entries... that's not so detailed. I still haven't found a better approach that stays entirely on-device.

Oh yeah, on an unrelated note: I also like to ramble a lot (you could have guessed, huh?), but I like to ramble out loud, rather than type. So I made voice transcription a big feature of the app, though this was the easy part.

Anyway, everything here works on-device, and it can run offline. And I'm aware this is probably a niche app, but it's something I wanted for myself, and I hope it comes in handy for someone else too. The app is free to download and use, with optional features like AI summaries and PDF exports.

Lastly, I also wonder if anyone's figured a better way of doing long-term analysis with Foundation Models? My "summarize the data and pass in a collection of summaries" technique works, but I don't think it's elegant, and yet at the same time I haven't been able to figure out anything better.

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

Points: 1

# Comments: 0

Categories: Hacker News

Ask HN: I stopped fighting AI over-reliance and built a workflow around it

Mon, 07/20/2026 - 10:35am

I am a frontend engineer and actively use AI. I caught myself that i never write code manually, only if i have to tweak some styling. I feel lazy and dumb compared to pre-AI era. Even if i have to write some small changes in code that take like 2 minutes - it is easier to spend those 2 minutes explaining everything in details to AI and point out what and how it needs to change. Because i dont have to think about the process, i only explain the idea and desired solution - then wait until its done to review.

Thats some kind of degradation. But the thing is that the quality is amazing. My productivity and speed increased significantly.

But there is a frustrating thing. The laziness started affect even review process. I feel like i dont want to spend time to read and check all the changes - i will better ask another AI to do it. And it works! I use Claude for like 95% of work, then switch to GPT to review everything properly. They have different personalities so you have different points of view. I consider GPT as a nerd - it catches a lot of gaps and inconsistencies that Claude misses. So i like to close them both in one room to debate.

What i really do care a lot is a comprehensive documentation. I spend a huge amount of time for planning and brainstorming with AI, then i document everything properly. All those MD files about architecture, composition recipes, cheat sheet… All of it should lie on surface, not to be buried somewhere deep in code. Every cold session starts with all the docs where everything is explained properly with references and examples to prevent AI to skim or give lazy answers. When i need to implement some big feature i structure a proper ready-to-execute plan so every next agent with fresh context reads it - analyzes what was done - figures out what is the task for this session - and goes ahead with all the changes, then report. It can be dozens of chats working sequentially on some big thing; in the end i will run some workflow to review all the implementation, then ask GPT to audit changes, and i will look myself only when AI approves that everything looks great. Then i can tell what and why has to be redone because i dont like how we have it now.

In my setup the documentation for AI outweighs the code (instruction files on every level, rule files that load by file type, subagents with roles, hooks around every edit). The most weightful part:

- A catalog of silent failures. 36 numbered traps that compile fine but render broken. Every entry is a real failure that shipped at least once: cause, symptom, fix.

- A "polish" rule. When you tell AI "make it better", its reflex is to ADD decorative stuff. So there is a written rule that polish means subtraction, with a list of patterns i rejected in real reviews.

- CI that fails when docs drift from code. The component registry is checked against source files. Because docs that lie are worse than no docs.

- A runtime verifier (WebMCP). An agent drives a real Chrome browser, clicks through the page, watches the console, takes screenshots at 3 viewports.

Basically I stopped writing code and started engineering the environment that writes the code. Every file exists because AI failed at something once, and i wrote it down so it wont happen again.

The biggest problem for me is motivation. I remember that feeling how you got stuck - cant figure out something for hours, searching right solution, trying, and then FUCK YEAH FINALLY, and the satisfaction: YOU NAILED IT. I dont have it anymore. I feel confident even in things where i have no expertise at all. Thats like: meh AI can handle it.

I think my system solves the quality question, but increases the laziness/motivation problem. I made it safe to be lazy.

So two questions:

1. How does your AI setup look like? I mean real files and rules, not just how you prompt.

2. Has anyone actually solved the motivation part?

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

Points: 2

# Comments: 0

Categories: Hacker News

Profunctor Optics

Mon, 07/20/2026 - 10:35am
Categories: Hacker News

Pages