frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

How was the Universal Pictures 1936 opening logo created?

https://movies.stackexchange.com/questions/128020/how-was-the-universal-pictures-1936-opening-logo-created
223•azeemba•4h ago•29 comments

MacBook Pro Insomnia

https://manuel.bernhardt.io/posts/2025-07-24-macbook-pro-insomnia
58•speckx•1h ago•35 comments

Introduction to Computer Music

https://cmtext.com/
161•hecanjog•4h ago•31 comments

I tried Servo, the undercover web browser engine made with Rust

https://www.spacebar.news/servo-undercover-web-browser-engine/
169•robtherobber•4h ago•111 comments

Ursa: A Leaderless, Object Storage–Based Alternative to Kafka

https://streamnative.io/products/ursa
16•netpaladinx•51m ago•2 comments

What is gVisor?

https://blog.yelinaung.com/posts/gvisor/
44•yla92•2h ago•27 comments

Zig Profiling on Apple Silicon

https://blog.bugsiki.dev/posts/zig-profilers/
28•signa11•2d ago•2 comments

Magentic-UI: Towards Human-in-the-Loop Agentic Systems

https://arxiv.org/abs/2507.22358
11•fitzn•57m ago•1 comments

Many countries that said no to ChatControl in 2024 are now undecided

https://digitalcourage.social/@echo_pbreyer/114946559233051667
173•nickslaughter02•3h ago•95 comments

Following Up on the Python JIT

https://lwn.net/Articles/1029307/
47•Bogdanp•3d ago•12 comments

GCP CloudQuarry: Searching for Secrets in Public GCP Images

https://trufflesecurity.com/blog/guest-post-gcp-cloudquarry-searching-for-secrets-in-public-gcp-images
7•mooreds•56m ago•0 comments

GEPA: Reflective prompt evolution can outperform reinforcement learning

https://arxiviq.substack.com/p/gepa-reflective-prompt-evolution
69•che_shr_cat•4h ago•16 comments

Sumo – Simulation of Urban Mobility

https://eclipse.dev/sumo/
117•Stevvo•3d ago•20 comments

Infracost (YC W21) hiring first PM to shift $600B cloud spend to proactive

https://www.ycombinator.com/companies/infracost/jobs/ukwJ299-senior-product-manager
1•akh•3h ago

Profiling without Source code – how I diagnosed Trackmania stuttering

https://larstofus.com/2025/07/27/profiling-without-source-code-how-i-diagnosed-trackmania-stuttering/
28•ibobev•3d ago•2 comments

GenosDB (GDB) – Decentralized P2P Graph Database

https://www.npmjs.com/package/genosdb
16•estebanrfp•2h ago•3 comments

NSW Fair Trading – Dark Patterns

https://www.nsw.gov.au/departments-and-agencies/fair-trading/dark-patterns
12•ColinWright•2h ago•1 comments

Carbon Language: An experimental successor to C++

https://docs.carbon-lang.dev/
6•samuell•1h ago•1 comments

U.S. Senators Introduce New Pirate Site Blocking Bill: Block Beard

https://torrentfreak.com/u-s-senators-introduce-new-pirate-site-blocking-bill-block-beard/
39•HieronymusBosch•56m ago•4 comments

Go’s race detector has a mutex blind spot

https://doublefree.dev/go-race-mutex-blindspot/
50•GarethX•2d ago•32 comments

Altima NSX

https://computeradsfromthepast.substack.com/p/altima-nsx
18•rbanffy•3h ago•12 comments

How to trigger a command on Linux when power switches from AC to battery

https://dataswamp.org/~solene/2025-05-31-linux-killswitch-on-power-disconnect.html
45•Mr_Minderbinder•5h ago•20 comments

Nova: A New Web Framework for Erlang

37•taure•2h ago•12 comments

OpenAI's ChatGPT Agent casually clicks through "I am not a robot" verification

https://arstechnica.com/information-technology/2025/07/openais-chatgpt-agent-casually-clicks-through-i-am-not-a-robot-verification-test/
166•joak•2d ago•168 comments

So you're a manager now

https://scottkosman.com/post/blog/so-youre-a-manager-now/
140•mooreds•3h ago•106 comments

The Math Is Haunted

https://overreacted.io/the-math-is-haunted/
331•danabramov•19h ago•149 comments

