Hacker News

Latest

Megadev: A Development Kit for the Sega Mega Drive and Mega CD Hardware

2026-03-14 @ 09:04:39Points: 5Comments: 0

Optimizing Content for Agents

2026-03-14 @ 02:27:00Points: 49Comments: 18

Our Experience with I-Ready

2026-03-14 @ 00:29:50Points: 72Comments: 25

Games with loot boxes to get minimum 16 age rating across Europe

2026-03-14 @ 00:02:37Points: 212Comments: 123

I beg you to follow Crocker's Rules, even if you will be rude to me

2026-03-13 @ 23:14:37Points: 78Comments: 118

I found 39 Algolia admin keys exposed across open source documentation sites

2026-03-13 @ 22:52:05Points: 131Comments: 32

Stanford researchers report first recording of a blue whale's heart rate (2019)

2026-03-13 @ 19:15:06Points: 78Comments: 45

Digg is gone again

2026-03-13 @ 18:52:17Points: 198Comments: 178

Mouser: An open source alternative to Logi-Plus mouse software

2026-03-13 @ 18:42:54Points: 325Comments: 93

I'm a minor contributor to this project but it aims to reduce/eliminate the need to use Logitech proprietary software and telemetry. We could use help if other people are interested.

Please check out the github link for more detailed motivations (eliminating telemetry) as a part of this project. Here is link: https://github.com/TomBadash/MouseControl

Hammerspoon

2026-03-13 @ 18:34:12Points: 291Comments: 105

Show HN: Context Gateway – Compress agent context before it hits the LLM

2026-03-13 @ 17:58:22Points: 83Comments: 49

Demo: https://www.youtube.com/watch?v=-vFZ6MPrwjw#t=9s.

Motivation: Agents are terrible at managing context. A single file read or grep can dump thousands of tokens into the window, most of it noise. This isn't just expensive — it actively degrades quality. Long-context benchmarks consistently show steep accuracy drops as context grows (OpenAI's GPT-5.4 eval goes from 97.2% at 32k to 36.6% at 1M https://openai.com/index/introducing-gpt-5-4/).

Our solution uses small language models (SLMs): we look at model internals and train classifiers to detect which parts of the context carry the most signal. When a tool returns output, we compress it conditioned on the intent of the tool call—so if the agent called grep looking for error handling patterns, the SLM keeps the relevant matches and strips the rest.

If the model later needs something we removed, it calls expand() to fetch the original output. We also do background compaction at 85% window capacity and lazy-load tool descriptions so the model only sees tools relevant to the current step.

The proxy also gives you spending caps, a dashboard for tracking running and past sessions, and Slack pings when an agent is sitting there waiting on you.

Repo is here: https://github.com/Compresr-ai/Context-Gateway. You can try it with:

  curl -fsSL https://compresr.ai/api/install | sh
Happy to go deep on any of it: the compression model, how the lazy tool loading works, or anything else about the gateway. Try it out and let us know how you like it!

1M context is now generally available for Opus 4.6 and Sonnet 4.6

2026-03-13 @ 17:19:01Points: 777Comments: 302

Elon Musk pushes out more xAI founders as AI coding effort falters

2026-03-13 @ 16:40:42Points: 446Comments: 669

Parallels confirms MacBook Neo can run Windows in a virtual machine

2026-03-13 @ 14:11:36Points: 273Comments: 382

Launch HN: Spine Swarm (YC S23) – AI agents that collaborate on a visual canvas

2026-03-13 @ 13:22:40Points: 100Comments: 69

https://www.getspine.ai). Spine Swarm is a multi-agent system that works on an infinite visual canvas to complete complex non-coding projects: competitive analysis, financial modeling, SEO audits, pitch decks, interactive prototypes, and more. Here's a video of it in action: https://www.youtube.com/watch?v=R_2-ggpZz0Q.

We've been friends for over 13 years. We took our first ML course together at NTU, in a part of campus called North Spine, which is where the name comes from. We went through YC in S23 and have spent about 3 years building Spine across many product iterations.

The core idea: chat is the wrong interface for complex AI work. It's a linear thread, and real projects aren't linear. Sure, you can ask a chatbot to reference the financial model from earlier in the thread, or run research and market sizing together, but you're trusting the model to juggle that context implicitly. There's no way to see how it's connecting the pieces, no way to correct one step without rerunning everything, and no way to branch off and explore two strategies side by side. ChatGPT was a demo that blew up, and chat stuck around as the default interface, not because it's the right abstraction. We thought humans and agents needed a real workspace where the structure of the work is explicit and user-controllable, not hidden inside a context window.

So we built an infinite visual canvas where you think in blocks instead of threads. Each block is our abstraction on top of AI models. There are dedicated block types for LLM calls, image generation, web browsing, apps, slides, spreadsheets, and more. Think of them as Lego bricks for AI workflows: each one does something specific, but they can be snapped together and composed in many different ways. You can connect any block to any other block, and that connection guarantees the passing of context regardless of block type. The whole system is model-agnostic, so in a single workflow you can go from an OpenAI LLM call, to an image generation mode like Nano Banana Pro, to Claude generating an interactive app, each block using whatever model fits best. Multiple blocks can fan out from the same input, analyzing it in different ways with different models, then feed their outputs into a downstream block that synthesizes the results.

The first version of the canvas was fully manual. Users entered prompts, chose models, ran blocks, and made connections themselves. It clicked with founders and product managers because they could branch in different directions from the same starting point: take a product idea and generate a prototype in one branch, a PRD in another, a competitive critique in a third, and a pitch deck in a fourth, all sharing the same upstream context. But new users didn't want to learn the interface. They kept asking us to build a chat layer that would generate and connect blocks on their behalf, to replicate the way we were using the tool. So we built that, and in doing so discovered something we didn't expect: the agents were capable of running autonomously for hours, producing complete deliverables. It turned out agents could run longer and keep their context windows clean by delegating work to blocks and storing intermediary context on the canvas, rather than holding everything in a single context window.

