Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Alibaba Contributing $3M USD to Omarchy to Work on Making "Ideal" Agentic OS(phoronix.com)
    discuss
  2. Too much or too little sleep may make your body age faster(sciencedaily.com)
    discuss
  3. A gardening game that takes 48 real days to grow one zucchini(ihaveagarden.com)
    discuss
  4. Implementing the esoteric "Brainfuck" language in Carp Lisp [video](youtube.com)
    discuss
  5. Capita lacks the 'capacity and ability' to run GP pension scheme, BMA tells MPs(computerweekly.com)
    discuss
  6. Notes from the SF Safety Scene(12gramsofcarbon.com)
    discuss
  7. The Economics of Open-Weight Inference(ornn.com)
    discuss
  8. Texas police department ordered to close for failing to provide public benefit(dallasnews.com)
    discuss
  9. The draft AI code of conduct forbids me from saying 'I don't know'(ilands.ai)
    discuss
  10. Time to Spend Tokens or Meditate?(inmve.github.io)
    discuss
  11. It's the Fun(scottsumner.substack.com)
    discuss
  12. SEO Content Brief: What to Include for Better Rankings(briefiq.io)
    discuss
  13. Expat 2.8.5 released, fixes vulnerability CVE-2026-93990(hartwork.org)
    discuss
  14. A First Futamura Projection(veitheller.de)
    discuss
  15. Show HN: IntelliChat minimalist, open-source UI for local and cloud AI(github.com/intelligentnode)
    discuss
  16. Differential Equations, an Interactive Introduction(chapterpal.com)
    discuss
  17. A Simple Guide to Calm UI(maxschmitt.me)
    1comments
  18. Anthropic at $2T isn't far-fetched(ft.com)
    1comments
  19. Firedrill: Stateful tool simulation for AI agents(github.com/firedrill-tools)
    discuss
  20. Carefully Applied: Resume and LinkedIn Rewriting(carefullyapplied.com)
    discuss
  21. iPhone 15 Pro and 16 Settlement for Apple Intelligence taking claims – US ONLY(smartphoneaisettlement.com)
    discuss
  22. Nvidia Isaac ROS 5.0: agentic, open-source robotics development(nvidia.com)
    discuss
  23. Toadstools and Toxins(aeon.co)
    discuss
  24. Remote Code Execution (RCE) in a DoD Website(hackerone.com)
    1comments
  25. People Training OpenAI's AI Fired for Using AI to Train the AI(404media.co)
    discuss
  26. Worker Previews: isolated preview for every change your agent makes(cloudflare.com)
    discuss
  27. Websites that read in the terminal: the TermWeb standard(andros.dev)
    discuss
  28. Devin AI and SWE-2 First Impressions(catalins.tech)
    discuss
  29. George Lucas Museum Review: A Bold Throwback to Gilded Age Patronage(hollywoodreporter.com)
    discuss
  30. AI Is Antithetical to Learning(jola.dev)
    1comments

Show HN: ScopeTrail – audit receipts for multi-hop agent delegation

1 pointsby 49m agogithub.com
0 comments
With the growth of the agentic economy and the ability of agents to manage wallets and make payments it's critical that we have a mechanism to audit their payment behavior. And to complicate matters, agents are invoking subagents to work faster.

When an agent hands work to another agent, OAuth Token Exchange (RFC 8693) nests an "act" claim at each hop. Those claims are informational, not enforceable. Each actor in the process (e.g., your identity manager, your gateway, each agent) logged its activity — and no artifact anywhere answers "did this action, three steps from the user, stay inside what the user actually authorized?" Cloudflare (Wallets, and Cloudflare OS's Gatekeepers) enforces scope at call time against its own ledger, and Block's Buzz mints an owner→agent authorization a third party can verify offline without calling Block — ScopeTrail is the layer above both, proving scope actually attenuated across every hop and returning a verdict on the action at the end.

ScopeTrail is a TypeScript library (Apache 2.0) that lives above the multi-agent transaction and documents the full chain by: - Building and validating the chain from raw tokens - Minting and signing a receipt with Ed25519 over JCS (RFC 8785), and - Storing the receipt in an AT Protocol PDS.

The user can then retrieve and verify the receipt including the hop and scope if the agents went beyond their remit.

Raw tokens are never stored — only SHA-256 digests. Verification is stateless: no callback to the issuer is needed at verify time, no vendor in the loop.

You can try it now! Verify a live receipt by:

  curl -sO https://scopetrail.github.io/.well-known/jwks.json
  npx -y --package=@scopetrail/core view-receipt \
    at://did:plc:bty3gmskhla7rwblq5zl5jm5/dev.scopetrail.auditReceipt/00MSQDN0UT747ADDB2C4BB25420974 \
    --jwks jwks.json
This view-receipt call resolves the DID, fetches the receipt, checks its Ed25519 signature against the JWKS downloaded before the call, and prints the delegation chain.

The next milestone will be mint-by-default inside an open-source MCP gateway. If you work on gateways, an agent platform, or an identity product, I'd like to hear where this breaks.

A quiet thread, for now.Start the conversation on HN ↗