frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Are Wealth Taxes the Best Way to Tax the Ultra Rich?

https://www.nytimes.com/2025/10/31/business/economy/wealth-tax-france.html
1•marojejian•3m ago•1 comments

Why India's controversial 'cloud seeding' trial failed to make it rain

https://www.nature.com/articles/d41586-025-03555-x
1•bikenaga•8m ago•0 comments

Taple Grapes – Reviewed

https://www.drjohnfeltwell.com/grapes/
1•elsewhen•9m ago•0 comments

OpenAI Moves to Complete Potentially the Largest Theft in Human History

https://thezvi.substack.com/p/openai-moves-to-complete-potentially
3•paulpauper•10m ago•0 comments

Vacuum bricked after user blocks data collection – user mods it to run anyway

https://www.tomshardware.com/tech-industry/big-tech/manufacturer-issues-remote-kill-command-to-nu...
1•toomanyrichies•11m ago•0 comments

The giant basket case countries

https://www.noahpinion.blog/p/the-giant-basket-case-countries
2•paulpauper•11m ago•0 comments

Show HN: Please – local CLI that translates English –> tar

https://github.com/xhjkl/please
1•xhjkl•12m ago•0 comments

TorchTL – A minimal training loop abstraction for PyTorch

https://github.com/abdimoallim/torchtl
1•abdimoalim•12m ago•1 comments

Text rendering and effects using GPU-computed distances

https://blog.pkh.me/p/47-text-rendering-and-effects-using-gpu-computed-distances.html
1•ux•13m ago•0 comments

How I Learned to Stop Worrying and Love My Shitty Life

https://www.thedriftmag.com/how-i-learned-to-stop-worrying-and-love-my-shitty-life/
2•XzetaU8•14m ago•0 comments

The Fantasy of Assassination Culture

https://nymag.com/intelligencer/article/one-battle-after-another-american-assassination-culture.html
1•ironyman•15m ago•0 comments

Nvidia GPU Boost: My Stock RTX 5080 Is Consistently Beating Advertised

2•ArchitectAI•17m ago•2 comments

Ioannis Yannas invented artificial skin for treatment of burns–dies at 90

https://news.mit.edu/2025/professor-ioannis-yannas-dies-1027
2•bookofjoe•17m ago•0 comments

Ask HN: Where to Begin with "Modern" Emacs?

2•weakfish•23m ago•0 comments

Superrational Reasoning in the Prisoner's Dilemma with LLMs

https://www.expectedparrot.com/content/clajelli/superrationality-game-theory
1•john_horton•23m ago•0 comments

Black vultures attack, kill cattle, climate change one reason for spread north

https://phys.org/news/2025-10-black-vultures-cattle-climate-theyre.html
1•bikenaga•25m ago•0 comments

PostHog Elixir SDK is good

https://distantprovince.by/posts/posthog-elixir-sdk-is-good/
1•distantprovince•26m ago•0 comments

Understanding Debt: AI Coding at Warp Speed Without Flying Blind

https://blog.namar0x0309.com/2025/11/understanding-debt-ai-coding-at-warp-speed-without-flying-bl...
1•Elizer0x0309•27m ago•0 comments

Show HN: I made a Django admin panel for Redis

https://github.com/yassi/dj-redis-panel
1•yassi_dev•28m ago•0 comments

Programming Language Agnostic Naming Conventions

https://codedrivendevelopment.com/posts/programmatic-naming-conventions-guide
1•birdculture•31m ago•0 comments

Dynamic Scoring – bringing komidashi to chess

http://www.quadibloc.com/chess/ch0103.htm
1•xk3•31m ago•0 comments

Studies increasingly find links between air pollutants and dementia

https://www.nytimes.com/2025/11/01/health/alzheimers-dementia-air-pollution.html
26•quapster•41m ago•2 comments

Books for Robots (Only)

https://jmadden.org/pr-books-for-robots-only.html
1•the-mitr•42m ago•0 comments

Agentic AI Home Energy Management System: Residential Load Scheduling

https://arxiv.org/abs/2510.26603
1•simonpure•43m ago•0 comments

A curated list of global electrical grid maps, datasets and resources

https://github.com/open-energy-transition/Awesome-Electrical-Grid-Mapping
3•protontypes•44m ago•0 comments

Chat Control proposal fails again after public opposition

