bridgableplugin

bridgable_setup

Get framework install and first-render instructions.

bridgable_setup

Returns install and first-render instructions for using OpenBridge in a specific framework. Your agent calls this when a user asks "set up OpenBridge in React" or similar.

Arguments

NameTypeRequiredDescription
frameworkstringYesOne of: lit, react, vue, svelte, angular.

Returns

Markdown with:

  • npm install command (correct packages for the framework)
  • Global CSS and theme setup
  • Vite/compiler config if needed
  • A minimal "hello world" component render
  • Event handling pattern
  • Theme switching

Example

bridgable_setup("react")

Returns the full React setup guide including the Vite resolve.dedupe fix, import path patterns, and type/enum import instructions.

On this page