feat(memory-islands-action): add Memory Islands Manager Action plugin (v0.2.0) - #16
Open
skorphil wants to merge 2 commits into
Open
feat(memory-islands-action): add Memory Islands Manager Action plugin (v0.2.0)#16skorphil wants to merge 2 commits into
skorphil wants to merge 2 commits into
Conversation
Point the Releases link at the actual remote (toolfab-ai/owui-plugins).
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
Adds the Memory Islands Manager Action plugin (v0.2.0) — the companion Rich UI for the Memory Islands Filter. A message-toolbar button opens an inline panel that lists the active folder's learned facts, allows adding new facts, and deleting individual facts.
Key design points
$DATA_DIR/memory-islands/folder_memories.db(schema v2) via mirrored helpers (_resolve_data_dir,_init_databases,_load_folder_data) withtimeout=5and graceful sqlite3 error handling. The Action never writes the DB.parent.postMessage({type:'input:prompt:submit', data:{prompt:'<cmd>'}}, '*'); the Memory Islands Filter inlet intercepts@memory add: <fact>/@memory delete: <fact>and performs the write. No security-lowering settings required.data-factattribute recovered viabtn.dataset.fact.HTMLResponseis lazy-imported inside_render_panel_response(fastapi is not available in the dev environment);action()entry point is declared on theActionclass forscripts/validate_plugin.py, delegating toActionMixin.action.memory-islands-action/release-tag prefix andENABLE_UPDATE_NOTIFICATIONS/CHECK_PREVIEW_RELEASESadmin valves.Testing
python3 build.py(plugin gate): ruff check + format + 41 unit tests + 3 integration tests — all pass._parse_panel_commandprotocol (FR-011).scripts/validate_plugin.pyreportsOK memory-islands-action.Notes / deviations
feat/memory-islands-v020-rewrite(not trunk) because the integration test must run against the Filter's_parse_panel_command, which only exists on that branch; trunk lacks the memory-islands plugin entirely.test_panel_command_protocol_integration.py(nottest_integration.py) to avoid the pre-existing pytest basename collision betweenexport-chatandmemory-islandstest modules.Files
13 new files under
plugins/memory-islands-action/(src/, tests/, pyproject.toml, build.py, install.py, README.md, CHANGELOG.md).