frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A.I. Is Not Going to Replace Software [video]

https://www.youtube.com/watch?v=Epp-Vz0FrPg
1•balls187•53s ago•0 comments

Epsteincoin Is Collapsing

1•zerosizedweasle•7m ago•0 comments

Would you choose the Microsoft stack today if starting greenfield?

2•JB_5000•8m ago•0 comments

What's the right trust model for an agent-to-agent network?

https://platia.ai/
1•alexandroskyr•9m ago•1 comments

IBM stock drops by 13% after Anthropic publishes a blog post

https://www.businessinsider.com/ibm-stock-price-anthropic-ai-update-cobol-language-software-sello...
2•seagram•12m ago•0 comments

Uber acquiring parking app SpotHero as it moves beyond ride-hailing

https://www.cnbc.com/2026/02/23/uber-acquiring-spothero.html
1•avonmach•12m ago•0 comments

Show HN: LexReviewer – Because "Chat with PDF" is broken for legal workflows

https://github.com/LexStack-AI/LexReviewer
1•sherebanuk•13m ago•1 comments

Strategic choices: When both options are good

https://longform.asmartbear.com/strategic-choices/
1•doppp•14m ago•0 comments

Why is the toilet often called the debug chair?

https://blog.ptidej.net/debug-chair/
1•yann-gael•15m ago•0 comments

Intel XeSS 3: expanded support for Core Ultra/Core Ultra 2 and Arc A, B series

https://www.intel.com/content/www/us/en/download/785597/intel-arc-graphics-windows.html
2•nateb2022•15m ago•0 comments

Railway surpasses 1M deployments per day

https://railway.com/stats
1•dban•16m ago•0 comments

An Open Fan Differs from Turboprop and How It Beats Turbofans [video]

https://www.youtube.com/watch?v=fT7Zi_xF8Ts
1•sxzygz•17m ago•0 comments

FreeBSD 2025 Q4 Status Report

https://www.freebsd.org/status/report-2025-10-2025-12/
1•vermaden•17m ago•0 comments

United States Withdrawal from the Joint Comprehensive Plan of Action

https://en.wikipedia.org/wiki/United_States_withdrawal_from_the_Joint_Comprehensive_Plan_of_Action
2•treetalker•21m ago•0 comments

Show HN: LookTake – Try anyone's makeup, outfit, or hairstyle on your photo

https://about.looktake.io/
1•takeaura25•21m ago•0 comments

Debunking Cato's "Immigrants Use Less Welfare" Claim

https://samuelgabrielsg.substack.com/p/debunking-catos-immigrants-use-less
1•samuelgabrielsg•21m ago•0 comments

NASA will return its moon rocket to the hangar for more repairs before astronaut

https://phys.org/news/2026-02-nasa-moon-rocket-hangar-astronauts.html
3•bookmtn•23m ago•0 comments

VidSoda is an all-in-one AI creative platform

https://vidsoda.com/
1•nikiki•26m ago•1 comments

Proposal limiting foreign scientists at NIST disrupts Colorado quantum industry

https://coloradosun.com/2026/02/19/colorado-quantum-industry-scientists-foreign-nist-federal-labs/
3•osnium123•26m ago•0 comments

Lamborghini cancels their multi-year EV project

https://www.engadget.com/transportation/evs/lamborghini-ditches-plans-for-its-all-electric-superc...
4•dreadsword•28m ago•2 comments

The Weird OS Built Around a Database [video]

https://www.youtube.com/watch?v=pWZBQMRmW7k
1•surprisetalk•28m ago•0 comments

Record-breaking Antarctic drill reveals 23M years of climate history

https://phys.org/news/2026-02-antarctic-drill-reveals-million-years.html
3•wglb•29m ago•1 comments

The AI productivity boom is not here (yet)

https://www.economist.com/finance-and-economics/2026/02/22/the-ai-productivity-boom-is-not-here-yet
6•andsoitis•31m ago•3 comments

NPM install is stealing your passwords – I built a tool to catch it

https://westbayberry.com/product
2•ComCat•33m ago•1 comments

Lamplight.Cafe

https://lamplight.cafe
2•ryuura•35m ago•0 comments

NASA's Artemis II launch date gets pushed back again

https://qz.com/nasas-artemis-ii-launch-delayed-april
2•bookmtn•38m ago•0 comments

Show HN: MFLScout – Analytics Platform for Metaverse Football League

1•iedayan03•38m ago•0 comments

Claude on Socialization

https://claude.ai/share/486be97b-df4f-4e11-abc9-53021038f141
1•s1gs3gv•40m ago•1 comments

Show HN: CodeAnswr – AI-powered Stack Overflow alternative, free forever

https://codeanswr.com
1•mobinpo•41m ago•1 comments

Show HN: BudgetFast – Upload a bank statement screenshot, AI does the rest

https://budgetfast.co
1•ivanramos•42m ago•0 comments
Open in hackernews

