Live data from Hacker News

Show HN: ContextVault – Shared memory layer for your AI and your team

contextvault.dev

1–10 of 19 posts

Show HN: ContextVault – Shared memory layer for your AI and your team

#1
Hi HN,

I'm Kevin. I built ContextVault because I kept running into the same problem with AI tools.

Every project accumulated prompts, coding conventions, architectural decisions, examples, and other pieces of context that made the models significantly more useful. The problem was that this information quickly became fragmented. Some lived in ChatGPT Projects, some in Claude, some in Markdown files, some in internal documentation, and some only existed in previous conversations.

Late last year, I realized several people on our team were solving the same problems independently because previous work was difficult to discover. I assumed this problem existed in other large organizations, so I started experimenting with a shared context store.

I started with a local proof of concept and a rough MCP server. If I asked questions like "have we done this before?", the AI could search the database and find the most relevant item to review. If a conversation produced something worth remembering, I could say "save what we learned to the vault." After using that workflow for a few months, I found myself relying on it every day.

I decided to make it available to others. I've never built a product before, and I thought it would be a valuable learning exercise to do.

ContextVault is a a product for storing and organizing reusable context that can be shared across people, projects, and AI tools. Instead of copying the same instructions into every conversation, you can store them once and retrieve them through our MCP server. It is not limited to any one AI client. Your team can use ChatGPT, Codex, Claude, and Gemini and save/read from the vault all the same.

It currently supports:

- OAuth support for GitHub, Google, Microsoft, and GitLab

- Structured context records with metadata

- Multi-user organizations with role-based access

- MCP server for all AI clients that support MCP

- Organization-scoped storage keeps tenant data separated

- Group visibility rules decide which memories each member can search

- Authenticated MCP access ties every request back to a real user and workspace

- Feedback signals can be captured now and used to improve ranking later

- Supports desktop versions of AI clients, not just their CLI versions (mobile app support should also work)

The backend is built with PostgreSQL, pgvector, Node.js, and TypeScript. The frontend uses Next.js, React, Tailwind CSS, and shadcn/ui (frontend is not my strong suit, please be kind). Authentication is handled with Clerk and billing with Stripe.

I started building this for my own workflow, but after relying on it for several months I decided to make it available to others. We soft launched a few weeks ago, and I find it useful as a daily tool.

Essentially, ContextVault offers a way to track memories and context, distribute them instantly to your team, and help reduce duplicated work.

I'd be interested in feedback on a few things:

- How are you managing reusable AI context today?

- Are you relying on similar tools, or do you keep everything in Git or Markdown?

- If you've built something similar, what did you learn that you would do differently?

You can see the product here:

https://www.contextvault.dev

Show HN: ContextVault – Shared memory layer for your AI and your team
contextvault.dev

Re: Show HN: ContextVault – Shared memory layer for your AI and your team

#10

So instead of markdown files in a repo, it's markdown files in a nosql database?

Its not Markdown files in nosql. The context is extrapolated from a session and broken out into a record Postgres. You decide in a session what memory/context to save to the vault, the next time you ask about it, you will receive that (and refresh the AIs current context in the process).

Consider the non-developer type jobs out there who may be using AI, but the AI their team is using has no clue what the other person is doing or has done. This tool helps them bridge that gap. If one person has a pile of markdown files (not talking about skills, agents, etc) and the others do not, they won't get the same benefit. Instead of having hundreds of 'solutions' or 'learnings' in a file, you store it in the cloud and depending on their role/group assignment, its available to their AI client to recall later.

Post reply on HN