Here's how it works now. When you submit a task, a central orchestrator decomposes it into subtasks and delegates each to specialized persona agents. These agents operate on the canvas blocks and can override default settings, primarily the model and prompt, to fit each subtask. Agents pick the best model for each block and sometimes run the same block with multiple models to compare and synthesize outputs. Multiple agents work in parallel when their subtasks don't have dependencies, and downstream agents automatically receive context from upstream work. The user doesn't configure any of this. You can also dispatch multiple tasks at once and the system will queue dependent ones or start independent ones immediately.

Agents aren't fully autonomous by default. Any agent can pause execution and ask the user for clarification or feedback before continuing, which keeps the human in the loop where it matters. And once agents have produced output, you can select a subset of blocks on the canvas and iterate on them through the chat without rerunning the entire workflow.

The canvas gives agents something that filesystems and message-passing don't: a persistent, structured representation of the entire project that any agent can read and contribute to at any point. In typical multi-agent systems, context degrades as it passes between agents. The canvas addresses this because agents store intermediary results in blocks rather than trying to hold everything in memory, and they leave explicit structured handoffs designed to be consumed efficiently by the next agent in the chain. Every step is also fully auditable, so you can trace exactly how each agent arrived at its conclusions.

We ran benchmarks to validate what we were seeing. On Google DeepMind's DeepSearchQA, which is 900 questions spanning 17 fields, each structured as a causal chain where each step depends on completing the previous one, Spine Swarm scored 87.6% on the full dataset with zero human intervention. For the benchmark we used a subset of block types relevant to the questions (LLM calls, web browsing, table) and removed irrelevant ones like document, spreadsheet, and slide generation. We also disabled human clarification so agents ran fully independently. The agents were not just auditable but also state of the art. The auditability also exposed actual errors in an older benchmark (GAIA Level 3), cases where the expected answer was wrong or ambiguous, which you'd never catch with a black-box pipeline. We detail the methodology, architecture, and benchmark errors in the full writeup: https://blog.getspine.ai/spine-swarm-hits-1-on-gaia-level-3-...

Benchmarks measure accuracy on closed-ended questions. Turns out the same architecture also leads to better open-ended outputs like decks, reports, and prototypes with minimal supervision. We've seen early users split into two camps: some watch the agents work and jump in to redirect mid-flow, others queue a task and come back to a finished deliverable. Both work because the canvas preserves the full chain of work, so you can audit or intervene whenever you want.

A good first task to try: give it your website URL and ask for a full SEO analysis, competitive landscape, and a prioritized growth roadmap with a slide deck. You'll see multiple agents spin up on the canvas simultaneously. People have also used it for fundraising pitch decks with financial models, prototyping features from screenshots and PRDs, competitive analysis reports and deep-dive learning plans that research a topic from multiple angles and produce structured material you can explore further.

Pricing is usage-based credits tied to block usage and the underlying models used. Agents tend to use more credits than manual workflows because they're tuned to get you the best possible outcome, which means they pick the best blocks and do more work. Details here: https://www.getspine.ai/pricing. There's a free tier, and one honest caveat: we sized it to let you try a real task, but tasks vary in complexity. If you run out before you've had a proper chance to explore, email us at founders@getspine.ai and we'll work with you.

We'd love your feedback on the experience: what worked, what didn't, and where it fell short. We're also curious how others here approach complex, multi-step AI work beyond coding. What tools are you using, and what breaks first? We'll be in the comments all day.

Can I run AI locally?

2026-03-13 @ 12:46:10Points: 1241Comments: 307

Qatar helium shutdown puts chip supply chain on a two-week clock

2026-03-13 @ 12:31:09Points: 592Comments: 509

Coding after coders: The end of computer programming as we know it?

2026-03-12 @ 10:29:45Points: 132Comments: 162

The Isolation Trap: Erlang

2026-03-12 @ 08:22:32Points: 53Comments: 8

New 'negative light' technology hides data transfers in plain sight

2026-03-11 @ 20:46:24Points: 89Comments: 55

Wired headphone sales are exploding

2026-03-11 @ 19:37:46Points: 152Comments: 254

Atari 2600 BASIC Programming (2015)

2026-03-11 @ 18:35:39Points: 29Comments: 6

Baochip-1x: What It Is, Why I'm Doing It Now and How It Came About

2026-03-11 @ 18:21:58Points: 23Comments: 2

Show HN: Channel Surfer – Watch YouTube like it’s cable TV

2026-03-11 @ 14:34:57Points: 521Comments: 152

So I made this to recreate Cable TV for YouTube. I made it so it runs in the browser. Quickly import your subscriptions in the browser via a bookmarklet. No accounts, no sign-ins. Just quickly import your data locally.

Recursive Problems Benefit from Recursive Solutions

2026-03-11 @ 01:46:43Points: 25Comments: 7

AEP (API Design Standard and Tooling Ecosystem)

2026-03-10 @ 18:38:18Points: 17Comments: 4

You gotta think outside the hypercube

2026-03-10 @ 14:18:21Points: 67Comments: 18

Using Thunderbird for RSS

2026-03-10 @ 07:38:59Points: 104Comments: 30

Emacs and Vim in the Age of AI

2026-03-10 @ 04:21:32Points: 153Comments: 93

A Survival Guide to a PhD (2016)

2026-03-10 @ 02:16:51Points: 108Comments: 58

Archives

2026

2025

2024

2023

2022