frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Klaus – OpenClaw on a VM, batteries included

https://klausai.com/
57•robthompson2018•3h ago•39 comments

Show HN: I built a tool that watches webpages and exposes changes as RSS

https://sitespy.app
21•vkuprin•2h ago•11 comments

Show HN: Open-source browser for AI agents

https://github.com/theredsix/agent-browser-protocol
57•theredsix•4h ago•17 comments

Show HN: Vanilla JavaScript refinery simulator built to explain job to my kids

https://fuelingcuriosity.com/game.html
42•fuelingcurious•2h ago•21 comments

Show HN: Satellite imagery object detection using text prompts

https://www.useful-ai-tools.com/tools/satellite-analysis-demo/
8•eyasu6464•2d ago•3 comments

Show HN: I built an ISP infrastructure emulator from scratch with a custom vBNG

https://aether.saphal.me/dashboard/default
30•saphalpdyl•5h ago•4 comments

Show HN: Ink – Deploy full-stack apps from AI agents via MCP or Skills

https://ml.ink/
5•august-•3h ago•0 comments

Show HN: Rewriting Mongosh in Golang Using Claude

https://github.com/adaptive-scale/go-mongosh
7•debarshri•3h ago•1 comments

Show HN: OpenUI – A code-like rendering spec for Generative UI

https://www.openui.com/
6•1234567890123•3h ago•0 comments

Show HN: Loquix – Open-source Web Components for AI chat interfaces

https://github.com/loquix-dev/loquix
3•loookas•3h ago•1 comments

Show HN: StreamHouse – Open-source Kafka alternative

https://github.com/gbram1/streamhouse
2•gbram•4h ago•0 comments

Show HN: PayrollEngine – Open-source regulation-based payroll framework (.NET)

https://payrollengine.org/
4•payrollengine•5h ago•0 comments

Show HN: AgentSign – Open-source zero trust engine for AI agents

https://github.com/razashariff/agentsign
2•AskCarX•5h ago•2 comments

Show HN: Faster, cheaper Claude Code with local semantic code search via sqlite

https://www.ory.com/blog/ory-lumen-semantic-search-claude-code
8•luckyturkey•5h ago•2 comments

Show HN: How I topped the HuggingFace open LLM leaderboard on two gaming GPUs

https://dnhkng.github.io/posts/rys/
424•dnhkng•1d ago•109 comments

Show HN: DD Photos – open-source photo album site generator (Go and SvelteKit)

https://github.com/dougdonohoe/ddphotos
65•dougdonohoe•1d ago•19 comments

Show HN: Silly Faces

https://juliushuijnk.nl/silly/
3•juliushuijnk•1d ago•12 comments

Show HN: Joha – a free browser-based drawing playground with preset shape tools

https://joha-app.pages.dev/
13•smlee•3d ago•3 comments

Show HN: I Was Here – Draw on street view, others can find your drawings

https://washere.live
63•mrktsm__•1d ago•46 comments

Show HN: Ash, an Agent Sandbox for Mac

https://ashell.dev
13•amsha•1d ago•16 comments

Show HN: Modulus – Cross-repository knowledge orchestration for coding agents

https://modulus.so
13•dasubhajit•1d ago•5 comments

Show HN: Claude Code Token Elo

https://www.clauderank.com
8•ymaws•1d ago•5 comments

Show HN: Remotely use my guitar tuner

https://realtuner.online/
254•smith-kyle•4d ago•59 comments

Show HN: The Mog Programming Language

https://moglang.org
162•belisarius222•2d ago•82 comments

Show HN: kitty-graphics.el – Images, LaTeX and PDFs in terminal Emacs

https://github.com/cashmeredev/kitty-graphics.el
4•cashmere1337•11h ago•1 comments

Show HN: DenchClaw – Local CRM on Top of OpenClaw

https://github.com/DenchHQ/DenchClaw
141•kumar_abhirup•2d ago•125 comments

Show HN: VS Code Agent Kanban: Task Management for the AI-Assisted Developer

https://www.appsoftware.com/blog/introducing-vs-code-agent-kanban-task-management-for-the-ai-assi...
97•gbro3n•2d ago•51 comments

Show HN: A playable version of the Claude Code Terraform destroy incident

https://www.youbrokeprod.com
24•cdnsteve•1d ago•10 comments

Show HN: A modern React onboarding tour library

https://github.com/btahir/react-tourlight
11•bilater•1d ago•2 comments

Show HN: 2D RPG base game client recreated in modern HTML5 game engine with AI

https://github.com/ErkoKnoll/helbreath-base-game
6•erkok•23h ago•4 comments
Open in hackernews

Show HN: Loquix – Open-source Web Components for AI chat interfaces

https://github.com/loquix-dev/loquix
3•loookas•3h ago

Comments

loookas•3h ago
Hi HN,

The backend side of AI agents is getting commoditized fast — LangChain, CrewAI, Vercel AI SDK, dozens of others. The frontend has options too, but they're either React-only (CopilotKit, Vercel AI SDK), full applications you can't decompose (Chatbot UI), or missing AI-specific controls beyond basic chat. If you're not on React, or you need model selectors, parameter panels, generation controls — you're mostly on your own.

I think there's a missing layer: framework-agnostic UI components that connect to any of these backends, so you can go from agent to working product without rebuilding the same chat UI for the hundredth time. Loquix is the first step. It's 35 Web Components (Lit + TypeScript) covering the full surface — not just messages and input, but generation controls with pause/resume, inline editing, drag-and-drop attachments, model/mode selectors, parameter panels, template pickers, welcome screens.

Web Components specifically because this layer shouldn't dictate your stack. These work in vanilla JS, React, Vue, whatever. Everything communicates through composed custom events, so wiring up any backend is straightforward. A few things I'm happy with: streaming handles pause/resume properly (not just stop); 100+ CSS variables for theming with zero style leakage; and real accessibility — ARIA, keyboard nav, live regions, axe-core validation. 896 tests, TypeScript strict, MIT licensed.

Next up: backend provider adapters — plug in your LangChain chain or Vercel AI stream and have the UI just work.

Repo: https://github.com/loquix-dev/loquix

What's the biggest pain point you're hitting right now when building AI chat UIs?