Ollama's new app

https://ollama.com/blog/new-app
502•BUFU•18h ago•259 comments

Orion Browser by Kagi

https://kagi.com/orion/
7•gtirloni•1h ago•0 comments

Figma will IPO on July 31

https://www.figma.com/blog/ipo-pricing/
310•nevir•17h ago•203 comments

Benchmarks in CI: Escaping the Cloud Chaos

https://codspeed.io/blog/benchmarks-in-ci-without-noise
12•adriencaccia•3h ago•2 comments
Open in hackernews

Launch HN: Lucidic (YC W25) – Debug, test, and evaluate AI agents in production

109•AbhinavX•23h ago
Hi HN, we’re Abhinav, Andy, and Jeremy, and we’re building Lucidic AI (https://dashboard.lucidic.ai), an AI agent interpretability tool to help observe/debug AI agents.

Here is a demo: https://youtu.be/Zvoh1QUMhXQ.

Getting started is easy with just one line of code. You just call lai.init() in your agent code and log into the dashboard. You can see traces of each run, cumulative trends across sessions, built-in or custom evals, and grouped failure modes. Call lai.create_step() with any metadata you want, memory snapshots, tool outputs, stateful info, and we'll index it for debugging.

We did NLP research at Stanford AI Lab (SAIL), where we worked on creating an AI agent (w/ fine-tuned models and DSPy) to solve math olympiad problems (focusing on AIME/USAMO); and we realized debugging these agents was hard. But the last straw was when we built an e-commerce agent that could buy items online. It kept failing at checkout, and every one-line change, tweaking a prompt, switching to Llama, adjusting tool logic, meant another 10-minute rerun just to see if we hit the same checkout page.

At this point, we were all like, this sucks, so we improved agent interpretability with better debugging, monitoring, and evals.

We started by listening to users who told us traditional LLM observability platforms don't capture the complexity of agents. Agents have tools, memories, events, not just input/output pairs. So we automatically transform OTel (and/or regular) agent logs into interactive graph visualizations that cluster similar states based on memory and action patterns. We heard that people wanted to test small changes even with the graphs, so we created “time traveling,” where you can modify any state (memory contents, tool outputs, context), then re-simulate 30–40 times to see outcome distributions. We embed the responses, cluster by similarity, and show which modifications lead to stable vs. divergent behaviors.

Then we saw people running their agent 10 times on the same task, watching each run individually, and wasting hours looking at mostly repeated states. So we built trajectory clustering on similar state embeddings (like similar tools or memories) to surface behavioral patterns across mass simulations.

We then use that to create a force-directed layout that automatically groups similar paths your agent took, which displays states as nodes, actions as edges, and failure probability as color intensity. The clusters make failure patterns obvious; you see trends across hundreds of runs, not individual traces.

Finally, when people saw our observability features, they naturally wanted evaluation capabilities. So we developed a concept for people to make their own evals called "rubrics," which lets you define specific criteria, assign weights to each criterion, and set score definitions, giving you a structured way to measure agent performance against your exact requirements.

To evaluate these criteria, we used our own platform to build an investigator agent that reviews your criteria and evaluates performance much more effectively than traditional LLM-as-a-judge approaches.

To get started visit dashboard.lucidic.ai and https://docs.lucidic.ai/getting-started/quickstart. You can use it for free for 1,000 event and step creations.

Look forward to your thoughts! And don’t hesitate to reach out at team@lucidic.ai

Comments

srameshc•23h ago
I am not an expert but still I am building enough agents. But I don't understand how this tool can be integrated with an exisiting system. Is it like an APM for agents if I understand it correctly ?
AbhinavX•23h ago
the way it is integrated (its explained more in the docs) is by installing the python/typescript sdk and writing "lai.init()" at the top of your code. Then we capture all LLM calls and tools with integrated providers (similar to LLM ops platforms). If you want to manually add more information you can add decorators, lai.create_step/create_event "logs", etc.

We then take all this information you give us and try to transform it i.e group together similar nodes, run an agent to evaluate a session, or to find root cause of a session failure in the backend.

majdalsado•23h ago
I'm looking into a tool like this for my startup. Why should I use this over Langfuse or Helicone?
AbhinavX•22h ago
Langfuse and Helicone work well for traditional LLM operations, but AI agents are different. We discovered that AI agents require fundamentally different tooling, here are some examples.

First, while LLMs simply respond to prompts, agents often get stuck in behavioral loops where they repeat the same actions; to address this, we built a graph visualization that automatically detects when an agent reaches the same state multiple times and groups these occurrences together, making loops immediately visible.

Second, our evaluations are much more tailored for AI Agents. LLM ops evaluations usually occur at a per prompt level (i.e hallucination, qa-correctness) which makes sense for those use cases, but agent evaluations are usually per session or run. What this means is that usually a single prompt in isolation didn’t cause an issue but some downstream memory issue or previous action caused this current tool to fail. So, we spent a lot of time creating a way for you to create a rubric. Then, to evaluate the rubric (so that there isn’t context overload) we created an agentic pipeline which has tools like viewing rubric examples, ability to zoom “in and out” of a session (to prevent context overload), referencing previous examples, etc.

Third, time traveling and clustering of similar responses. LLM debugging is straightforward because prompts are stateless and are independent from one another, but agents maintain complex state through tools, context, and memory management; we solved this by creating “time travel” functionality that captures the complete agent state at any point, allowing developers to modify variables like context or tool availability and replay from that exact moment and then simulate that 20-30 times and group together similar responses (with our clustering alg).

Fourth, agents exhibit far more non-deterministic behavior than LLMs because a single tool call can completely change their trajectory; to handle this complexity, we developed workflow trajectory clustering that groups similar execution paths together, helping developers identify patterns and edge cases that would be impossible to spot in traditional LLM systems.

simonw•23h ago
How does Lucidic define the term "AI agent"?
AbhinavX•22h ago
Colloquially, AI agents are just while loops with LLM calls and tool calls. More specifically, what distinguishes an agent from LLM pipelines is that its next step is determined dynamically (based on the output of the previous one) so the execution path isn’t fixed. The boundary between complex LLM chaining and agents is pretty fuzzy, but we support both.

Haha also our whole backend is in Django :)

