aboutsummaryrefslogtreecommitdiff
path: root/bun.lock
Commit message (Collapse)AuthorAgeFilesLines
* Migrate Chat Persistence from localStorage to IndexedDB to Fix ↵Aryan Keluskar2025-11-061-0/+3
| | | | QuotaExceededError (#560)
* chore: update lockfileDhravya Shah2025-11-051-32/+599
|
* Upgrade to nextjs16 (#557)Karan Lokchandani2025-11-041-639/+78
| | | Signed-off-by: Karan <[email protected]>
* feat(browser-extension): webpages capture with markdown conversion (#548)10-31-feat_browser-extension_webpages_capture_with_markdown_conversionMaheshtheDev2025-11-031-0/+4
| | | | | | | | | | | | Improved browser extension memory saving with better content handling and added markdown conversion. ### What changed? - Enhanced memory content handling in the background script to prioritize different content types (explicit content, highlighted text, markdown, HTML, or URL) - Added HTML to markdown conversion using TurndownService when saving entire pages - Improved HTML handling by removing script tags before processing - Updated the web app to display the saved URL from metadata when available - Added turndown library and its type definitions as dependencies
* chore: remove unused packages (#551)VIshal Anton2025-11-021-11/+1
| | | Co-authored-by: antonvishal <[email protected]>
* feat(@supermemory/tools): capture assitant responses with filtered memory (#539)MaheshtheDev2025-10-281-1/+1
| | | | | | | | | | | | | | | ### Added streaming support to the Supermemory middleware and improved memory handling in the AI SDK integration. ### What changed? - Refactored the middleware architecture to support both streaming and non-streaming responses - Extracted memory prompt functionality into a separate module (`memory-prompt.ts`) - Added memory saving capability for streaming responses - Improved the formatting of memory content with a "User Supermemories:" prefix - Added utility function to filter out supermemories from content - Created a new streaming example in the test app with a dedicated route and page - Updated version from 1.3.0 to 1.3.1 in package.json - Simplified installation instructions in [README.m](http://README.md)d
* fix: bun lock build issue (#519)MaheshtheDev2025-10-241-30/+597
|
* fix prompt mutation in vercel middlewareShoubhit Dash2025-10-221-371/+30
|
* feat: ai sdk language model withSupermemory (#446)MaheshtheDev2025-10-101-0/+6285
|
* feat: layout design with theme improvements (#443)09-25-feat_layout_design_with_theme_improvementsMaheshtheDev2025-10-011-6791/+0
| | | | | | | | feat: layout design with theme improvements new improvements on light mode layout chore: settings page with graph header and memories list
* feat: new onboarding flow (#408)09-03-feat_new_onboarding_flowalexf372025-10-011-2/+6
| | | | This is the onboarding flow that you have all seen in my demo.
* feat: Claude memory integrationDhravya Shah2025-09-291-1/+6
|
* fix: buildDhravya Shah2025-09-281-15/+989
|
* fix: disable experimental React Compiler in Next.js config and remove ↵MaheshtheDev2025-09-281-5/+2
| | | | | | | | | | | | | | | | babel-plugin-react-compiler dependency. (#441) Removed React Compiler from the project configuration and dependencies. ### What changed? - Removed `reactCompiler: true` from the experimental options in `next.config.ts` - Removed `babel-plugin-react-compiler` dependency from `package.json` - Updated formatting in `next.config.ts` to use consistent indentation and semicolons ### Why make this change? React Compiler (formerly React Forget) is still in experimental phase and may be causing stability issues or unnecessary complexity in the build process. Removing it simplifies our dependency tree while maintaining full functionality. The PostHog update ensures we're using the latest version with any bug fixes or improvements.
* change /memories to /documents, remove unwanted dependency, biome formatDhravya Shah2025-09-151-3/+0
|
* extension: updated telemetry and batch upload (#415)MaheshtheDev2025-09-081-0/+3
|
* feat: openai python sdk (#409)CodeWithShreyans2025-09-031-4/+4
|
* feat: new tools package (#407)CodeWithShreyans2025-09-021-6/+21
|
* changes to chrome extension (#402)Dhravya2025-09-011-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ### TL;DR Added proper semicolons throughout the codebase, improved Twitter import functionality, enhanced memory search results display, and added various icon sizes for the browser extension. ### What changed? - Added semicolons at the end of statements throughout the browser extension codebase for consistent code style - Fixed the Twitter import button to only appear on the bookmarks page - Updated the saveMemoriesToSupermemory function to use the correct action type - Enhanced the memory search functionality to include related memories in search results - Added an expandable UI component in the chat interface to display memory search results with details - Updated the welcome page text to better describe supermemory's capabilities - Added multiple icon sizes (48x48 to 512x512) for better browser extension display across platforms - Updated the sign-in button text from "login in" to "Sign in or create account" - Added turbo flag to the Next.js dev script for faster development ### How to test? 1. Test the Twitter import functionality by visiting the Twitter bookmarks page 2. Verify that the memory search functionality works correctly in chat interfaces 3. Check that the expandable memory results UI displays properly with memory details 4. Confirm that the browser extension icons display correctly at different sizes 5. Verify the sign-in flow with the updated button text ### Why make this change? This change improves code consistency by standardizing semicolon usage throughout the codebase. It enhances the user experience by making the Twitter import feature more targeted and fixing the memory saving functionality. The expandable memory results UI provides users with more detailed information about their memories, making the search functionality more useful. The additional icon sizes ensure the extension displays properly across different platforms and contexts. Overall, these changes improve both the developer experience through consistent code style and the user experience through enhanced functionality and clearer UI elements.
* fixed bun lock issueMahesh Sanikommmu2025-08-291-221/+1091
|
* Merge branch 'main' into mahesh/browser-extensionMahesh Sanikommu2025-08-291-3/+260
|\
| * feat: migrate from react-markdown to streamdown (#394)mahesh/streamdown-integrationMaheshtheDev2025-08-291-2/+291
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before (react-markdown) | After (streamdown) | | --- | --- | | <img width="300" height="863" alt="Before: react-markdown rendering" src="https://github.com/user-attachments/assets/807d0d3c-8634-45f3-a34f-79dd8139bef2" /> | <img width="300" height="814" alt="After: streamdown rendering" src="https://github.com/user-attachments/assets/8a718a9c-d842-424b-8679-15036076b142" /> | ## Changes Made - **Dependencies**: Removed `react-markdown` and `remark-gfm`, added `streamdown@^1.1.6` - **Component Updates**: - Updated chat message rendering to use `<Streamdown>` component - Maintained all existing functionality for tool state rendering - Preserved prose styling classes for consistent appearance - **Code Quality Improvements**: - Fixed TypeScript type issues with message parts - Improved switch case structure with proper default cases - Replaced array index-based keys with stable message-based keys - Added `useCallback` for performance optimization - Fixed biome linting issues and switch case fallthrough warnings
* | welcome page tailwind css integrationMahesh Sanikommmu2025-08-281-0/+4
| |
* | updated bun lock fileMahesh Sanikommmu2025-08-281-5/+626
|/
* ci: temp add debugging to ai-sdk workflow (#392)shreyans/08-29-ci_temp_add_debugging_to_ai-sdk_workflowCodeWithShreyans2025-08-281-6/+6
|
* feat: openai js and python sdk utilities (#389)shreyans/08-27-feat_openai_js_and_python_sdk_utilitiesCodeWithShreyans2025-08-271-36/+67
| | | | needs testing
* fix: ai-sdk build (#378)CodeWithShreyans2025-08-231-7/+22
|
* sentry sourcemapsDhravya Shah2025-08-231-0/+3986