Show HN: Pixelagent – Build your Stateful Agent Framework in 200 lines of code

https://github.com/pixeltable/pixelagent
30•pierrebrunelle•9mo ago

Comments

jweisspxl•9mo ago
Pixelagent: Agent Engineering Blueprint https://www.youtube.com/watch?v=BS6PRsnxkBA
SafeDusk•9mo ago
Exciting to see a fellow builder in the space! Love how memory management and observability is built-in.

Today, I just re-implemented Google's AlphaEvolve for Perlin noises using my own minimal agentic framework (https://toolkami.com/alphaevolve-toolkami-style/), will probably steal a trick or two from you.

pierrebrunelle•9mo ago
Congrats! Take whatever you want :)

Yes: Memory, observability, versioning, and lineage being built-in is a derivative of unifying orchestration and storage: https://docs.pixeltable.com/docs/datastore/computed-columns.

bosky101•9mo ago
Your readme doesn't mention any example of multiple agents. We don't need another wrapper to anthropic/openai/*. Without being able to select between multiple tools/agents - you only need 2 lines of code to achieve llm calls, and another 2 lines for state management.

That said the interface is more idiomatic that others agent frameworks that show up here.

It also wasn't clear where the last N messages is being persisted. Db/file/adapters/?

Good luck!

pierrebrunelle•9mo ago
Thanks!

https://github.com/pixeltable/pixelagent/tree/main/examples/... for multiple tools/agents. A tool is just a UDF. You can have as many as you want.

The goal of this reference agent SDK is to showcase the flexibility of Pixeltable (the underlying unified storage and orchestration system) that is Open Source and Apache 2.0.

This is where storage is defined: https://github.com/pixeltable/pixelagent/blob/main/pixelagen.... These are very simple examples.

Here's how an Agentic Reddit bot would work for instance: https://github.com/pixeltable/pixeltable/tree/main/docs/samp...

RamblingCTO•9mo ago
I'll just leave this here: https://github.com/The-Pocket/PocketFlow 100 lines of code agent lib that's not tied to a commercial offering
pierrebrunelle•9mo ago
I like PocketFlow. You beat me on the # of lines of code! But does it provide parallelization, caching, orchestration, versioning, observability, lineage, multi-modal support?

As you just showed, building an agent SDK is easy, so what's interesting to me is tackling:

- Infrastructure Sprawl: Juggling separate systems for vector search, state tracking, multimodal data handling, and monitoring leads to fragmented workflows and high operational costs. - State Management Nightmares: Reliably tracking agent memory, tool calls, and intermediate states across potentially long-running, asynchronous tasks is incredibly difficult. - Multimodal Integration Pain: Integrating and processing images, audio, video, and documents alongside text requires specialized, often disparate, tooling. - Observability Gaps: Understanding why an agent made a decision or failed requires visibility into its state and data lineage, which is often lacking.

And doing all of that while finding the right abstraction layer to leave all the application and business logic to the dev/users so they don't feel limited. It's difficult!

Besides, I don't know where you see a commercial offering? Everything is Apache 2.0/Open Source from A to Z.

RamblingCTO•9mo ago
PocketFlow is not from me, but just my current favorite ;)

I just got the feeling that the lib is tied to pixeltable, but maybe I misunderstood? Maybe that's why this is dead? pocketflow is completely standalone and the main thing is that you vibe code what you need (works awesome so far!).

I don't want to sideline the discussion about pixelagent, but here's some more about pf:

- https://the-pocket.github.io/PocketFlow/design_pattern/multi... (multi agent, queue) - https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/ here are more advanced examples. Pretty easy to follow imho.

PS: re the observability, yesterday I coded tracing for pocketflow, just need to put it up on github haha

esafak•9mo ago
I don't know why Pierre's post is dead, but I wanted to ask if it is accurate to describe Pixelagent as an MCP-compatible memory layer, and what its competitors are.

If memory is the centerpiece, I suggest leading with it, rather than the ambiguous "Your AI Data Infrastructure".

pierrebrunelle•9mo ago
You can indeed turn anything that you want into an MCP server, e.g. https://github.com/pixeltable/pixeltable-mcp-server.

Pixelagent is a reference implementation for a multimodal agent framework to show that an agent class is easy to build and users should be empowered to build their own from scratch for their use cases.

Regarding Memory, to me it's just about Data Storage, Indexing, Orchestration, and Retrieval and I don't know why we should abstract Memory away from users. Memory will mean so many different things for many use cases.

Let's say you want:

- Working memory: Holds current context and immediate interaction history within the agent's context window -> this is just about passing Q&A pairs to maintain context alongside with roles.

- Episodic memory: Stores specific past experiences and interactions -> this is just about indexing past exchanges and having semantic search on it.

- Semantic memory: Organizes specific knowledge in structured formats -> this is just about building a custom logic (udf) to decide how and what to extract insight from and then retrieve it.

I've implemented them all in this example: https://github.com/pixeltable/pixelbot