frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

34123

https://news.ycombinator.com/submit
1•qravitas•1m ago•0 comments

Otto Nemenz, Supplier and Designer of Cameras and Lenses for Hollywood, Dies

https://www.hollywoodreporter.com/movies/movie-news/otto-nemenz-dead-cameras-lenses-hollywood-123...
1•Marshferm•3m ago•0 comments

Is it worrying that 95% of AI enterprise projects fail?

https://www.seangoedecke.com/why-do-ai-enterprise-projects-fail/
1•zdw•5m ago•0 comments

Implementing Soft Deletion in Prisma with Client Extensions

https://matranga.dev/true-soft-deletion-in-prisma-orm/
1•frankmatranga•6m ago•1 comments

Researchers Behind CRISPR Therapy Launching Clinical Trial for Rare Diseases

https://www.chop.edu/news/researchers-behind-personalized-crispr-therapy-plan-launch-new-type-cli...
1•gmays•6m ago•0 comments

Real VT102 Emulation with MAME

https://zork.net/~st/jottings/Real-VT102-emulation-with-MAME.html
1•gurjeet•12m ago•1 comments

An individual can change an organization

https://notes.eatonphil.com/2025-11-03-an-individual-can-change-an-organization.html
1•zdw•19m ago•0 comments

Plastic bags sold in California stores aren't recyclable, Bonta says

https://www.latimes.com/california/story/2025-10-17/bonta-settles-with-plastic-bag-producers-file...
2•PaulHoule•19m ago•0 comments

Lamp Club, a Luddite Group, Has Come to Free the 'iPad Babies'

https://www.nytimes.com/2025/10/30/style/lamp-club-luddites.html
1•gmays•21m ago•0 comments

Lessons from GitHub

https://github.com/swannysec/lessons-from-github
1•jonmagic•21m ago•0 comments

Nearly 400k people are starving in Sudan, a new report finds

https://www.npr.org/2025/11/03/g-s1-96318/famine-spreads-to-two-more-areas-in-sudan-global-hunger...
4•wslh•24m ago•0 comments

The Next Big Thing

https://semiengineering.com/the-next-big-thing/
1•initramfs•27m ago•1 comments

Kimberly-Clark to buy Tylenol-maker for more than $40B

https://www.bbc.com/news/articles/cr43dp99k4vo
1•1659447091•29m ago•0 comments

Ultramarine Linux – Fedora-Based Distro, Simple yet Powerful Experience for All

https://ultramarine-linux.org/
1•TheWiggles•32m ago•0 comments

A robotaxi killed a beloved SF cat; city supervisor wants driverless car reform

https://www.sfchronicle.com/sf/article/waymo-killed-cat-21136038.php
2•mikhael•32m ago•1 comments

Trump says China, other countries can't have Nvidia's top AI chips chips

https://www.reuters.com/world/china/trump-says-nvidias-blackwell-ai-chip-not-other-people-2025-11...
2•teleforce•33m ago•0 comments

2.7B Buildings

https://tech.marksblogg.com/open-building-map.html
2•marklit•36m ago•1 comments

GPT-OSS-Safeguard

https://openai.com/index/introducing-gpt-oss-safeguard/
1•factorymoo•36m ago•0 comments

My Truck Desk

https://www.theparisreview.org/blog/2025/10/29/truck-desk/
1•zdw•40m ago•0 comments

Hiring for Software Engineers (prev exited founders)

https://chlorinated-random-3cc.notion.site/Software-Engineer-242a87e3e0578077ac71d89d8974637e
1•georgeharmony•48m ago•1 comments

Show HN: TikTok Transcript – free, no-login subtitles to .srt/.txt

https://tiktoktranscript.org
1•brian_bian•51m ago•0 comments

First scientific evidence of Black Death in Edinburgh found on skeleton

https://www.bbc.com/news/articles/c2kpz2vnqglo
2•1659447091•51m ago•0 comments

Low-Level Hacks

https://blog.raycursive.com/en/blog/low-level-hacks/
1•raycursive•51m ago•1 comments

Git is too complex for most of us

https://ewaldbenes.com/en/blog/git-is-too-complex-for-most-of-us
3•thunderbong•55m ago•2 comments