https://andreafortuna.org/2025/11/01/chat-control-proposal-fails-again-after-massive-public-oppos...
4•speckx•53m ago•0 comments

Show HN: Hacker News AI link reading list

https://ai-reading-list.pages.dev
1•ronbenton•55m ago•2 comments

WebAssembly (WASM) arch support for the Linux kernel

https://github.com/joelseverin/linux-wasm
2•marcodiego•57m ago•1 comments

10k-Year Earworm to Discourage Resettlement Near Nuclear Waste Repositories

https://genius.com/Emperor-x-10000-year-earworm-to-discourage-resettlement-near-nuclear-waste-rep...
1•8organicbits•1h ago•0 comments

'Soul-Crushing': Students Slam Harvard's Grade Inflation Report

https://www.thecrimson.com/article/2025/10/30/students-react-grading-report/
2•paulpauper•1h ago•0 comments
Open in hackernews

How are you handling identities for AI agents?

4•andylow•3h ago
I've been thinking about how we manage identities for AI agents and I’m curious how others are approaching it.

From what I’ve seen, many treat agents like microservices, giving them app-style identities, but that feels off to me. That model comes from Web2 application identity systems, and I’m not sure it fits the new context we’re entering.

As we move into the AI age, I suspect we’ll need new forms of identity and authorization specifically designed for agents, especially since existing frameworks like OIDC have some clear limitations.

Would love to hear your thoughts or see what others are experimenting with.

Comments

SebastianFarts•2h ago
The biggest problem I see with OIDC for agents is delegation—specifically, how one agent delegates authority to another agent acting on its behalf.

The microservice identity model breaks down when you have chains of agents, each potentially operating with different levels of autonomy and trust. OIDC was designed for human-to-service flows, not for dynamic agent-to-agent delegation where the context, scope, and risk profile can shift rapidly. I've been thinking we might need something closer to capability-based security or macaroons—where delegation is explicit, scoped, and auditable at each step. The key difference: instead of "who is this agent?" we should be asking "what specific action is this agent authorized to perform right now, and who in the chain vouches for it?"

I have been experimented with SPIFFE/SPIRE for agent identity or explored using verifiable credentials for delegation chains.

louis79_hacker•2h ago
You’re mixing models that don’t really fit together. SPIFFE isn’t designed for delegation at all—it’s a PKI-style system: centralized issuance, short-lived certs, and a single trust root per domain. It gives workloads authenticated identity, not transitive authority. There’s no notion of “A acts on behalf of B” baked into SPIFFE.

Verifiable Credentials (VCs) solve a different problem. They’re decentralized, flexible, and can express explicit delegation chains like “A asserts B may perform X.” That’s capability-style reasoning, not identity issuance.

Trying to bolt VC-style delegation onto SPIFFE breaks both systems’ assumptions:

SPIFFE’s hierarchical trust model doesn’t mesh with the web-of-trust VC model.

Its short-lived SVIDs don’t persist long enough for meaningful delegation chains.

SPIRE doesn’t understand VC proofs (JSON-LD, linked data signatures).

You’d need a whole external policy and capability layer to make it work.

SPIFFE nails workload identity; VCs and capability systems handle delegation and contextual authority. Mixing them because “they both do identity” misses the point—they live at different layers of the trust stack.

andylow•2h ago
what will be a better approach then?
louis79_hacker•2h ago
If you’re trying to make SPIFFE handle delegation, you’re forcing the wrong layer to do the wrong job. SPIFFE gives you workload identity and attestation, full stop. It’s PKI for machines — not a delegation framework.

A better model is to separate identity from capability:

SPIFFE/SPIRE handles who the agent is (short-lived, attested identity).

Capabilities / Macaroons / ZCAP-LD handle what that agent is allowed to do, and who delegated it.

OPA or Cedar enforces policy at runtime.

VCs come in only if you need cross-domain delegation (federated or multi-issuer trust).

So SPIFFE issues identities, and those identities mint or receive verifiable capabilities that describe explicit rights. You get composable, auditable delegation without breaking SPIFFE’s short-lived cert model or pretending it can do web-of-trust semantics.

Trying to bake delegation into SPIFFE itself is just reimplementing capability security badly.

andylow•2h ago
I do understand what you are saying, but in my head feels a bit too overcomplicated to just tell any developer doing AI agents to do all this stuff, there most be a cleaner way to do it.