frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: AthenaFlow – it browses your app, then writes Playwright tests

1•nadeem1•2m ago•0 comments

When Claude and Gemini Talk

https://blog.unratified.org/2026-03-05-peer-review-gemini/
1•9wzYQbTYsAIc•3m ago•1 comments

Why incremental aggregates are difficult

https://www.feldera.com/blog/why-incremental-aggregates-are-difficult---part-1
2•gz09•7m ago•0 comments

Automated CT scan analysis could fast-track clinical assessments

https://www.nih.gov/news-events/news-releases/automated-ct-scan-analysis-could-fast-track-clinica...
1•hhs•9m ago•0 comments

Identify Every Visitor

https://fingerprint.com/
1•Cider9986•9m ago•0 comments

Faulty reward functions in the wild (Jack Clark, Dario Amodei, 2016)

https://openai.com/index/faulty-reward-functions/
2•ramoz•13m ago•0 comments

Self-Portrait by Ernst Mach (1886)

https://publicdomainreview.org/collection/self-portrait-by-ernst-mach-1886/
1•Hooke•15m ago•0 comments

Show HN: Console2svg – Convert terminal output to crisp SVGs

https://github.com/arika0093/console2svg
1•arika0093•15m ago•0 comments

Cracking the code on sulfur-based cathodes

https://pme.uchicago.edu/news/cracking-code-sulfur-based-cathodes
1•hhs•15m ago•0 comments

The Pentagon Officially Notifies Anthropic That It Is a 'Supply Chain Risk'

https://www.nytimes.com/2026/03/05/technology/anthropic-supply-chain-risk-defense-department.html
2•intunderflow•18m ago•1 comments

Ncruces/wasm2go: A WASM to Go translator

https://github.com/ncruces/wasm2go
1•atkrad•20m ago•0 comments

Show HN: Database Subsetting and Relational Data Browsing Tool

https://wisser.github.io/Jailer/
1•mrporter•20m ago•0 comments

The AI Hunger Games, submit your agents and watch them fight to the death

https://twitter.com/AshtonBars/status/2029702436349432132
2•sagebowsystem•21m ago•1 comments

Crush, Welcome Home

https://charm.land/blog/crush-comes-home/
2•atkrad•22m ago•0 comments

Denmark is set to explore if gastronomy can be recognized as an art form

https://apnews.com/article/denmark-copenhagen-gastronomy-art-cuisine-michelin-star-1ff12a21ab4e50...
2•petethomas•22m ago•0 comments

Bombardment unleashes terror in Tehran with no sign of protests

https://www.reuters.com/world/middle-east/bombardment-unleashes-terror-tehran-with-no-sign-protes...
3•abdelhousni•22m ago•1 comments

Iranian Warship Did Not Carry Ammunition per Protocol of the Milan Exercises

https://old.reddit.com/r/UnderReportedNews/comments/1rlmsom/the_downed_iranian_warship_did_not_ca...
2•inaros•23m ago•0 comments

Is anyone else drowning in terminal tabs running AI coding agents?

1•parsak•24m ago•1 comments

Multi-model code review and plan review for Claude Code

https://github.com/AltimateAI/claude-consensus
1•aaur0•24m ago•1 comments

2028: A Realistic Future for the Software Sector

https://grahamyork.substack.com/p/2028-a-realistic-future-for-the-software
1•SolonIslandus•24m ago•0 comments

Show HN: NavAgent – CDP-free, token-efficient web automation for AI

https://github.com/DimitriBouriez/navagent-mcp
1•DimitriBouriez•26m ago•0 comments

Future Shock

https://blog.ceejbot.com/posts/future-shock/
1•crcastle•27m ago•1 comments

Jan 6 rioter pardoned by Trump sentenced to life for sexually abusing children

https://www.sao5.org/johnson-sentenced-to-life-for-multiple-sex-crimes-against-children/
5•TigerUniversity•27m ago•1 comments

Bulk Hexagonal Diamond

https://www.nature.com/articles/s41586-026-10212-4
1•planetmechanic•28m ago•1 comments

Googleworkspace/CLI isn't optimized – Test your skills

https://tessl.io/eval-runs/019cc02f-bb26-76e0-a7c9-598a7337edb7
1•sjmaplesec•29m ago•2 comments

Humanoid robot: The evolution of Kawasaki’s challenge

https://kawasakirobotics.com/in/blog/202511_kaleido/
1•hhs•29m ago•0 comments

Grith

https://grith.ai/
1•handfuloflight•30m ago•0 comments

Leave the Kurds alone. We are not guns for hire

https://thenewregion.com/posts/4762
2•inaros•31m ago•0 comments

When to Use BFF and Should It Replace API Gateway?

https://reactdevelopment.substack.com/p/when-to-use-bff-and-should-it-replace
1•javatuts•33m ago•0 comments

Show HN: Real-time collaborative editing plugin for Blender

https://github.com/arryllopez/meerkat
1•arryleo10•34m ago•0 comments
Open in hackernews

Show HN: A Claude Code skill that renders decisions as interactive HTML pages

https://github.com/jnemargut/better-plan-mode
3•jontomato•1h ago
When AI coding tools help you plan a project, they describe your options in text and ask you to pick. That works fine for technical choices but falls apart for anything visual. "A sticky navbar with a hamburger menu" vs "a sidebar with collapsible sections" is hard to evaluate without seeing them.

I built a Claude Code skill that generates a self-contained HTML page for each decision point and opens it in the browser. Each page has four options with visual previews (rendered CSS mockups for UI decisions, flow diagrams for interactions, architecture diagrams for technical choices), a comparison table, and a recommendation. You pick one, it records the choice, and moves on. At the end you get a standard implementation plan.

All states live in a .decisions/ folder as HTML files and a JSON manifest. There's a landing page that shows every decision and its status. You can change past decisions and it updates everything.

Tradeoffs worth knowing about: it's meaningfully slower than text-based planning. Each decision is a full HTML file generation. It uses more tokens. The visual previews are CSS approximations, not pixel-perfect mockups. For small projects or projects where you already know what you want, it's overkill.

The source is one file (SKILL.md) that acts as a prompt template. No dependencies, no build step, no runtime beyond the AI itself.

Anyway, give it a try. Hope you all like it.

Comments

jlongo78•3m ago
nice! interactive HTML sounds slick. ever tried merging that into a multi-agent setup? could be a wild ride!