feat: 9 endpoint gaps — memory update, room remember, import/export, context, room-doc linking - #237
Open
ajianaz wants to merge 4 commits into
Open
feat: 9 endpoint gaps — memory update, room remember, import/export, context, room-doc linking#237ajianaz wants to merge 4 commits into
ajianaz wants to merge 4 commits into
Conversation
…context, room-doc linking (#216, #231) Layer 0 (uteke_client.rs): 9 new methods + ImportResult struct Layer 1 (commands.rs + lib.rs): 9 Tauri commands registered Layer 2 (types.ts + ipc.ts): 3 new interfaces + 9 IPC wrappers Layer 3 (ToolsView.svelte): 5-tab UI — memory update, room remember, import/export, context builder, room-doc linking Layer 4 (App.svelte + Sidebar.svelte): tools view routing + Wrench nav icon Closes #216 (Fill UtekeClient gaps: PUT /memory, POST /room/remember, POST /import, GET /export, POST /context) Closes #231 (Room-document linking: add/list/remove + doc/room/list)
🔍 Cora AI Code Review✅ No issues found. Code looks good! Review powered by cora-code · BYOK · MIT |
Fixes E0425 - State not in scope, get_uteke_client not found. Follows same pattern as memory_feedback command.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Implements 9 previously-untapped Uteke server endpoints across the full 5-layer Corin architecture.
#216 — Fill UtekeClient Gaps (5 endpoints)
/memory/room/remember/import/export/context#231 — Room-Document Linking (4 endpoints)
/room/document/list/room/document/add/room/document/remove/doc/room/listChanges (5-layer pattern)
uteke_client.rs): 9 methods +ImportResultstructcommands.rs+lib.rs): 9 Tauri commands registeredtypes.ts+ipc.ts): 3 interfaces + 9 IPC wrappersToolsView.svelte): New 5-tab Tools viewApp.svelte+Sidebar.svelte): Routing + Wrench nav iconTesting
Closes #216, #231