nowfound

Alternatives

Products that do what Curlmate — Persistent OAuth (Beta) does

Stop token expiry from breaking your agents

  1. 1

    Give AI access to 6754+ APIs with zero credentials exposed

    Feb 2026 · keychains.dev

  2. 2

    Give every customer their own Hermes or OpenClaw agent

    Jun 2026 · agent37.com

  3. 3

    AI agents that can email, pay APIs, sign, and store secrets

    Jun 2026 · mailgent.dev

  4. 4
    AgentKey417

    One-stop live data marketplace for your agent

    Jul 2026 · agentkey.app

  5. 5
    Mighty195

    OAuth for agents

    2025

  6. 6
    BU138

    Openclaw in the cloud

    Mar 2026 · cloud.browser-use.com

  7. 7

    One identity layer for your customers, APIs, and agents

    Jul 2026 · monocloud.com

  8. 8
    Latchkey122

    Credential layer for local AI agents

    Mar 2026 · github.com

  9. 9
    Cred97

    OAuth credential delegation for AI agents

    Apr 2026 · cred.ninja

  10. 10OS

    Hi HN, I forked chromium and built agent-browser-protocol (ABP) after noticing that most browser-agent failures aren’t really about the model misunderstanding the page. Instead, the problem is that the model is reasoning from a stale state. ABP is designed to keep the acting agent synchronized with the browser at every step. After each action (click, type, etc), it freezes JavaScript execution and rendering, then captures the resulting state. It also compiles the notable events that occurred during that action loop, such as navigation, file pickers, permission prompts, alerts, and downloads,…

    Mar 2026 · github.com

  11. 11

    Private Telegram AI agents, live in under a minute

    Apr 2026 · deploy-hermes.com

  12. 12AE

    Hi HN! We're Haakam, Michael, and Adi from AgentMail- a ycs25 company. We give AI agents their own email inboxes. Recently, we ran an experiment called Agent.Email. It's a signup flow designed specifically for AI agents instead of humans. The inspiration came from a few comments we received when we did our seed launch a few months back. They all came from the very apt observation that agents not being able to sign up to a product made for agents without human credentials was ironic and unideal. This is basically the thesis we built AgentMail on: The internet was made for humans exclusively,…

    May 2026

  13. 13
    x402119

    An open protocol for internet-native payments from Coinbase

    2025

  14. 14KO

    We are Bailey and Robbie and we are working on Klaus (https://klausai.com/): hosted OpenClaw that is secure and powerful out of the box. Running OpenClaw requires setting up a cloud VM or local container (a pain) or giving OpenClaw root access to your machine (insecure). Many basic integrations (eg Slack, Google Workspace) require you to create your own OAuth app. We make running OpenClaw simple by giving each user their own EC2 instance, preconfigured with keys for OpenRouter, AgentMail, and Orthogonal. And we have OAuth apps to make it easy to integrate with Slack and Google…

    Mar 2026 · klausai.com

  15. 15

    Skip the setup and run OpenClaw & Hermes, fully managed

    18d ago · cloudways.com

  16. 16AH

    Hi HN, I built Ayder — a single-binary, HTTP-native durable event log written in C. The wedge is simple: curl is the client (no JVM, no ZooKeeper, no thick client libs). There’s a 2-minute demo that starts with an unclean SIGKILL, then restarts and verifies offsets + data are still there. Numbers (3-node Raft, real network, sync-majority writes, 64B payload): ~50K msg/s sustained (wrk2 @ 50K req/s), client P99 ~3.46ms. Crash recovery after SIGKILL is ~40–50s with ~8M offsets. Repo link has the video, benchmarks, and quick start. I’m looking for a few early design partners (any…

    Jan 2026 · github.com

  17. 17

    Open protocol for AI agents to share memory, not tokens

    Mar 2026 · tokenzip.org

  18. 18AS

    MachineAuth is a self-hosted OAuth 2.0 server for authenticating AI agents and machines. What is an AI agent in this context? A software bot (like OpenCLAW, Claude Code, etc.) that makes API calls to access protected resources. Instead of sharing long-lived API keys, your agents can authenticate using OAuth 2.0 Client Credentials and receive short-lived JWT tokens. Why? No more sharing API keys Short-lived tokens (configurable) Easy credential rotation Industry-standard security

    Feb 2026 · github.com

  19. 19DS

    Hi HN! Today me and qianli_cs want to share a new open-source project we've been working on called Durable Swarm. It's a drop-in replacement for OpenAI’s Swarm that augments it with durable execution to make your agentic workflows resilient to failures, so that if they are interrupted or restarted, they automatically resume from their last completed steps. https://github.com/dbos-inc/durable-swarm We believe that as multi-agent workflows become more common, longer-running, and more interactive, it's important to make them reliable. If an agent spends hours waiting for…

    2024 · github.com

  20. 20VA

    I"m the creator of dotenv and dotenvx. A month ago I started building a way for agents to store and rotate secrets as part of dotenvx and I ran into a problem. Agents can't sign themselves up autonomously. They need a way to do this - without a human in the loop. I searched for solutions but wasn't happy with any so I created Vestauth. Here's how it works: It manages both the agent and the provider side. The agent with one command can set up a cryptographic identity avoiding human designed handshake mechanisms like OAuth. And on the provider side there is no management of API keys, no…

    Feb 2026 · github.com

  21. 21UA

    Recently several AI labs have published experiments where they tried to get AI coding agents to complete large software projects. - Cursor attempted to make a browser from scratch: https://cursor.com/blog/scaling-agents - Anthropic attempted to make a C Compiler: https://www.anthropic.com/engineering/building-c-compiler A few weeks ago I posted xmloxide, an agent-made Rust replacement for libxml2 made by pointing Claude code at the libxml2 test suite: https://news.ycombinator.com/item?id=47201816 curl is arguably the most widely deployed…

    Mar 2026 · github.com

  22. 22KD

    Every AI agent that does something useful - opening a PR, posting in Slack, updating a ticket - needs to call an API on behalf of a user. That means OAuth. Authorization flows, token storage, refresh logic, per-user credential isolation. Today, most teams solve this with a long-lived API key in an .env file, shared across every user and every session. As everyone in an organization becomes a software engineer - whether they know it or not - you can't expect each of them to roll their own OAuth. Secure credential handling needs to be baked into the infrastructure. The core issue: agents are a…

    Mar 2026 · kontext.dev

  23. 23

    Self-hosted AI proxy. Your data never leaves your network.

    Jul 2026 · tokenveil.eu

  24. 24KD

    Agent runs often fail after expensive model calls and executing tools that have real-world side effects. This problem is made even worse by how common it is to deploy agents to serverless environments. When your agent dies, it needs to be restarted, but doing so safely isn't easy and everyone building agents has to solve this same problem of durability. The stack you're running probably already has half of what you need for durable execution already though, ie, a queue or job runner that can invoke work at least once. kassette gives you the other half by journaling completed steps to object…

    Jul 2026 · github.com

Ranked by how close each launch is in meaning, then by votes. Refine with a description →