simonw•22h ago
Gotcha, you're using the "LLM calling tools in a loop" definition. I think that's a decent one, but I worry that many people out there are carrying around completely different ideas as to what the term means.
rkwz•13h ago
Do you have a writeup on the different interpretations of "AI Agent"?
simonw•11h ago
I need to put one together. The big ones are:

- "LLM running tools in a loop" - often used by Anthropic, generally the most popular among software engineers who build things

- "An AI system that performs tasks on your behalf" - used by OpenAI, I dislike how vague this one is

- "an entity that perceives its environment through sensors and acts upon that environment through actuators to achieve specific goals" - the classic academic one, Russell and Norvig. I sometimes call this the "thermostat definition".

- "kinda like a travel agent I guess?" - quite common among less technical people I've talked to

I gathered over a hundred on Twitter last year, summarized by Gemini here: https://gist.github.com/simonw/beaa5f90133b30724c5cc1c4008d0...

I also have a tag about this on my blog: https://simonwillison.net/tags/agent-definitions/

NitpickLawyer•9h ago
The way I draw the line is to focus on the "agency" aspect.

In workflows/pipelines the "agency" belongs to the coder/creator of the workflow. It usually resembles something like a "list of steps" or "ittt". Examples include traditional "research" flows like 1. create search terms for query; 2. search; 3. fetch_urls; 4. summarise; 5. answer

In agents the "agency" belongs, at one point or another, to the LLM. It gets to decide what to do at some steps, based on context, tools available, and actions taken. It usually resembles a loop, without predefined steps (or with vague steps like "if this looks like a bad answer, retry" - where bad answer can be another LLM invocation w/ a specific prompt). Example: Fix this ticket in this codebase -> ok, first I need to read_files -> read_files tool call ... and so on.

