Hacker News

Latest

US Debt Clock Live

2026-07-15 @ 17:10:15Points: 12Comments: 3

Artie (YC S23) Is Hiring Software Engineers

2026-07-15 @ 17:01:02Points: 1

A General Goal-Conditioned Minecraft Model

2026-07-15 @ 16:35:09Points: 17Comments: 7

Collection of Digital Clock Designs

2026-07-15 @ 16:33:15Points: 38Comments: 8

FreeBSD 16 Retires the Last of Its GPL Code from Its Base System

2026-07-15 @ 16:32:05Points: 37Comments: 0

What designing 54 computer science cards taught me about graphic design

2026-07-15 @ 16:22:14Points: 14Comments: 3

Open-source memory for coding agents, synced over SSH

2026-07-15 @ 16:15:03Points: 50Comments: 13

Unsolved Problems in MLOps

2026-07-15 @ 16:15:01Points: 16Comments: 3

Show HN: misa77 - a codec that decodes 2x faster than LZ4 (at better ratios)

2026-07-15 @ 15:58:59Points: 61Comments: 16

It has the following characteristics:

  - SOTA decompression throughput in its ratio class
  - Decent ratios (comparable to LZ4 at high effort levels)
  - Slow compression
Most of the gains can be attributed to reducing branches and making decompression very friendly to out-of-order cores, by using a smart format.

Results on the tarred Silesia corpus on Intel x86-64 follow:

  codec       decode      ratio    encode
  misa77 -0   5219 MB/s   42.64%   54.5 MB/s
  misa77 -1   4274 MB/s   39.65%   51.2 MB/s
  lz4         2505 MB/s   47.59%   371 MB/s
  lz4hc -12   2531 MB/s   36.45%   7.31 MB/s

Launch HN: Coasty (YC S26) – An API for computer-use agents

2026-07-15 @ 15:51:20Points: 19Comments: 0

https://coasty.ai/computer-use). We’re building computer-use agents that can complete workflows inside legacy desktop software and web applications without usable APIs.

Developers send Coasty a natural-language task either through our consumer app or through our API, select a machine or browser environment, and any relevant credentials or files. The agent then operates the interface through screenshots, mouse, and keyboard input, verifies the result, and returns a structured run record with screenshots, actions, outputs, and errors.

Here is a raw demo of an agent completing a workflow in a legacy application(It’s a mockup): https://drive.google.com/file/d/1ZghU_3vsAYhHVz1bsvE0pkvZYk7...

A lot of important software is still difficult to automate. Healthcare teams submit prior authorizations through payer portals, accounting teams enter data into desktop applications, and operations teams move information between internal systems, spreadsheets, and remote desktops. Many of these applications have no API, incomplete APIs, or integrations that take months to build.

The usual alternative is RPA, record a sequence of clicks and replay it. That works when the interface and workflow are predictable, but it often breaks when a button moves, a pop-up appears, a page loads slowly, or the application enters an unexpected state.

Coasty takes a different approach. The agent observes the current screen, decides what action to take, executes it, and then observes the resulting state before continuing. It does not require DOM access, an accessibility tree, selectors, or an application-specific integration, so the same API can operate browsers, remote desktops, and older Windows applications.

A simplified request looks roughly like this:

  run = coasty.runs.create(
      environment="vm_123",
      task="""
      Open the patient record in the billing portal.
      Enter the attached authorization data.
      Do not submit if the member ID or procedure code does not match.
      Return the confirmation number.
      """,
      files=["authorization.pdf"],
      approval_required=["final_submission"]
  )
The response includes the final status, extracted outputs, a replay URL, and a timestamped event log:

  {
    "status": "completed",
    "output": {
      "confirmation_number": "PA-184392"
    },
    "replay_url": "...",
    "events": [
      {
        "type": "verification",
        "field": "member_id",
        "result": "matched"
      }
    ]
  }
The API can also pause a run for human approval, retry from a checkpoint, or return control to the developer when it encounters a condition the workflow did not anticipate.

We started working on this last summer, because we saw that models were getting better at vision but kept seeing a gap between computer-use demos and the reliability needed for production workflows. Getting an agent to complete a task once is fairly straightforward. Getting it to repeat that task, recover from unexpected states, avoid silently entering incorrect data, and produce evidence of what it did is much harder.

