frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Turbolite – a SQLite VFS serving sub-250ms cold JOIN queries from S3

https://github.com/russellromney/turbolite
19•russellthehippo•57m ago•5 comments

Show HN: Layerleak – Like Trufflehog, but for Docker Hub

https://github.com/Brumbelow/layerleak
4•brumbelow•29m ago•1 comments

Show HN: Orloj – agent infrastructure as code (YAML and GitOps)

https://github.com/OrlojHQ/orloj
10•An0n_Jon•14h ago•6 comments

Show HN: Burn Room – End-to-End Encrypted Ephemeral SSH Chat

https://burnroom.chat
2•joematrix•43m ago•0 comments

Show HN: Optio – Orchestrate AI coding agents in K8s to go from ticket to PR

https://github.com/jonwiggins/optio
71•jawiggins•1d ago•54 comments

Show HN: A plain-text cognitive architecture for Claude Code

https://lab.puga.com.br/cog/
134•marciopuga•20h ago•45 comments

Show HN: Vizier – A physical design advisor for DuckDB

4•habedi0•3h ago•0 comments

Show HN: Micro – apps without ads, algorithms or tracking

https://micro.mu
6•asim•3h ago•6 comments

Show HN: NerdFlair, a Claude Code QoL Plugin

https://github.com/jcraigk/nerdflair
2•block_dagger•4h ago•1 comments

Show HN: Wit – Stops merge conflicts when multiple AI agents edit the same repo

https://github.com/amaar-mc/wit
6•amaarc•4h ago•2 comments

Show HN: SentinelGate – Access control for AI agents (open-source MCP proxy)

https://github.com/Sentinel-Gate/Sentinelgate
6•andreadev•5h ago•0 comments

Show HN: I took back Video.js after 16 years and we rewrote it to be 88% smaller

https://videojs.org/blog/videojs-v10-beta-hello-world-again
631•Heff•2d ago•138 comments

Show HN: Full graphical desktop running on a 128MB VPS Alpine+XRDP+WindowMaker

https://tierhive.com/blog/tierhive-howto/alpine-minimal-remote-desktop-on-a-128mb-vps
6•backtogeek•6h ago•3 comments

Show HN: Breathe-Memory – Associative memory injection for LLMs (not RAG)

https://github.com/tkenaz/breathe-memory
5•mvyshnyvetska•6h ago•1 comments

Show HN: Mantyx – A platform to orchestrate, manage, and share your agents

https://mantyx.io/
6•grillorafael•12h ago•0 comments

Show HN: Paseo – Open-source coding agent interface (desktop, mobile, CLI)

https://github.com/getpaseo/paseo
9•boudra•6h ago•0 comments

Show HN: Yoink – Spotify to lossless with full metadata, self-hostable, ad-free

https://yoinkify.com
48•chasefrazier•1d ago•33 comments

Show HN: AI Roundtable – Let 200 models debate your question

https://opper.ai/ai-roundtable/
109•felix089•2d ago•84 comments

Show HN: Cloneify – AI assistant that runs your business from WhatsApp/Slack

https://cloneify.ai
3•ad-tech•7h ago•1 comments

Show HN: ProofShot – Give AI coding agents eyes to verify the UI they build

https://github.com/AmElmo/proofshot
154•jberthom•2d ago•96 comments

Show HN: DuckDB community extension for prefiltered HNSW using ACORN-1

https://github.com/cigrainger/duckdb-hnsw-acorn
89•cigrainger•1d ago•7 comments

Show HN: Email.md – Markdown to responsive, email-safe HTML

https://www.emailmd.dev/
371•dancablam•2d ago•94 comments

Show HN: Pgsemantic – Point at your Postgres DB, get vector search instantly

https://github.com/varmabudharaju/pgsemantic
13•varmabudharaju•1d ago•0 comments

Show HN: Alexandria, free open source news aggregation and classification suite

https://github.com/hephaistos-io/alexandria
5•RicDan•9h ago•0 comments

Show HN: Robust LLM extractor for websites in TypeScript

https://github.com/lightfeed/extractor
63•andrew_zhong•15h ago•43 comments

Show HN: Cq – Stack Overflow for AI coding agents

https://blog.mozilla.ai/cq-stack-overflow-for-agents/
221•peteski22•3d ago•98 comments

Show HN: Gemini can now natively embed video, so I built sub-second video search

https://github.com/ssrajadh/sentrysearch
426•sohamrj•2d ago•108 comments

Show HN: Gridland: make terminal apps that also run in the browser

https://www.gridland.io/
104•rothific•2d ago•13 comments

