Launch HN: Nia (YC S25) – Give better context to coding agents

trynia.ai

122 points by jellyotsiro a day ago

Hi HN, I am Arlan and I am building Nia (https://trynia.ai), a context layer for AI coding agents. Nia lets tools like Cursor, Claude Code, and other MCP clients index and query real codebases and documentation so they stop hallucinating against outdated or wrong sources, with applications beyond coding agents to any AI system that requires grounded context across domains.

Coding agents are only as good as the context you give them. General models are trained on public code and documentation that is often old, and they usually have no idea what is inside your actual repo, internal wiki, or the exact version of a third party SDK you use. The result is very familiar: you paste URLs and code snippets into the prompt, the agent confidently uses an outdated API or the wrong framework version, and you spend more time verifying and correcting it than if you had written the code yourself. Once models are good enough at generating code, feeding them precise, up-to-date context becomes the bottleneck.

I ran into this pattern first on my own projects when (a few months ago) I was still in high school in Kazakhstan, obsessed with codegen tools and trying every coding agent I could find. I saw it again when I got into YC and talked to other teams who were also trying to use agents on real work.

The first version of Nia was basically “my personal MCP server that knows my repos and favorite doc sites so I do not have to paste URLs into Cursor anymore.” Once I saw how much smoother my own workflow became, it felt obvious that this should be a product other people could use too.

Under the hood, Nia is an indexing and retrieval service with an MCP interface and an API. You point it at sources like GitHub repositories, framework or provider docs, SDK pages, PDF manuals, etc. We fetch and parse those with some simple heuristics for code structures, headings, and tables, then normalize them into chunks and build several indexes: a semantic index with embeddings for natural language queries; a symbol and usage index for functions, classes, types, and endpoints; a basic reference graph between files, symbols, and external docs; regex and file tree search for cases where you want deterministic matches over raw text.

When an agent calls Nia, it sends a natural language query plus optional hints like the current file path, stack trace, or repository. Nia runs a mix of BM25 style search, embedding similarity, and graph walks to rank relevant snippets, and can also return precise locations like “this function definition in this file and the three places it is used” instead of just a fuzzy paragraph. The calling agent then decides how to use those snippets in its own prompt. One Nia deployment can serve multiple agents and multiple projects at once. For example, you can have Cursor, Claude Code, and a browser based agent all pointed at the same Nia instance that knows about your monorepo, your internal wiki, and the provider docs you care about. We keep an agent agnostic session record that tracks which sources were used and which snippets the user accepted. Any MCP client can attach to that session id, fetch the current context, and extend it, so switching tools does not mean losing what has already been discovered.

A lot of work goes into keeping indexes fresh without reprocessing everything. Background workers periodically refetch configured sources, detect which files or pages changed, and reindex those incrementally. This matters because many of the worst “hallucinations” I have seen are actually the model quoting valid documentation for the wrong version. Fixing that is more about version and change tracking than about model quality.

We ship Nia with a growing set of pre-indexed public sources. Today this includes around 6k packages from common frameworks and provider docs, plus package search over thousands of libraries from ecosystems like PyPI, npm, and RubyGems, as well as pre indexed /explore page where everyone can contribute their sources! The idea is that a new user can install Nia, connect nothing, and still get useful answers for common libraries. Then, as soon as you add your own repos and internal docs, those private sources are merged into the same index. Some examples of how people use Nia so far: - migrating from one payments provider or API version to another by indexing the provider docs plus example repos and letting the agent propose and iterate on patches; - answering “how do I do X in this framework” by indexing the framework source directly instead of relying only on official docs that might be stale; - turning an unfamiliar public codebase into a temporary wiki to self onboard, where you can ask structural questions and jump to specific files, functions, or commits; - building a browser agent that answers questions using up to date code and docs even when the public documentation lags behind.

Nia is a paid product (https://www.trynia.ai/) but we have a free tier that should be enough for individuals to try it on real projects. Above that there is a self-serve paid plan for heavier individual use, and organization plans with higher limits, SOC 2, seat based billing, and options for teams that want to keep indexing inside their own environment. For private GitHub repos we can clone and index locally so code does not leave your infrastructure.

We store account details and basic telemetry like query counts and errors to operate the service, and we store processed representations of content you explicitly connect (chunks, metadata, embeddings, and small graphs) so we can answer queries. We do not train foundation models on customer content and we do not sell user data. Moreover, I can see Nia play out in the larger context of the agents space due to the global problem of providing reliable context to those systems. Early signals show that people are already using Nia for healthcare data, cloning Paul Graham by indexing all of his essays and turning him into an AI agent, using Naval’s archive to build a personalized agent, and more.

I would love to get Nia into the hands of more engineers who are already pushing coding agents hard and see where it breaks. I am especially interested in hearing about failure modes, annoying onboarding steps, places where the retrieval logic is obviously wrong or incomplete, or any security concerns I should address. I will be in the thread to answer questions, share more technical details, and collect any brutal feedback you are willing to give!

6thbit 21 hours ago

This looks neat, we certainly need more ideas and solutions on this space, I work with large codebases daily and the limits on agentic contexts are constantly evident. I've some questions related to how I would consume a tool like this one:

How does this fare with codebases that change very frequently? I presume background agents re-indexing changes must become a bottleneck at some point for large or very active teams.

If I'm working on a large set of changes modifying lots of files, moving definitions around, etc., meaning I've deviated locally quite a bit from the most up to date index, will Nia be able to reconcile what I'm trying to do locally vs the index, despite my local changes looking quite different from the upstream?

  • jellyotsiro 21 hours ago

    great question!

    For large and active codebases, we avoid full reindexing. Nia tracks diffs and file level changes, so background workers only reindex what actually changed. We are also building “inline agents” that watch pull requests or recent commits and proactively update the index ahead of your agent queries.

    Local vs upstream divergence is a real scenario. Today Nia prioritizes providing external context to your coding agents: packages, provider docs, SDK versions, internal wikis, etc. We can still reconcile with your local code if you point the agent at your local workspace (cursor and claude code already provide that path). We look at file paths, symbol names and usage references to map local edits to known context. In cases where the delta is large, we surface both the local version and the latest indexed version so the agent understands what changed.

    • adam_patarino an hour ago

      Your FAQ says you don’t store code. But this answer sounds like you do? Even if you’re storing as an embedding that’s still storage. Which is it?

mritchie712 21 hours ago

Cursor promises to do this[0] in the product, so, especially on HN, it'd be best to start with "why this is better than Cursor".

> favorite doc sites so I do not have to paste URLs into Cursor

This is especially confusing, because cursor has a feature for docs you want to scrape regularly.

0 - https://cursor.com/docs/context/codebase-indexing

  • jellyotsiro 21 hours ago

    The goal here is not to replace Cursor’s own local codebase indexing. Cursor already does that part well. What Nia focuses on is external context. It lets agents pull in accurate information from remote sources like docs, packages, APIs, and broader knowledge bases

    • jondwillis 20 hours ago

      That’s what GP is saying. This is the Docs feature of Cursor. It covers external docs/arbitrary web content.

      `@Docs` — will show a bunch of pre-indexed Docs, and you can add whatever you want and it’ll show up in the list. You can see the state of Docs indexing in Cursor Settings.

      The UX leaves a bit to be desired, but that’s a problem Cursor seems to have in general.

      • jellyotsiro 20 hours ago

        yeah ux is pretty bad and overall functionality. it still relies on a static retrieval layer and limited index scope.

        + as I mentioned above there are many more use cases than just coding.Think docs, APIs, research, knowledge bases, even personal or enterprise data sources the agent needs to explore and validate dynamically.

        • nrhrjrjrjtntbt 19 hours ago

          As an AI user (claude code, rovo, github copilot) I have come across this. In code it didnt build something right where it needed to use up to date docs. Luckily those people have now made an MCP but I had to wait. For a different project I may be SOL. Suprised this isnt solved, well done for taking it on.

          From a business point of view I am not sure how you get traction without being 10x better than what Cursor can produce tomorrow. If you are successful the coding agents will copy your idea and then people being lazy and using what works have no inventive to switch.

          I am not trying to discourage. More like encourage you to figure out how you get that elusive moat that all startups seek.

          As a user I am excited to try it soon. Got something in mind that this should make easier.

          • jellyotsiro 18 hours ago

            thanks! will be waiting for ur feedback

  • bn-l 20 hours ago

    This is different because of the background refresh, the identifier extraction and the graph. I know because I use cursor and am building the exact same thing oddly enough.

djoldman 2 hours ago

> The calling agent then decides how to use those snippets in its own prompt.

To be reductionist, it seems the claimed product value is "better RAG for code."

The difficulties with RAG are at least:

1. Chunking: how large and how is the beginning/end of a chunk determined

2. Given the above quote, how much or many RAG results are put into the context? It seems that the API caller makes this decision, but how?

I'm curious about your approach and how you evaluated it.

alex-ross 16 hours ago

This resonates. I'm building a React Native app and the biggest friction with AI coding tools is re-explaining context every time.

How does Nia handle project-specific patterns? Like if I always use a certain folder structure or naming convention, does it learn that?

  • jellyotsiro 16 hours ago

    Nia is focused on external context rather than learning the patterns inside your own codebase. Cursor and IDE-native tools are better for local project structure today. Where Nia helps is when the agent needs ground truth from outside your repo. For example, you can index React Native docs, libraries you depend on, API references or Stack for your backend and let the agent search and validate against those sources directly instead of losing context between prompts.

marwamc 20 hours ago

I've no idea what their architecture/implementation looks like, but I've built a similar tool for my own use and the improvements are dramatic to say the least.

Mine's a simple BM25 index for code keyword search (I use it alongside serena-mcp) and for some use cases the speeds and token efficiency are insane.

https://gitlab.com/rhobimd-oss/shebe#comparison-shebe-vs-alt...

  • ModernMech 19 hours ago

    It's amazing that you can do this on your own but the company in question cannot although they have raised $6M. If your README were their entire pitch and website and, it would be 100000x more convincing.

    • bluerooibos 18 hours ago

      YC these days is just a fast track for rich kids to raise millions with nothing but a landing page.

      Vaporware.

dhruv3006 5 hours ago

So many coding tools what makes you different.

qcqcqc 13 hours ago

Configure MCP Server One command to set up Nia MCP Server for your coding agent.

Select your coding agentCursor Installation method Local Remote Runs locally on your machine. More stable. Requires Python & pipx.

Create API Key test Create Organization required to create API keys

i can not create api key? the create button is grey and can not be pressed.

  • jellyotsiro 11 hours ago

    hey, what error does it throw?

brainless 5 hours ago

Very happy to see this since I am building in this domain. We need external and internal context though. I am aiming for always available context for current and related projects, reference projects, documentation, library usage, commands available (npm, python,...), tasks, past prompts, etc. all in one product. My product, nocodo (1), is built by coding agents, Claude Code (Sonnet only) and opencode (Grok Code Fast 1 and GLM 4.6).

I just made a video (2) on how I prompt with Claude Code, ask for research from related projects, build context with multiple documents, then converge into a task document, shared that with another coding agent, opencode (with Grok or GLM) and then review with Claude Code.

nocodo is itself a challenge for me: I do not write or review code line by line. I spend most of the time in this higher level context gathering, planning etc. All these techniques will be integrated and available inside nocodo. I do not use MCPs, and nocodo does not have MCPs.

I do not think plugging into existing coding agents work, not how I am building. I think building full-stack is the way, from prompt to deployed software. Consumers will step away from anything other than planning. The coding agent will be more a planning tool. Everything else will slowly vanish.

Cheers to more folks building here!

1. https://github.com/brainless/nocodo 2. https://youtu.be/Hw4IIAvRTlY

chrisweekly 19 hours ago

This looks interesting and worthwhile. I did a double-take when I read "when (a few months ago) I was still in high school in Kazakhstan"

canopi 20 hours ago

Congrats on the launch. The problem is definitely there. I wonder how are you planning to differentiate yourself from Cursor and the like. You mention you are complementary, but Cursor provide similar features to add external doc context for instance to a prompt. I understand you do better in your benchmark, but with the amount of funding they may be able to replicate and improve over it (unless you have a secret thing).

  • jellyotsiro 20 hours ago

    as I mentioned above there are many more use cases than just coding (APIs, research, knowledge bases, even personal or enterprise data sources the agent needs to explore and validate dynamically)

    I started out with coding agents specifically because it came from personal pain of how horrible they are with providing up to date context.

krisgenre 5 hours ago

Is this similar to the indexing done by Jetbrains IDEs?

RomanPushkin 21 hours ago

Having this RAG layer was always another thing to try for me. I haven't coded it myself, and super interested if this gives a real boost while working with Claude. Curious from anyone who have already tried the service, what's your feedback? Did you feel you're getting real improvements?

  • jellyotsiro 21 hours ago

    Wouldn’t call it just RAG though. Agentic discovery and semantic search are the way to go right now, so Nia combines both approaches. For example, you can dynamically search through a documentation tree or grep for specific things.

    • zwaps 21 hours ago

      We call it agentic RAG. The retriever is an agent. It’s still RAG

      • jellyotsiro 21 hours ago

        Which would be much better than the techniques used in 2023. As context windows increase, combining them becomes even easier.

        There are a lot of ways of how you can interpret agentic rag, pure rag, etc

bn-l 20 hours ago

Is the RAG database on your servers or is it local? If not local is there a local option?

  • jellyotsiro 20 hours ago

    hey! i use multiple DBs but the primary ones are turbopuffer and chroma for package search. they are really great

    re local, I do local for certain companies!

    • bn-l 7 hours ago

      Nice. Huge congrats on the launch!!!

govping 21 hours ago

The context problem with coding agents is real. We've been coordinating multiple agents on builds - they often re-scan the same files or miss cross-file dependencies. Interested in how Nia handles this - knowledge graph or smarter caching?

  • jellyotsiro 21 hours ago

    hey! knowledge graphs are also used at runtime but paired with other techniques, since graphs are only useful for relationship queries.

orliesaurus 20 hours ago

Benchmarks?

jacobgorm 17 hours ago

SOTA on internal benchmark?

  • jellyotsiro 17 hours ago

    going to open source it soon :)

kenforthewin 19 hours ago

Congrats. From my experience, Augment (https://augmentcode.com) is best in class for AI code context. How does this compare?

  • jellyotsiro 19 hours ago

    augment is a coding agent. nia is an external context engine for coding agents that improves their code output quality

    • kenforthewin 18 hours ago

      Sure, but Augment’s main value add is their context engine, and imo they do it really well. If all they had to do was launch an MCP for their context engine product to compete, I think the comparison is still worth exploring.

mike1505 18 hours ago

How does it compare to Serena MCP? :)

https://github.com/oraios/serena

  • jellyotsiro 18 hours ago

    Serena is great for semantic code editing and symbol-level retrieval on your own codebase. It gives the agent IDE-like capabilities inside the repo. Nia focuses on a different layer. We target external context: remote code, docs, packages, APIs, research, enterprise knowledge, etc

    w nia the agent can dynamically search, traverse, and validate information outside the local project so it never hallucinates against out-of-date or incomplete sources.

zwaps 21 hours ago

Absolutely insane that we celebrated coding agents getting rid of RAG, only with the next innovation being RAG

  • jellyotsiro 21 hours ago

    Not exactly just RAG. The shift is agentic discovery paired with semantic search.

    Also, most of the coding agents still combine RAG and agentic search. See cursor blog about how semantic search helps them understand and navigate massive codebases: https://cursor.com/blog/semsearch

  • choilive 21 hours ago

    The pendulum swings back.

  • ModernMech 21 hours ago

    This is happening over and over and over. The example of prompt engineering is just a form of protocol. Context engineering is just about cache management. People think LLMs will replace programming languages and runtimes entirely, but so far it seems they have been used mostly to write programs in programming languages, and I've found they're very bad interpreters and compilers. So far, I can't really pick out what exactly LLMs are replacing except the need to press the individual keys on the keyboard, so I still struggle to see them as more than super fancy autocomplete. When the hype is peeled away, we're still left with all the same engineering problems but now we have added "Sometimes the tool hallucinates and gaslights you".

dang 20 hours ago

[under-the-rug stub]

[see https://news.ycombinator.com/item?id=45988611 for explanation]

  • ayushrodrigues 20 hours ago

    congrats on the launch Arlan! Nia is a lifesaver when we're coding :)

  • rushingcreek 20 hours ago

    Congrats on the launch! Definitely a problem I’ve run into myself.

  • agentastic 19 hours ago

    Congrats on the launch, Nia looks great.

  • johnsillings 21 hours ago

    super smart. congrats on the launch!

  • himike 21 hours ago

    I love Nia, keep it up Arlan

  • phegler 20 hours ago

    Amazing product. As an individual heavy user I must say it does what it is supposed to do and it does it well.

ModernMech 21 hours ago

[flagged]

  • dang 20 hours ago

    Please make your substantive points without being snarky or aggressive. You have a good point in there at the end, but the site guidelines ask you not to comment like this, and that's especially important in Show or Launch threads.

    https://news.ycombinator.com/newsguidelines.html

    • ModernMech 20 hours ago

      Ok here is my less snarky and less aggressive take on the site and product: it doesn't leave me with confidence, it makes me feel uneasy about them as a company, it makes me not trust them, and it makes me feel like I'm being lied to. To fix this, provide proof. Otherwise, stop making the claims. Unfortunately with the frequency these kinds of products come out of YC, it seems like maybe YC coaches these companies as if this is an effective way to communicate.

      • dang 17 hours ago

        The only coaching going on with Launch HNs is from me and tomhow, and I can tell you that we're constantly urging people to tone down grand claims, provide concrete examples, accessible demos, and so on—partly because it makes the posts more interesting, and partly to reduce surface area for the snarky and rigid objections that internet forums optimize for.

        We don't do a perfect job of this, because (1) Launch HN coaching is on top of our main jobs running HN and we only have so many hours; and (2) startup founders' priority is working on their startup (as it should be!). They only have so many cycles for reworking everything to suit HN's preferences, which are idiosyncratic and at times curmudgeonly or cynical. Curmudgeons and cynics can't be convinced in the first place so it's not a good idea for a founder to put too much time into indulging them.

        Some of what you're saying here boils down to that their home page shouldn't have any marketing tropes at all (e.g. testimonials, companies-using-us, etc.). I don't like those tropes either, but this is an example of what I mean by an idiosyncratic preference. Companies do that kind of thing because, obviously, it works. That's how the world is. The only thing that you accomplish by angrily blaming a startup founder for doing standard marketing is to make the discussion dyspeptic and offtopic. And yes, I do use the word "dyspeptic" too much :)

        • ModernMech 16 hours ago

          I mean, you can dismiss me by calling me a cynical curmudgeon (which is not inaccurate), but from my perspective their website doesn't try to convince -- it tries to bamboozle. I don't think it's idiosyncratic at all to expect that claims made should be proven and supported, and that companies should present themselves with integrity and be genuine in their representations.

          > Curmudgeons and cynics can't be convinced in the first place so it's not a good idea for a founder to put too much time into indulging them.

          I'd say we're just not convinced by marketing lingo and puffery. I was convinced by the simple README containing code and transparent evidence that a fellow HNer put up in their personal capacity, so maybe you can direct the Nia team to that as an example of how to properly convince curmudgeons and cynics.

          • dang 15 hours ago

            Kudos to you for "which is not inaccurate" and the subtle shift to "we" - that made me smile.

            Personally my tastes are much the same as yours, but we're asking for too much if we want startups to stop doing normal marketing.

      • pdyc 19 hours ago

        i am interested in knowing what would be the correct way to do it according to your checklist. For example you said testimonial from twitter can be bots, which testimonial according to you would give you confidence that product is genuine?

        • ModernMech 18 hours ago

          Okay let's dissect it. First, I will say since this is a for-profit corporate website and they are trying to get something from me, I approach it with a fully skeptical, 0 benefit of doubt perspective.

          What's the gif supposed to tell me? It's supposed to demo the product and give me a feel for its capabilities. But it just flits around and goes so fast, offers zero explanation for anything, it just leaves me disoriented. So at minimum, this needs captions and it needs to go about 2x slower. But really, this one GIF should not be the most substantive element on the first page relating to the actual product and what it does. Trust lowered.

          Moving on to the "company carousel", which is trying to say "these other companies trust us so you should too". They're trying to ride on the reputations of Stanford, Cornell, Columbia, UPenn, Google, etc. as a sort of pseudo-endorsement, because they cannot post real endorsements from these institutions, because they do not exist (doesn't YC have legal counsel to tell them this is illegal?). How are engineers using Nia at Stanford? We don't know, Nia will not say, likely because no one at Stanford is using it in any real capacity that is impressive enough to put on the front page of the website. If they were, then why wouldn't Nia tell us about that rather than just flashing the Stanford logo? So the logo suffices, and I guess the more logos the better. Trust lowered.

          Next the investor list: who is this for and what does it communicate? It appears to be a list of Chiefs, VPs, Co-Founders, and various funds who are deemed to be "world class", which is just another parade of logos but for a different audience, likely other investors who know these people. Maybe this speaks to some people in terms of the project having a solid financial backing but that's a smokescreen to distract you from the fact there's no actual business plan here aside from running on the VC treadmill and hoping to get acquired by one of your customers and/or investors. Trust lowered.

          Then we get to the Twitter parade, which is a third instance of "just trust us bro". And it includes such gems as "Can confirm, coding agents go hard" and "go try Nia, go into debt if you have to". Testimonials are for products I can't try myself, this seems like something that can be demoed, so why isn't it? Why did they opt to devote all this space to show a bunch of random people saying random uninteresting things about their product, rather than use the space to say more interesting things about their product? Because the testimonials are a distraction from the actual product. Trust lowered.

          Again, I'm left asking: Why do I have to listen to and trust these other people if the technology is so good? Why am I halfway down the page reading this thing, and I've yet to hear any specifics about how this thing works or what it does for me. I was told other people are using it but not how, I was told other people invested in it but not how much, and I was told some companies are maybe using it but not in what capacity.

          So in summary, this page is: "Look how shiny! You trust us. No really, you can trust us! Seriously, look at all these people, who say you can trust us, you seriously can! Now give us money."

          So to answer your question:

          > what would be the correct way to do it according to your checklist.

          Don't do any of the things that were done, and instead lead with the product. Prove all claims made. If a claim can't be proven don't make it. Stand behind your technology rather than testimonials.

          • replwoacause 14 hours ago

            Well put. But what you’ve identified here is pretty much the norm for ~90% startup/SAAS sites. They all just regurgitate this formula.

            • akcho 11 hours ago

              Maybe worth considering whether this formula is still effective.

          • fazkan 16 hours ago

            @dang now that he has made his point, shouldn't the thread be made undead?

            • ModernMech 14 hours ago

              My snark shall never be resurrected, lest it thirst for brains.