OS-1668: Rename island and toolkit APIs to Mentra Engine#3411
Merged
aisraelov merged 3 commits intoJul 11, 2026
Conversation
Contributor
📋 PR Review Helper📱 Mobile App Build✅ Ready to test! (commit 🕶️ ASG Client Build⏳ Waiting for build... 🔀 Test Locallygh pr checkout 3411 |
Contributor
PR Agent Orchestrator State{
"cycle": 4,
"fixRound": 0,
"totalReviewerRuns": 4,
"consecutiveNoNewReviews": 4,
"openFindings": [],
"resolvedFindings": [],
"nitFindings": [],
"phase": "discovery",
"status": "in_progress",
"lastPair": [],
"stagnationFixRounds": 0,
"lastOpenCount": 0,
"fingerprintReopenCounts": {},
"mutedFingerprints": []
} |
Contributor
🤖 PR Agent Review — cycle 4✅ No blocking findings · 0 blocking · 0 nits No model reviews ran this cycle. Updated automatically by the PR Agent Orchestrator each review cycle. Nits do not block merge. |
Deploying mentra-live-ota-site with
|
| Latest commit: |
d2f354a
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://ace25a8c.mentra-live-ota-site.pages.dev |
| Branch Preview URL: | https://philippe-os-1668-publish-the.mentra-live-ota-site.pages.dev |
Deploying mentra-store-dev with
|
| Latest commit: |
d2f354a
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://a21e6e9f.augmentos-appstore-2.pages.dev |
| Branch Preview URL: | https://philippe-os-1668-publish-the.augmentos-appstore-2.pages.dev |
Deploying dev-augmentos-console with
|
| Latest commit: |
d2f354a
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://a09a2407.dev-augmentos-console.pages.dev |
| Branch Preview URL: | https://philippe-os-1668-publish-the.dev-augmentos-console.pages.dev |
Deploying prod-augmentos-account with
|
| Latest commit: |
d2f354a
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://68eb8792.augmentos-e84.pages.dev |
| Branch Preview URL: | https://philippe-os-1668-publish-the.augmentos-e84.pages.dev |
aisraelov
added a commit
that referenced
this pull request
Jul 11, 2026
Dev's #3411 renamed @mentra/island to @mentra/engine (toolkit → engine) across every file this branch deletes or edits. Resolution re-expresses the ripout in the engine world: - Files this branch deletes (host SocketComms/WSM/RestComms/ws-types, BackendUrl, NonProdWarning, and the module RestComms): deletion wins; dev's only changes to them were the mechanical rename. - Content conflicts: this branch's version plus dev's exact rename sweep (@mentra/island → @mentra/engine, toolkit → engine, useToolkitSnapshot → useEngineSnapshot), with comment wording aligned to dev's engine naming. tsc clean on the merged tree (mobile src + modules).
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
@mentra/islandto@mentra/enginemobile/modules/islandtomobile/modules/engine, including theengine.tsimplementation entrytoolkittoengine, includingengine.*consumers,EngineSubmitReportInput, anduseEngineSnapshotWhy
The library is intended to be published and consumed as Mentra Engine. The repository still used both the internal
islandpackage name and the oldertoolkitAPI/product name across its build, test, documentation, and consumer surfaces.Impact
Consumers must import the package and namespace as:
Runtime behavior is unchanged. This is a breaking naming change that makes package resolution, the public API, local builds, CI, documentation, and the OEM example consistently use Mentra Engine.
Validation
bun x tsc --noEmit -p tsconfig.jsoninmobile/modules/enginebun run compileinmobilebun run buildinmobile/modules/enginebun test srcinmobile/modules/engine(220 passing)./scripts/check-mobile-runtime-boundary.shnpm pack --dry-runinmobile/modules/engineengineandEngineSubmitReportInputtoolkitterms belong only to separate Dev/UI/display toolkitsgit diff --checkNote
Medium Risk
Wide breaking rename across mobile, SDK, CI, and docs; low logic risk if validation passed, but every consumer must update package and
enginenamespace imports.Overview
Breaking rename of the OEM integration runtime from
@mentra/island/toolkitto@mentra/engine/engine: workspace pathmobile/modules/island→mobile/modules/engine, public entryengine.ts, and consumers useimport { engine } from "@mentra/engine"withengine.configure()/engine.start()and related types (e.g.EngineSubmitReportInput,useEngineSnapshot).CI OEM workflows now watch and build
mobile/modules/engine/**, forbid@mentra/engine/internalin the example OEM app, and describe the reference host as built against the public@mentra/engineentry. Agent specs and cloud-v2 docs are updated so product language says Mentra Engine /engine.*instead of toolkit /@mentra/island(separate Dev/UI “toolkit” products are left as-is).No runtime behavior change—this is naming and wiring consistency for publish/consumption as Mentra Engine.
Reviewed by Cursor Bugbot for commit d2f354a. Bugbot is set up for automated code reviews on this repo. Configure here.