-
Notifications
You must be signed in to change notification settings - Fork 626
Fix: [BOUNTY $200] π The Great Memory Migration: Own Your Agentic Memory with Memanto + OKF #1844
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
charlieseay
wants to merge
1
commit into
moorcheh-ai:main
Choose a base branch
from
charlieseay:talos/bounty-1609-1786395079825
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
Fix: [BOUNTY $200] π The Great Memory Migration: Own Your Agentic Memory with Memanto + OKF #1844
Changes from all commits
Commits
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 |
|---|---|---|
| @@ -1 +1,24 @@ | ||
| """CLI migrate helpers β import memories from external providers into Memanto.""" | ||
| """ | ||
| Memanto CLI - Migration package. | ||
|
|
||
| Provides tools for migrating memory records from external sources | ||
| (Mem0, Letta, Supermemory, OKF files) into Memanto. | ||
| """ | ||
|
|
||
| from memanto.cli.migrate.runner import MigrationRunner | ||
| from memanto.cli.migrate.okf_loader import OKFLoader | ||
| from memanto.cli.migrate.mappers import ( | ||
| okf_record_to_memory, | ||
| mem0_record_to_memory, | ||
| letta_record_to_memory, | ||
| supermemory_record_to_memory, | ||
| ) | ||
|
|
||
| __all__ = [ | ||
| "MigrationRunner", | ||
| "OKFLoader", | ||
| "okf_record_to_memory", | ||
| "mem0_record_to_memory", | ||
| "letta_record_to_memory", | ||
| "supermemory_record_to_memory", | ||
| ] | ||
Oops, something went wrong.
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.
ποΈ Data Integrity & Integration | π Major | β‘ Quick win
π§© Analysis chain
π Script executed:
Repository: moorcheh-ai/memanto
Length of output: 511
π Script executed:
Repository: moorcheh-ai/memanto
Length of output: 16754
π Script executed:
Repository: moorcheh-ai/memanto
Length of output: 47018
π Script executed:
Repository: moorcheh-ai/memanto
Length of output: 29866
Fix the migration API wiring before merge.
memanto/cli/commands/migrate.pyimportsload_okf_bundle,load_export,run_migration, andwrite_preview, but the migration modules define none of these names.tests/test_okf.pyalso imports missingmap_okfandload_okf_bundlesymbols. This prevents the CLI and OKF tests from importing. Align the callers with the implemented APIs, or add the missing APIs. The CLI tests andmemanto migrateregistration already exist. The__init__imports do not show a circular dependency. The provider mapper functions still have no direct callers. Add the requiredexamples/migrations/bundle and recall validation for issue#1609if those deliverables are in scope.π€ Prompt for AI Agents