frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: ChartGPU – WebGPU-powered charting library (1M points at 60fps)

https://github.com/ChartGPU/ChartGPU
477•huntergemmer•9h ago•142 comments

Show HN: RatatuiRuby wraps Rust Ratatui as a RubyGem – TUIs with the joy of Ruby

https://www.ratatui-ruby.dev/
41•Kerrick•4d ago•4 comments

Show HN: Rails UI

https://railsui.com/
97•justalever•5h ago•62 comments

Show HN: TerabyteDeals – Compare storage prices by $/TB

https://terabytedeals.com
57•vektor888•3h ago•49 comments

Show HN: Company hiring trends and insights from job postings

https://jobswithgpt.com/company-profiles/
35•sp1982•6h ago•4 comments

Show HN: Semantic search engine for Studio Ghibli movie

https://ghibli-search.anini.workers.dev/
11•aninibread•10h ago•7 comments

Show HN: Retain – A unified knowledge base for all your AI coding conversations

https://github.com/BayramAnnakov/retain
9•Bayram•4h ago•5 comments

Show HN: See the carbon impact of your cloud as you code

https://dashboard.infracost.io/
52•hkh•9h ago•20 comments

Show HN: Amazon shopping automation without vision

5•tonyww•9h ago•2 comments

Show HN: SpeechOS – Wispr Flow-inspired voice input for any web app

https://www.speechos.ai/
11•gangster_dave•8h ago•5 comments

Show HN: yolo-cage – AI coding agents that can't exfiltrate secrets

https://github.com/borenstein/yolo-cage
43•borenstein•9h ago•63 comments

Show HN: Hyve – Parallel isolated workspaces for coding agents, multi-repo dev

5•eladkishon•16h ago•1 comments

Show HN: PicoFlow – a tiny DSL-style Python library for LLM agent workflows

4•shijizhi_1919•9h ago•0 comments

Show HN Guidelines

https://news.ycombinator.com/yli.html
2•cjbarber•1h ago•0 comments

Show HN: Mastra 1.0, open-source JavaScript agent framework from the Gatsby devs

https://github.com/mastra-ai/mastra
206•calcsam•1d ago•69 comments

Show HN: Automatically build sales playbook. For founders doing sales

6•Mrakermo•4h ago•0 comments

Show HN: I'm eating at all the phở restaurants in Portland, at least twice

https://pho.curtisbarnard.com/
2•oregoncurtis•2h ago•3 comments

Show HN: UltraContext – A simple context API for AI agents with auto-versioning

https://ultracontext.ai/
15•ofabioroma•9h ago•18 comments

Show HN: I built an AI coach for introverted leaders

https://www.leadquiet.com/landing
2•chux52•3h ago•0 comments

Show HN: Sornic – Turn any article into a podcast in 10 seconds

https://sornic.com
2•digi_wares•4h ago•1 comments

Show HN: Consensus for Side Effects

https://github.com/abokhalill/chr2
2•yousef06•4h ago•0 comments

Show HN: Haven – Anti Brain Rot Android Launcher

https://play.google.com/store/apps/details?id=dev.speczo.haven&hl=en_US
2•sunamic•57m ago•0 comments

Show HN: I built a chess explorer that explains strategy instead of just stats

https://www.atlaschess.me/
9•Ahmad_shuja•8h ago•5 comments

Show HN: Exploring structure in a 1D cellular automaton

https://github.com/arvatamas/The-Cosmic-Mirror
3•aaatamas•4h ago•0 comments

Show HN: Agent Skills Leaderboard

https://skills.sh
124•andrewqu•1d ago•41 comments

Show HN: Claude Skill for App Store Compliance

https://github.com/safaiyeh/app-store-review-skill
2•jsafaiyeh•4h ago•0 comments

Show HN: SeeClaudeCode – visualize Claude Code's edits to your repo in real time

https://seeclaudecode.fly.dev/
3•ninajlu•5h ago•1 comments

