
Security News
TC39 Advances Temporal to Stage 4 Alongside Several ECMAScript Proposals
TC39’s March 2026 meeting advanced eight ECMAScript proposals, including Temporal reaching Stage 4 and securing its place in the ECMAScript 2026 specification.
@instructure/platform-learning-agent-launcher
Advanced tools
Initial React package scaffold for launching the Learning Agent user experience.
Initial React package scaffold for launching the Learning Agent user experience.
pnpm add @instructure/platform-learning-agent-launcher
{
"@instructure/platform-provider": "^0.1.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"@instructure/ui-buttons": "^10.0.0",
"@instructure/ui-svg-images": "^10.0.0"
}
import { PlatformUiProvider } from '@instructure/platform-provider'
import { LearningAgentLauncher } from '@instructure/platform-learning-agent-launcher'
import '@instructure/platform-learning-agent-launcher/styles'
export function Example() {
return (
<PlatformUiProvider executeQuery={async () => ({})} currentUserId="12345">
<LearningAgentLauncher
learningAgentPath="/lms-launcher"
lmsPathname="/courses/42/modules/items/9"
lmsDomain="canvas.example.edu"
lmsHasAthenaUser={false}
/>
</PlatformUiProvider>
)
}
import { PlatformUiProvider } from '@instructure/platform-provider'
import { QueryClient } from '@tanstack/react-query'
import { LearningAgentLauncher } from '@instructure/platform-learning-agent-launcher'
import '@instructure/platform-learning-agent-launcher/styles'
const queryClient = new QueryClient()
export function ExampleWithDefaults() {
return (
<PlatformUiProvider
executeQuery={async () => ({})}
currentUserId="12345"
locale="en"
timezone="America/Denver"
appContext="canvas-academic"
queryClient={queryClient}
>
<LearningAgentLauncher />
</PlatformUiProvider>
)
}
All LearningAgentLauncher props are optional.
Temporary behavior note: when lmsHasAthenaUser is false, the launcher renders nothing (null). This is a temporary rollout behavior until Canvas supports multiple feature flags.
label?: string
Launch Athena.enabled?: boolean
true.learningAgentDomain?: string
https://studywithathena.com.learningAgentPath?: string
/lms-launcher.lmsPathname?: string
lmsPathname.window.location.pathname when omitted.lmsDomain?: string
lmsDomain.myuniversity.instructure.com.window.location.host when omitted.lmsUserId?: string
lmsUserId.currentUserId from PlatformUiProvider when omitted.lmsHasAthenaUser?: boolean
false, the component returns null and does not render a launcher button (temporary until Canvas has multiple feature flags).lmsHasAthenaUser.false.lmsSource?: string
lmsSource.appContext from PlatformUiProvider when omitted.locale?: string
locale.locale from PlatformUiProvider when omitted.timezone?: string
timezone.timezone from PlatformUiProvider when omitted.# Run tests
pnpm test
# Run tests with coverage
pnpm test --coverage
# Build
pnpm build
# Type check
pnpm type-check
FAQs
Initial React package scaffold for launching the Learning Agent user experience.
We found that @instructure/platform-learning-agent-launcher demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
TC39’s March 2026 meeting advanced eight ECMAScript proposals, including Temporal reaching Stage 4 and securing its place in the ECMAScript 2026 specification.

Research
/Security News
Since January 31, 2026, we identified at least 72 additional malicious Open VSX extensions, including transitive GlassWorm loader extensions targeting developers.

Research
Six malicious Packagist packages posing as OphimCMS themes contain trojanized jQuery that exfiltrates URLs, injects ads, and loads FUNNULL-linked redirects.