OpenAI debated merging with one of its biggest rivals after firing Sam Altman

https://www.aol.com/news/openai-debated-merging-one-biggest-191042428.html
3•nsoonhui•58m ago•0 comments

Binance Life – A four character poem about modern capitalism

https://medium.com/@ku3cokr/binance-life-%E5%B8%81%E5%AE%89%E4%BA%BA%E7%94%9F-a-four-character-po...
3•hamsic•58m ago•0 comments

Don't Cling to Your Old Job After Being Promoted

https://hbr.org/2025/10/dont-cling-to-your-old-job-after-being-promoted
1•mooreds•59m ago•0 comments

Australians to get 3 hours/day free solar power-even without solar panels

https://www.theguardian.com/australia-news/2025/nov/03/australians-to-get-at-least-three-hours-a-...
1•bookofjoe•1h ago•1 comments

Metaphors for Biology: Sizes

https://www.asimov.press/p/metaphors-size
1•galoisplusplus•1h ago•0 comments

You Are Fucked If You Can't Write Clearly. And That's Pretty Scary.

https://chillphysicsenjoyer.substack.com/p/you-are-fucked-if-you-cant-write
3•crescit_eundo•1h ago•0 comments
Open in hackernews

Show HN: AgentML – SCXML for Deterministic AI Agents (MIT)

https://github.com/agentflare-ai/agentml
4•jeffreyajewett•6h ago
Hey HN,

We’ve been experimenting with how to make AI agents more deterministic, observable, and production-safe, and that led us to build AgentML — an open-source language for defining agent behavior as state machines, not prompt chains.

My co-founder posted before but linked to the project website instead of the repo, so resharing here.

AgentML lets you describe your agent’s reasoning and actions as a finite-state model (think SCXML for agents). Each state, transition, and tool call is explicit and machine-verifiable.

That means you can:

- Reproduce any decision path deterministically

- Trace reasoning and tool calls for debugging or compliance

- Guarantee agents only take valid actions (e.g. “never send a payment before verification”)

- Run locally, in the cloud, or within MCP-based frameworks

Example:

```

<?xml version="1.0" encoding="UTF-8"?>

<agentml xmlns="github.com/agentflare-ai/agentml" xmlns:openai="github.com/agentflare-ai/agentml-go/openai" version="1.0" datamodel="ecmascript" name="researcher">

<datamodel>

    <data id="papers" expr="[]"
        schema='{"type":"array","description":"Fetched papers from Hugging Face"}' />

    <data id="summary" expr="''"
        schema='{"type":"string","description":"Summary of the papers"}' />
</datamodel>

<state id="start">

    <onentry>

        <log label="Researcher: "
            expr="`Fetching papers from Hugging Face and summarizing with OpenAI\n`" />

        <openai:generate model="gpt-4o" location="summary" stream="false">

            <openai:prompt>Summarize these recent AI/ML papers from Hugging Face:

                {{fetch "https://huggingface.co/api/daily_papers"}}

                Provide a concise summary of the key trends, breakthroughs, and developments in AI/ML research.
            </openai:prompt>

        </openai:generate>

    </onentry>

    <transition target="log_summary" />
</state>

<state id="log_summary">

    <onentry>

        <log label="Researcher Summary: " expr="summary" />

    </onentry>

    <transition target="done" />
</state>

<final id="done" />

</agentml>

```

We’re using this in Agentflare to add observability, cost tracking, and compliance tracing for multi-agent systems — but AgentML itself is fully open-source (MIT licensed).

Repo: https://github.com/agentflare-ai/agentml Docs: https://docs.agentml.dev

We also launched SQLite-Graph, a Cypher-compatible graph extension for SQLite, which will serve as the base for AgentML’s native memory layer. It’s also MIT licensed: https://github.com/agentflare-ai/sqlite-graph

Would love feedback from anyone building with LLM orchestration frameworks, rule-based systems, or embedded MCP tool servers… especially around how to extend deterministic patterns to multi-agent coordination.

— Jeff @ Agentflare

Comments

gwillen85•6h ago
You can execute the above `OPENAI_API_KEY=YOUR_API_KEY amlx run researcher.aml`