Connectors multi-instance, OpenSandbox storage backend, per-agent plugin toggle - #574
Merged
jubaoliang merged 5 commits intoSep 6, 2026
Conversation
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
This PR bundles several unrelated feature/chore changes that were sitting together in the working tree, split into one commit per requirement for reviewability.
list_visible), with DB migration013_connector_instances(schema v13).emoji/label/summary) to ~30 bundled expert skills'SKILL.mdfrontmatter — no logic changes.xfwd: truefix (preserves browser origin for OAuth callbacks).Known deviations (shared/interwoven files)
A few files touch more than one of the above features and were kept whole in a single commit rather than split line-by-line:
src/octop/infra/errors.py, backendi18n/{en,zh}.json, and dashboardlocales/{en,zh}.jsonare committed in full with the connectors commit (commit 1), sinceErrorCode.CONNECTOR_NAME_TAKENis referenced by the connectors router at that point. This means commit 1 also carries some strings/enum members that only become "live" once the storage/plugins commits land (safe — unused additions, nothing missing).src/octop/infra/agents/manager.pyandtests/unit/agents/test_mcp_tool_cache.pyare committed whole with the plugins commit (commit 3), even thoughmanager.pyalso contains connectors-related (list_visible) and opensandbox-related changes, because the new integration testtest_agent_plugin_switch_defaults_on_and_preserves_toolsdepends on the per-agent plugin logic in that file to pass.Verification
Result:
2949 passed, 8 skipped— all green (format/lint/typecheck run before tests in thealltarget; test phase completing confirms all prior phases passed).Commits
feat(connectors): support multiple connector instances and shared connectorsfeat(storage): add OpenSandbox remote sandbox storage backendfeat(plugins): add per-agent plugin toggle, move plugin config to Personalizationfeat(experts): add catalog display metadata to bundled skillschore: misc unrelated fixes