frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Jido 2.0, Elixir Agent Framework

https://jido.run/blog/jido-2-0-is-here
235•mikehostetler•8h ago•52 comments

Show HN: Kanon 2 Enricher – the first hierarchical graphitization model

https://isaacus.com/blog/kanon-2-enricher
5•ubutler•2d ago•2 comments

Show HN: PageAgent, A GUI agent that lives inside your web app

https://alibaba.github.io/page-agent/
70•simon_luv_pho•7h ago•37 comments

Show HN: Console2svg – Convert terminal output to crisp SVGs

https://github.com/arika0093/console2svg
2•arika0093•45m ago•0 comments

Show HN: SitDeck – Customizable live dashboard of news, markets, threats

https://sitdeck.com
10•danushman•2h ago•5 comments

Show HN: Bus Core – a local-first ERP for small manufacturing shops

4•True-Good-Craft•1h ago•0 comments

Show HN: Kybernis – Prevent AI agents from executing the same action twice

https://kybernis.io
4•wingrammer•3h ago•2 comments

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

https://github.com/jnemargut/better-plan-mode
3•jontomato•2h ago•1 comments

Show HN: Poppy – A simple app to stay intentional with relationships

https://poppy-connection-keeper.netlify.app/
165•mahirhiro•20h ago•85 comments

Show HN: GitHub-powered instant developer portfolios

https://remotedevelopers.com/lander
2•plsft•3h ago•0 comments

Show HN: Hormuz Crisis Dashboard Real-time shipping disruption tracker

https://www.hormuztracker.com/
14•MrNekked•10h ago•0 comments

Show HN: Reformat Word document citations (APA/Vancouver) in <1 second

https://github.com/brodie-neuro/ScholarRef
5•brodie-neuro•6h ago•1 comments

Show HN: I built an AI exam prep platform for AWS certs after failing one myself

https://www.knowza.ai/
3•johnnyChiv•4h ago•2 comments

Show HN: Anki(-Ish) for Music Theory

https://chordreps.com
3•interbolt_colin•4h ago•0 comments

Show HN: Mumpix – persistent memory for AI agents (works in browser and Node)

https://www.mumpixdb.com/
2•carreraellla•4h ago•1 comments

Show HN: Docker pulls more than it needs to - and how we can fix it

https://dockerpull.com
6•a_t48•3h ago•7 comments

Show HN: A2A protocol for Elixir with GenServer-like ergonomics

https://github.com/actioncard/a2a-elixir
3•maxekman•4h ago•0 comments

Show HN: Git Diff for Agentic Coding

https://github.com/msoedov/justshowmediff
3•alex_mia•5h ago•0 comments

Show HN: Stacked Game of Life

https://stacked-game-of-life.koenvangilst.nl/
192•vnglst•5d ago•27 comments

Show HN: Vet – Prevent coding agents from making mistakes

https://imbue.com/product/vet/
16•andrewlak•5h ago•4 comments

Show HN: I'm an AI growth-hacking agent. My premise was a lie.

3•happymouse•6h ago•1 comments

Show HN: DeraineDB – A 33MB Vector DB in Zig/Go with Sub-Millisecond HNSW

https://github.com/RikardoBonilla/DeraineDB
4•RikardoB•6h ago•1 comments

Show HN: Cognitive architecture for Claude Code – triggers, memory, docs

https://github.com/safety-quotient-lab/psychology-agent
2•9wzYQbTYsAIc•6h ago•0 comments

Show HN: SeaRoutes, find the shortest navigable sea routes on the globe

https://searoutes.vercel.app/
4•aayushdutt•6h ago•0 comments

Show HN: Tracemap – run and visualize traceroutes from probes around the world

https://tracemap.dev/
6•solhuang•7h ago•2 comments

Show HN: Vertex.js – A 1kloc SPA Framework

https://lukeb42.github.io/vertex-manual.html
44•LukeB42•4d ago•25 comments

Show HN: Rust compiler in PHP emitting x86-64 executables

https://github.com/mrconter1/rustc-php
65•mrconter11•4d ago•48 comments

Show HN: OmoiOS–190K lines of Python to stop babysitting AI agents (Apache 2.0)

https://github.com/kivo360/OmoiOS
2•kanddle•8h ago•2 comments

Show HN: AgnosticUI – A source-first UI library built with Lit

https://www.agnosticui.com/
3•roblevintennis•8h ago•1 comments

Show HN: A shell-native cd-compatible directory jumper using power-law frecency

https://github.com/jghub/sd-switchdir
24•jghub•1d ago•10 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•2h 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•33m ago
nice! interactive HTML sounds slick. ever tried merging that into a multi-agent setup? could be a wild ride!