This repository was archived by the owner on Aug 2, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Implement local-first Recall architecture and daemon transport #5
Open
ptlnextdoor
wants to merge
6
commits into
main
Choose a base branch
from
aayu22809/fix-stale-import-lint
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
85ba856
fix: clear route b review blockers
ptlnextdoor e7cb1f4
feat: implement recall local-first architecture stack
ptlnextdoor 33fc084
chore: add remaining workspace changes
ptlnextdoor 50bb034
fix: harden daemon and index consistency
ptlnextdoor f2bf599
chore: apply remaining workspace updates
ptlnextdoor b9bb896
Move connector credentials to macOS Keychain
ptlnextdoor File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| <claude-mem-context> | ||
| # Memory Context | ||
|
|
||
| # [Recall/hamburg] recent context, 2026-05-07 10:45am PDT | ||
|
|
||
| Legend: 🎯session 🔴bugfix 🟣feature 🔄refactor ✅change 🔵discovery ⚖️decision 🚨security_alert 🔐security_note | ||
| Format: ID TIME TYPE TITLE | ||
| Fetch details: get_observations([IDs]) | Search: mem-search skill | ||
|
|
||
| Stats: 9 obs (3,300t read) | 133,379t work | 98% savings | ||
|
|
||
| ### Apr 20, 2026 | ||
| 7 10:24a ⚖️ Recall/Mumbai App — Full-Solution Expansion Prompt Requested | ||
| 8 " 🔵 Recall/Mumbai — Existing Architecture Bottlenecks Confirmed | ||
| 9 " ✅ Plan File Repurposed as Full Product Vision Master Prompt | ||
| 12 11:54a ⚖️ Recall — Full Product Vision Defined as Agent Build Prompt | ||
| 13 " 🟣 Phase 1A — Local AI Captioning Module Designed (captioner.py) | ||
| 14 " 🟣 Phase 1B–1C — Concurrent Ingest + FastAPI Daemon Architecture Designed | ||
| 15 " 🟣 Phase 2 — Six Source Connectors Designed with BaseConnector Interface | ||
| 16 " 🟣 Phase 1D + Phase 3 — Raycast HTTP Client Rewrite and Source-Filter UX Designed | ||
| 17 " ✅ New Dependencies Added to pyproject.toml for All Phases | ||
|
|
||
| Access 133k tokens of past work via get_observations([IDs]) or mem-search skill. | ||
| </claude-mem-context> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These new dependencies (
hnswlib,sentence-transformers,Pillow) are added as required install deps, but the code explicitly supports running without them (falls back to in-memory hot index / hash embeddings / no image embedding). Making them mandatory may cause installs to fail on platforms without wheels or a build toolchain. Consider moving them to an optional extra and using runtime imports (as you already do) so the base install remains lightweight and robust.