Commit graph

1101 commits

Author SHA1 Message Date
MaheshtheDev
3e5ea2fd9e extension: updated telemetry and batch upload (#415) 2025-09-08 05:19:10 +00:00
MaheshtheDev
99fd62d5f1 fix: billing page (#416) 2025-09-07 16:54:58 +00:00
CodeWithShreyans
84fea4a698
feat: add mcp migrate route (#410) 2025-09-04 16:46:47 +00:00
CodeWithShreyans
101f3817bd
feat: openai python sdk (#409) 2025-09-03 21:48:36 +00:00
Mahesh Sanikommu
ade1b6732c
fix: remove the scripting for extension (#411) 2025-09-03 13:01:24 -07:00
CodeWithShreyans
cae7051d1a
feat: new tools package (#407)
Some checks failed
Publish AI SDK / publish (push) Has been cancelled
2025-09-02 23:11:19 +00:00
MaheshtheDev
33277b492c ux: support integration (#405)
![image.png](https://app.graphite.dev/user-attachments/assets/b00fb7aa-0df8-4a9b-908f-598012e9bdbd.png)
2025-09-01 23:45:44 +00:00
MaheshtheDev
bf2d8e2f5f feat: add mcp url to clients in connect ai modal (#406)
![image.png](https://app.graphite.dev/user-attachments/assets/7f4136fc-2d10-46e9-a837-b09d2d6486f8.png)
2025-09-01 23:43:54 +00:00
Dhravya
48e23c13ed completely remove waitlist (#404) 2025-09-01 07:12:37 +00:00
MaheshtheDev
31463406ce fix: tour guide fix on overlap (#403) 2025-09-01 06:11:58 +00:00
Dhravya
65e8c5d525 changes to chrome extension (#402)
### 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.
2025-09-01 06:02:37 +00:00
MaheshtheDev
671a476d03 ui: default open connect ai modal (#401) 2025-09-01 04:58:50 +00:00
MaheshtheDev
bc2443e15c feat (extension): add claude.ai and t3.chat integration support (#400) 2025-09-01 04:02:40 +00:00
MaheshtheDev
3157b987fc feat: redesign MCP connection flow with step-based UI and v1 migration (#399)
[Screen Recording 2025-08-31 at 12.03.49 PM.mov <span class="graphite__hidden">(uploaded via Graphite)</span> <img class="graphite__hidden" src="https://app.graphite.dev/user-attachments/thumbnails/f6c88b1f-9f16-47aa-8d5f-6cde61b61e4f.mov" />](https://app.graphite.dev/user-attachments/video/f6c88b1f-9f16-47aa-8d5f-6cde61b61e4f.mov)
2025-09-01 04:00:45 +00:00
Dhravya Shah
dedd2fe612 Merge branch 'main' of https://github.com/supermemoryai/supermemory 2025-08-30 14:56:38 -07:00
Dhravya Shah
0537f34d2f temp disable waitlist for user testing 2025-08-30 14:56:32 -07:00
Mahesh Sanikommu
db00b0a89e
Merge pull request #395 from supermemoryai/mahesh/browser-extension
feat: browser extension
2025-08-29 18:34:52 -07:00
Mahesh Sanikommmu
a238aa06de fixed bun lock issue 2025-08-29 18:24:13 -07:00
Mahesh Sanikommu
666af9b962
Merge branch 'main' into mahesh/browser-extension 2025-08-29 18:22:51 -07:00
Dhravya Shah
12223f6fde fix: build 2025-08-29 17:18:02 -07:00
Dhravya Shah
93af958767
BETTER GRAPH (#398)
Co-authored-by: Dhravya Shah <dhravya@supermemory.com>
2025-08-29 17:10:11 -07:00
Mahesh Sanikommmu
cfee509950 migrated the search to API v4 2025-08-29 16:35:36 -07:00
Mahesh Sanikommmu
4dab6100b9 fix the css issue with button 2025-08-29 16:09:20 -07:00
MaheshtheDev
5b7f9ceb44 feat: migrate from react-markdown to streamdown (#394)
| 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
2025-08-29 19:45:47 +00:00
Dhravya Shah
815ed22051
Add claude GitHub actions 1756491853286 (#397) 2025-08-29 11:24:53 -07:00
MaheshtheDev
548b2b83a4 refactor(ui): optimize menu hover width and simplify text layout (#396)
Before

![image.png](https://app.graphite.dev/user-attachments/assets/a29a075c-52fc-421d-b3ab-d19163a0cade.png)

After

![image.png](https://app.graphite.dev/user-attachments/assets/2b2584ea-cb07-44ed-bec4-c3b23e70b4d2.png)

- Reduced menu hover width from 220px to 160px
- Simplified text positioning from absolute positioning to padding-left
- Removed the usage limit warning badge from the desktop menu
2025-08-29 16:38:19 +00:00
Mahesh Sanikommmu
c74357a6b0 tailwind css to popup 2025-08-28 22:48:57 -07:00
Mahesh Sanikommmu
d1cc3921c4 welcome page tailwind css integration 2025-08-28 19:45:56 -07:00
Mahesh Sanikommmu
33a70f5705 added app token registration for extension 2025-08-28 19:08:04 -07:00
Mahesh Sanikommmu
d797376948 updated bun lock file 2025-08-28 19:02:20 -07:00
Mahesh Sanikommmu
44c39430f7 feat: browser extension 2025-08-28 19:00:59 -07:00
CodeWithShreyans
2a8a97ee98
ci: fix ai-sdk publish (#393)
Some checks failed
Publish AI SDK / publish (push) Has been cancelled
2025-08-29 00:05:50 +00:00
CodeWithShreyans
b0a0b5d896
ci: temp add debugging to ai-sdk workflow (#392) 2025-08-28 23:04:21 +00:00
Mahesh Sanikommu
8f3b2bed1e
Merge pull request #384 from supermemoryai/08-24-feat_ui_integrations_page_with_shortcuts_auto_api_key_generation
feat (ui): Integrations page with shortcuts & auto API Key generation
2025-08-28 14:30:21 -07:00
Mahesh Sanikommmu
8df4ab898f fix the commetns 2025-08-28 14:28:25 -07:00
CodeWithShreyans
3a0e264b7e
feat: openai js and python sdk utilities (#389)
Some checks are pending
Publish AI SDK / publish (push) Waiting to run
needs testing
2025-08-27 23:34:49 +00:00
alexf37
1d5298e05e feat: support project-specific installation commands (#390)
This PR simply updates the installation dialog to allow you to choose a project which the command installs the MCP for.
![image.png](https://app.graphite.dev/user-attachments/assets/f1136780-2005-40a2-96bb-31b98791600d.png)
2025-08-27 17:15:26 +00:00
Dhravya Shah
6341d483a7 chore: add repository to make auto publish work
Some checks are pending
Publish AI SDK / publish (push) Waiting to run
2025-08-26 15:38:35 -07:00
Dhravya Shah
c6d455363d Merge branch 'main' of https://github.com/supermemoryai/supermemory 2025-08-26 15:34:09 -07:00
Dhravya Shah
c0c57a9fe9 includeFullDoc: true in search endpoint 2025-08-26 15:33:51 -07:00
Mahesh Sanikommu
d48d2bc07c
Merge pull request #377 from supermemoryai/mahesh/update-memory-detail-view
ui (memory detail): improved memory detail view and open chat
2025-08-26 14:53:02 -07:00
alexf37
a3955b55cb fix: memory limits cutoff (#385)
Previously, the badge with the memories limit in the consumer app menu was cut off on desktop, and now with this PR, it no longer is.
2025-08-26 21:51:39 +00:00
alexf37
29e1ebdc81 fix: missing dialog title in consumer mobile drawer (#386) 2025-08-26 21:50:20 +00:00
MaheshtheDev
3760558bf2 fix sentry server issue (#388) 2025-08-25 21:41:53 +00:00
Alex Foster
8da19c977e
feat: add 'last used' badge to login page (#387) 2025-08-25 14:37:14 -07:00
Mahesh Sanikommmu
f70dc78333 added connections as well 2025-08-25 12:17:27 -07:00
Mahesh Sanikommmu
bba2bf09f1 added connections as well to integrations view 2025-08-25 12:15:19 -07:00
Dhravya Shah
1fb521ef72 fix: redeploy 2025-08-24 14:50:44 -07:00
Mahesh Sanikommmu
51e17bfc17 added summary and memory details to memory detail view 2025-08-24 10:48:01 -07:00
Dhravya Shah
886807ce5b fix: name in wrangler 2025-08-23 18:37:37 -07:00