Show HN: A minimal beads-like issue tracker for AI agents

https://github.com/obsfx/trekker
2•obsfx•5h ago•1 comments

Show HN: What I learned building a local-only password manager (PassForgePro)

https://github.com/can-deliktas/PassForgePro
5•can-deliktas•5h ago•0 comments

Show HN: TopicRadar – Track trending topics across HN, GitHub, ArXiv, and more

https://apify.com/mick-johnson/topic-radar
34•MickolasJae•1d ago•9 comments
Open in hackernews

Show HN: UltraContext – A simple context API for AI agents with auto-versioning

https://ultracontext.ai/
15•ofabioroma•9h ago
Hey HN! I'm Fabio and I built UltraContext, a simple context API for AI agents with automatic versioning.

After two years building AI agents in production, I experienced firsthand how frustrating it is to manage context at scale. Storing messages, iterating system prompts, debugging behavior and multi-agent patterns—all while keeping track of everything without breaking anything. It was driving me insane.

So I built UltraContext. The mental model is git for context:

- Updates and deletes automatically create versions (history is never lost)

- Replay state at any point

The API is 5 methods:

  uc.create()   // new context (can fork from existing)
  uc.append()   // add message
  uc.get()      // retrieve by version, timestamp, or index
  uc.update()   // edit message → creates version
  uc.delete()   // remove message → creates version
Messages are schema-free. Store conversation history, tool calls, system prompts—whatever shape you need. Pass it straight to your LLM using any framework you'd like.

What it's for:

- Persisting conversation state across sessions

- Debugging agent behavior (rewind to decision point)

- Forking contexts to test different flows

- Audit trails without building audit infrastructure

- Multi-agent and sub-agent patterns

What it's NOT:

- Not a memory/RAG system (no semantic search)

- Not a vector database

- Not an Orchestration/LLM framework

UltraContext handles versioning, branching, history. You get time-travel with one line.

Docs: https://ultracontext.ai/docs

Early access: https://ultracontext.ai

Would love feedback! Especially from anyone who's rolled their own context engineering and can tell me what I'm missing.

Comments

ofabioroma•9h ago
Founder here. Happy to answer questions.

Quick backstory: every agent project I worked on, I spent more time on context infrastructure than the actual product. Same pattern—duct-tape a store, lose history, debug blind when things broke.

The "aha" was needing git semantics for a project where users wanted to edit messages while still being able to travel back. So that's what I built: immutable history, branch on change, rewind to any commit. But I didn't want to expose that complexity. So the API is just contexts and messages. Versioning happens automatically.

Still early. What context engineering problems are you hitting with your agents?

justinlords•9h ago
I don't get it. Why wouldn't I just use a Vector DB (Pinecone/Weaviate) for this? Just retrieve relevant chunks and stick them in the prompt. Feels like you're reinventing the wheel here.
ofabioroma•9h ago
Great question. They solve different problems.

Vector DBs are great for retrieval: "find relevant chunks to add to the prompt." But they're not designed for state management. When you update a message, there's no version history. When something breaks, you can't rewind to see exactly what the agent saw.

UltraContext manages the structured context (conversation history, tool calls, system prompts) with git semantics. Fork, rewind, merge. You can't git revert a vector embedding.

They're complementary. You'd use a vector DB to decide what goes in the context, and UltraContext to manage what's already there.

simonrogge•9h ago
Adding an API call between my Agent and the LLM seems like it would kill latency. How much overhead does this add vs just managing the list locally?
ofabioroma•8h ago
~20ms overhead. Built on Cloudflare's edge, so it's fast globally. The value isn't speed—it's that you stop rebuilding context infrastructure and get versioning/debugging for free.
nicklo•2h ago
i've always wondered (for this, portkey, etc) - why not have a parallel option that fires an extra request instead of mitm the llm call?
ofabioroma•2h ago
You can fire them in parallel for simple cases. The issue is when you have multi-agent setups. If context isn't persisted before a sub-agent reads it, you get stale state. Single source of truth matters when agents are reading and writing to the same context.

