Fix stale omni_assistant references (OmniBioAgent rename blast radius) - #31
Merged
Merged
Conversation
The bio_agent plugin (formerly omni_assistant) was renamed on the backend (omnibioai repo: plugins/bio_agent/plugin.json now has slug "bio_agent", mount "/plugins/bio_agent/"), but this repo's Workbench launcher link and README docs were never updated to match. - src/ui/pages/Workbench.jsx: "Omni Assistant" label -> "OmniBioAgent" (matches Phase 1 display-name decision); url /_svc/workbench/plugins/omni_assistant/ -> .../plugins/bio_agent/. This was a dead link — the old slug is no longer mounted, only kept as a legacy read-fallback for historical run data. - README.md: two stale "Omni Assistant" / "Omni Assistant v2" mentions updated to "OmniBioAgent" / "OmniBioAgent v2". Rebuilt dist/ and dist/web/ (vite build / web:build) and confirmed the old omni_assistant string is gone from the compiled bundles and the new bio_agent/OmniBioAgent strings are present. dist/ is gitignored, so no bundle files are part of this commit.
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
Recon (previous session) found 3 stale references to the pre-rename plugin name
omni_assistant/"Omni Assistant" left over from the OmniBioAgent rename that already landed on the backend (omnibioairepo:plugins/bio_agent/plugin.json— slugbio_agent, mount/plugins/bio_agent/).Changes
src/ui/pages/Workbench.jsx— functional fix: the "Omni Assistant" launcher tile pointed at/_svc/workbench/plugins/omni_assistant/, which is a dead link (the old slug is only kept server-side as a legacy read-fallback for historical run data, peromnibioai/services/run_management/run_store.py). Updated to/_svc/workbench/plugins/bio_agent/and relabeled"OmniBioAgent"to match the Phase 1 display-name decision (no "OS", no parenthetical alias).README.md(Core Platform module list) — cosmetic:"Omni Assistant"→"OmniBioAgent".README.md(v0.8.0 roadmap row) — cosmetic:"Omni Assistant v2"→"OmniBioAgent v2".Verification
npm run build:uiandnpm run web:build) and confirmed the oldomni_assistantstring is fully purged fromdist/assets/*.jsanddist/web/assets/*.js, and the newbio_agent/OmniBioAgentstrings are present.dist/is gitignored, so no bundle files are included in this PR — rebuild was verification-only.*-unpackedcopies andomnibioai-dev-hub) that no otheromni_assistant/OmniAssistantreferences remain.Not merging — opening for review per usual process.