rkwz•5h ago
In the research workflow example, what if the first set of search queries don’t return good results. If the LLM tool loop decides to refine the queries, would this be “agency”?
NitpickLawyer•4h ago
I'd say so, yeah. If the LLM "decides" what steps to take, that's an agent. If the flow is "hardcoded" then it's a workflow/pipeline. It often gets confused because early frameworks called these workflows/pipelines "agents".
rkwz•3h ago
I see, that's a good way to think about it
jauhar_•23h ago
Congrats on the launch! On a tangential note, is this work open source or do you guys have some technical report that you could share? I am specially interested in your results on the clustering methods for surfacing behavioural patterns. Thanks!
AbhinavX•22h ago
We're new to the open source scene so we don't have anything published yet but plan to in the future. A basic overview of the way we do clustering is we condense stateful information -> create a state embedding -> create tags -> cluster based on distance of tags + embeddings.
bilbo-b-baggins•4h ago
Feel free to reach out if you want some guidance. At a minimum your SDK should be open source since it potentially touches sensitive data and you’ll want to build trust. Also, it probably technically already is unless you’ve only released Python binary wheels.
iskhare•22h ago
You say your rubric approach is “better than llm as a judge.” Can you please elaborate on what makes you say that?
AbhinavX•22h ago
LLM as a judge for agent usually has context overload and even if you have a really good prompt for your evaluation, LLMs hallucinate because there is just too much information to ingest. So we created an agentic pipeline to basically do evaluations on rubrics which have better results and dont miss intricacies due to the overloaded context.
ehsanu1•13h ago
I'm reading: the difference is that this is an agent as a judge rather than an LLM as a judge, paired with more structured judging parameters. Is that right? Is the agent just a loop over each criterium, or is it also reflecting somehow on its judging or similar?
iancarroll•22h ago
I do feel frustrated with the current state of evaluations for long-lived sessions with many tool calls -- by default OpenAI's built-in eval system seems to rate chat completions that end with a tool call as "bad" because the tool call response is only in the next completion.

But our stack is in Go and it has been tough to see a lot of observability tools focus on Python rather than an agnostic endpoint proxy like Helicone has.

AbhinavX•22h ago
we're working on that right now, we'd love to hear your opinions(if you're interested you can send us an email at team@lucidic.ai).
sharathr•22h ago
yet another observability tool thats joining the already overcrowded space
henriquegodoy•18h ago
my vision is that the market is not really prepared for that right now, the best way is this guys is solving a really niche problem with their plataform and then expanding trough more areas
IgorBlink•21h ago
Looks great! debugging agents is a huge pain for me, and this actually looks useful. Love the time travel and trajectory clustering ideas. Bookmarked to try it soon
AbhinavX•21h ago
Awesome--let us know what you think!
KaseyZhang•21h ago
Congrats on the launch - would be great to read more about the clustering approach you're taking
SkylerJi•20h ago
looks cool—what do you mean clustering similar responses. Usually llm outputs are a bit different would those be the clustered together or is it exact text similarity
greatwhitenorth•19h ago
Is the front end built using AI? It's unusable on Pixel 8a. You may lose users, please fix the responsive design.
tln•18h ago
Given that its a tool for development, it seems wise for them to focus on priorities other than mobile phone usablity
henriquegodoy•18h ago
Nice, i think that yall are on the correct path betting on evals, but please make your ui less "generic"
Areibman•16h ago
I've been keeping a rolling list of LLMOps/AI agent observability products funded by YC. What problems does Lucidic solve that the others do not?

https://hegel-ai.com https://www.vellum.ai/ https://www.parea.ai http://baserun.ai https://www.traceloop.com https://www.trychatter.ai https://talc.ai https://langfuse.com https://humanloop.com https://uptrain.ai https://athina.ai https://relari.ai https://phospho.ai https://github.com/BerriAI/bettertest https://www.getzep.com https://hamming.ai https://github.com/DAGWorks-Inc/burr https://www.lmnr.ai https://keywordsai.co https://www.thefoundryai.com https://www.usesynth.ai https://www.vocera.ai https://coval.ai https://andonlabs.com https://lucidic.ai https://roark.ai https://dawn.so/ https://www.atla-ai.com https://www.hud.so https://www.thellmdatacompany.com/ https://casco.com https://www.confident-ai.com

Karrot_Kream•16h ago
You should compile these into a Gist or some static page.
Areibman•16h ago
Here's my full list: https://gist.github.com/areibman/b1f66a9a037005b2d4bbf5ba2e5...
clemo_ra•14h ago
thank you, this is cool/interesting. i work in this space and I was thinking yesterday that it would be an interesting contemporary witness to record competition & then see how things shake out.
barapa•13h ago
Excited to try this
witnessme•11h ago
Love the UX. From the value POV, I am yet to see/experience how it differs from competitors. P.S. I currently use Braintrust and Opik