For single-agent flows, parallel works fine.

felipexy•8h ago
This may interesting for agent orchestration. Can I use it to make multiple agents interact and save this context as a separate tree?
ofabioroma•7h ago
Yes. That's a core use case. You can either use a separate tree or even nest contexts. It's very powerful for sub-agents like the one Claude Code has built in with the Explore and Task subagents

On UltraContext, you'll do it like this:

// Shared context all agents read/write to

await uc.append(sharedCtx, { agent: 'planner', content: '...' })

await uc.append(sharedCtx, { agent: 'researcher', content: '...' })

// Or fork into separate branches per agent

const branch = await uc.create({ from: sharedCtx, at: 5 })

Schema-free, so you can tag messages by agent, track provenance in metadata, and branch/merge however you want. Full history on everything.

SimplyLiz•6h ago
This is really well thought out. The git-like versioning approach for memory artifacts is something I’ve been advocating for after spending way too much time debugging agent state issues.

I’ve been working on AI memory backends and context management myself and the core insight here — that context needs to be versionable and inspectable, not just a growing blob — is spot on.

Tried UltraContext in my project TruthKeeper and it clicked immediately. Being able to trace back why an agent “remembered” something wrong is a game changer for production debugging.

One thing I’d love to see: any thoughts on compression strategies for long-running agents? I’ve been experimenting with semantic compression to keep context windows manageable without losing critical information. Great work, will be following this closely.

ofabioroma•4h ago
For now, I’m intentionally keeping UltraContext as unopinionated as possible, since every application has different constraints and failure modes.

The goal is to focus on the core building blocks that enable more sophisticated use cases. Compression, compaction, and offloading strategies should be straightforward to build on top of UC rather than baked in at the core layer.

Findkar•3h ago
How we manage agentic memory is going to be key in scaling the future of agents. I'm curious how this scales with larger datasets? Like let's say an agent has to keep 5 parallel conversations, across 5 different social media acccounts, and each of the conversations is 10000 messages long. How would it manage parsing through huge DBs like that? or is it more for like more recent context?

Also, let's say an agent runs like 1000s of times, would each of those times become a version history?

I'm particularly interested in how parsing through agent context would work!

ofabioroma•1h ago
Great questions.

On scaling: appends don't create versions, only updates and deletes do. So for your 10k message conversations, uc.get() is O(n) reads. Standard database scaling. The versioning overhead only kicks in when you're actually mutating context, and even then we handle the optimization so you don't have to think about it.

On version history: each agent run doesn't create a version. Versions are created when you update or delete a message. So if your agent appends 1000 messages across 1000 runs, that's just 1000 appends. No version explosion.

Time travel (rewinding to a specific point) is also O(n). This was my personal main bottleneck when deploying B2C agents, so the API is heavily optimized for it.

For your 5 accounts x 5 conversations setup: you'd have 25 separate contexts. Each scales independently. Parse through them however you want, filter by metadata, retrieve by timestamp or index.

handfuloflight•2h ago
What about context loaded in from tool calls?
ofabioroma•2h ago
You can load context from wherever you want (including inside other contexts and/or external tools), just uc.get() your way into the context. You can use metadata to filter your tool calls. You pick whatever structure works best for you. UltraContext is just the building blocks for your app! What are you building?
stuartjohnson12•1h ago
Lots of comments here from new accounts.
zk_haider•1h ago
What about privacy does this imply storing messages in your layer?
ofabioroma•1h ago
Yes, messages are stored on our infrastructure

For sensitive use cases, I'm exploring a few options: client-side encryption, data anonymization, or a local-first deployment where context never leaves your infra. Not there yet, but it's on the roadmap.

What's your use case? Happy to chat about what privacy guarantees you'd need.