Show HN: Hooky – A lightweight HTTP webhook server written in Go

https://github.com/virtuallytd/hooky
2•virtuallytd•10h ago•0 comments

Show HN: Automate your workflow in plain English

https://www.operator23.com/
11•Mrakermo•22h ago•7 comments
Open in hackernews

Show HN: Orloj – agent infrastructure as code (YAML and GitOps)

https://github.com/OrlojHQ/orloj
10•An0n_Jon•14h ago
Hey HN, we're Jon and Kristiane, and we're building Orloj (https://orloj.dev), an open-source (Apache 2.0) orchestration runtime for multi-agent AI systems. You define agents, tools, policies, and workflows in declarative YAML manifests, and Orloj handles scheduling, execution, governance, and reliability.

We built this because running AI agents in production today looks a lot like running containers before Kubernetes: ad-hoc scripts, no governance, no observability, no standard way to manage the lifecycle of an agent fleet. Everyone we talked to was writing the same messy glue code to wire agents together, and nobody had a good answer for "which agent called which tool, and was it supposed to?"

Orloj treats agents the way infrastructure-as-code treats cloud resources. You write a manifest that declares an agent's model, tools, permissions, and execution limits. You compose agents into directed graphs — pipelines, hierarchies, or swarm loops.

The part we're most excited about is governance. AgentPolicy, AgentRole, and ToolPermission are evaluated inline during execution, before every agent turn and tool call. Instead of prompt instructions that the model might ignore, these policies are a runtime gate. Unauthorized actions fail closed with structured errors and full audit trails. You can set token budgets per run, whitelist models, block specific tools, and scope policies to individual agent systems.

For reliability, we built lease-based task ownership (so crashed workers don't leave orphan tasks), capped exponential retry with jitter, idempotent replay, and dead-letter handling. The scheduler supports cron triggers and webhook-driven task creation.

The architecture is a server/worker split. orlojd hosts the API, resource store (in-memory for dev, Postgres for production), and task scheduler. orlojworker instances claim and execute tasks, route model requests through a gateway (OpenAI, Anthropic, Ollama, etc.), and run tools in configurable isolation — direct, sandboxed, container, or WASM. For local development, you can run everything in a single process with orlojd --embedded-worker --storage-backend=memory.

Tool isolation was important to us. A web search tool probably doesn't need sandboxing, but a code execution tool should run in a container with no network, a read-only filesystem, and a memory cap. You configure this per tool based on risk level, and the runtime enforces it.

We also added native MCP support. You register an MCP server (stdio or HTTP), Orloj auto-discovers its tools, and they become first-class resources with governance applied. So you can connect something like the GitHub MCP server and still have policy enforcement over what agents are allowed to do with it.

Three starter blueprints are included (pipeline, hierarchical, swarm-loop).

Docs: https://docs.orloj.dev

We're also building out starter templates for operational workflows where governance really matters. First on the roadmap: 1. Incident response triage, 2. Compliance evidence collector, 3. CVE investigation pipeline, and 4. Secret rotation auditor. We have 20 templates in mind and community contributions are welcome.

We're a small team and this is v0.1.0, so there's a lot still on the roadmap — hosted cloud, compliance packaging, and more. But the full runtime is open source today and we'd love feedback on what we've built so far. What would you use this for? What's missing?

Comments

inglor_cz•1h ago
Orloj, btw, is Czech for "Astronomical Clock".

https://en.wikipedia.org/wiki/Prague_astronomical_clock

And it comes from mutated Latin word "Horologium".

An0n_Jon•54m ago
Yes! We visited The Prague Orloj 2 years ago and it's amazing engineering. That's why we named it after it, for how it's coordinating and orchestrating so many complex mechanisms. (for anyone wondering it's pronounced Or-Loy)
hackyhacky•21m ago
You should check out the Olomouc orloj [1]. Equally technically interesting as the Prague one, but with the added "benefit" of having been adjusted for political correctness under the Communist regime.

[1] https://en.wikipedia.org/wiki/Olomouc_astronomical_clock

graphememes•54m ago
Feels like I would be taking on a lot of debt and maintainability I may not need
An0n_Jon•47m ago
It depends on what you're trying to build to be honest. For simple tasks Orloj can be a little overkill but it really starts shining when you are trying to setup large task flows that need many agents/tools/policies. Working with Terraform/Kubernettes for years gave a lot of the inspiration for the gitops side of things which we think fits naturally with how agent systems work.
ColinEberhardt•3m ago
Looks interesting. Quick question - one of the biggest challenges with agentic systems in non-deterministic behaviour. Does this framework do anything to address this? Does it help test and validate agent behaviour?