Open-source tools worth adding to your portfolio
Several open-source projects surfaced today that are portfolio-friendly: MemPalace, an agentic memory tool that scored 100% on LongMemEval and is free on GitHub; OpenScreen, a demo-recording OSS with 23K stars for producing product videos; and Nano Stores SQL, a WASM SQLite binding for instant in‑browser data storage in React/React Native. Each project can be used as a building block for demos or incorporated into interview projects. (x.com) (x.com) (x.com)
# Open-source tools worth adding to your portfolio A small cluster of open-source projects broke out across developer circles on April 8, 2026, and they all share one trait: each one is easy to turn into a portfolio piece. MemPalace is pitching itself as a long-term memory layer for artificial intelligence agents, OpenScreen is an open-source app for polished product demos, and Nano Stores SQL turns Structured Query Language queries into reactive state for browser and mobile apps. (github.com 1) (github.com 2) (github.com 3) That combination matters because portfolio projects usually fail in one of three places. They either look unfinished, forget user context between actions, or rely on backend setup that takes longer to explain than the product itself. (github.com 1) (github.com 2) (github.com 3) MemPalace aims at the first of those infrastructure problems for artificial intelligence apps: memory. Large language model assistants are good at the current chat window, but they often lose track of details from older sessions unless developers bolt on a separate retrieval system. (github.com 1) (github.com 2) The project says it uses a “memory palace” structure, borrowing from the old mnemonic technique where people imagine placing facts in rooms of a building so they can walk back through them later. In MemPalace, conversations are organized into nested spaces so an agent can retrieve earlier facts without depending on a flat pile of text embeddings alone. (github.com) (mempalace.tech) The headline claim is the one that made developers stop scrolling: MemPalace says it scored 100 percent on LongMemEval, a benchmark created to test long-term memory in chat assistants. The LongMemEval repository describes the benchmark as a test suite for whether assistants can remember and use information across long conversations and later follow-ups. (github.com) (github.com) That does not automatically make MemPalace production-ready, but it does make it portfolio-ready. A hiring manager does not need to believe every benchmark claim to understand a demo that remembers a user’s preferences, project history, and prior decisions across multiple sessions. (github.com) (github.com) The second project, OpenScreen, solves a different portfolio problem: showing your work clearly. A good project demo often gets more traction than a good repository because recruiters, founders, and customers usually watch before they read. (github.com) (openscreen.vercel.app) OpenScreen describes itself as a free, open-source alternative to Screen Studio for making product demos and walkthroughs. Its public site highlights zoom effects, annotations, backgrounds, and desktop downloads for macOS, Windows, and Linux, which means a developer can record a polished feature demo without paying for a subscription tool first. (github.com) (openscreen.vercel.app) The project’s GitHub repository had about 25,100 stars when checked on April 8, 2026, which is slightly above the 23,000-star figure circulating in social posts. That kind of star count does not prove quality, but it does show unusually fast developer interest for a tool aimed at a very practical workflow. (github.com) (github.com) For portfolio use, OpenScreen is less about building with it and more about shipping with it. You can use it to turn a side project into a 45-second product video, show onboarding flows, or record before-and-after clips for a design or performance rewrite. (github.com) (openscreen.vercel.app) The third project, Nano Stores SQL, is a smaller but very useful building block for front-end developers. Nano Stores is a lightweight state management library, and this package wraps SQLite or PGLite so Structured Query Language queries can feed reactive stores directly. (github.com) In plain terms, it lets a React or React Native app keep real local data close to the interface without forcing you to stand up a server first. The repository says it supports browser use with Origin Private File System storage and mobile use through drivers like Expo SQLite, which makes it a shortcut for offline-first demos and local-first prototypes. (github.com) (docs.expo.dev) That is the kind of tool that makes interview projects feel more complete. Instead of mocking everything with arrays in memory, you can show filters, saved items, query-driven views, and persistent local state in a browser or phone app that still works after refresh. (github.com) (npmjs.com) Taken together, these three projects map neatly onto a modern portfolio stack. MemPalace can make an artificial intelligence feature remember, Nano Stores SQL can make a front end feel like a real app without backend overhead, and OpenScreen can package the result into a demo people will actually watch. (github.com) (github.com) (github.com) The broader pattern is that open source is increasingly supplying not just libraries, but presentation layers and product scaffolding. For job seekers and indie developers, that lowers the cost of building something that looks finished enough to be judged on the idea instead of the missing plumbing. (github.com) (github.com) (github.com)