We built several layers around the underlying computer-use model. The system tracks the expected state of the workflow, detects when the application has diverged from that state, and can re-plan instead of continuing blindly. Developers can define invariants such as “the patient name must match the source document” or “never submit without approval,” and the agent checks those conditions during the run.

Each run happens in an isolated virtual machine. We expose APIs for provisioning environments, uploading files, starting tasks, streaming events, inserting human approvals, and retrieving the full replay and audit trail. Environments can be kept alive across runs when the application has a long login flow or persistent local state.

One problem we are still working through is the tradeoff between speed and reliability. The agent can move faster by taking fewer observations and verification steps, but that becomes risky in workflows involving patient records, payments, or regulatory filings. We currently bias toward slower execution with more checks and let developers configure approval points and verification policies.

We are initially working with healthcare operations teams because their workflows combine many of the hardest conditions: payer portals, EHRs, PDFs, spreadsheets, remote desktops, and actions where quiet mistakes are expensive. We also expose the same infrastructure through the developer API for teams building their own agents and vertical automation products.

We currently charge based on agent runtime and workflow volume, with separate pricing for dedicated environments and enterprise deployments.

We’d especially appreciate feedback from people who have built and/or used browser agents, RPA systems, desktop automation, or agent infrastructure. We’re curious which parts of the API you would want direct control over, where you would prefer higher-level abstractions, and which failure modes have been hardest in your own automation systems.

If you've hit weird failure modes automating software like this, we want to hear about them. We'll be here all day answering questions and taking notes!

When A.I. Is a Member of the Family

2026-07-15 @ 15:37:47Points: 33Comments: 31

Running Gemma 4 26B at 5 tokens/sec on a 13-year-old Xeon with no GPU

2026-07-15 @ 15:34:05Points: 100Comments: 53

DEA to Temporarily Schedule 7-Oh and Related Substances to Protect Public Safety

2026-07-15 @ 15:17:44Points: 63Comments: 123

OpenAI loses trademark dispute at EU court

2026-07-15 @ 14:32:36Points: 127Comments: 103

My midlife crisis Corolla is fast, furious, and modded

2026-07-15 @ 14:23:44Points: 70Comments: 139

The well-calibrated Bayesian [pdf] (1982)

2026-07-15 @ 14:11:12Points: 39Comments: 11

Towards a Harness That Can Do Anything

2026-07-15 @ 14:08:28Points: 98Comments: 56

Show HN: 18KB ls alternative in no_std rust and Libc

2026-07-15 @ 13:49:15Points: 14Comments: 4

Mysteries of Telegram Data Centers

2026-07-15 @ 13:22:00Points: 172Comments: 51

The Three-Second Theft: Why AI Voice Fraud Outruns Every Defence

2026-07-15 @ 13:18:15Points: 125Comments: 159

SpaceX bond worth 10% less than issue price – heading for junk bond status

2026-07-15 @ 12:59:09Points: 469Comments: 410

Briar Is in Maintenance Mode

2026-07-15 @ 12:33:27Points: 107Comments: 74

Sleep regularity is a stronger predictor of mortality risk than sleep duration (2023)

2026-07-15 @ 11:46:06Points: 561Comments: 276

Prioritize mental health, and why communication is so important

2026-07-15 @ 11:27:35Points: 203Comments: 127

Weathergotchi – an open-source climate Tamagotchi

2026-07-15 @ 11:02:43Points: 94Comments: 22

Jurassic Park computers in excruciating detail

2026-07-15 @ 02:57:47Points: 819Comments: 212

The Memory Heist

2026-07-14 @ 19:40:54Points: 47Comments: 3

The Conservationist Who Turned 40 Terabytes of Public Data into a Video Game

2026-07-14 @ 13:52:21Points: 63Comments: 10

Today I Rescued 7,234 Old GIFs

2026-07-12 @ 19:00:49Points: 28Comments: 1

What Every Python Developer Should Know About the CPython ABI

2026-07-11 @ 18:39:34Points: 33Comments: 4

Archives

2026

2025

2024

2023

2022