mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-31 19:16:29 +00:00
74 lines
2.7 KiB
TypeScript
74 lines
2.7 KiB
TypeScript
/**
|
|
* Plugin discovery — both delivery modes:
|
|
*
|
|
* - BUNDLED: every `src/plugins/<name>/plugin.{ts,tsx}` default-exporting a
|
|
* `HermesPlugin` registers automatically (vite glob — drop a folder in).
|
|
* None ship in-tree today; reference/demo plugins live in the companion
|
|
* `hermes-example-plugins` repo.
|
|
* - RUNTIME: the on-disk door (`<hermes home>/desktop-plugins/<name>/plugin.js`)
|
|
* — the agent's/user's door, watched + hot-reloaded by the runtime loader.
|
|
*/
|
|
|
|
import { createPluginContext, type HermesPlugin } from './plugin'
|
|
import { pluginActive, publishPlugin } from './plugins-store'
|
|
import { watchRuntimePlugins } from './runtime-loader'
|
|
|
|
const modules = import.meta.glob<{ default: HermesPlugin }>('../plugins/*/plugin.{ts,tsx}', { eager: true })
|
|
|
|
// One-shot init guard. Contributions themselves register by id (re-registering
|
|
// is idempotent), but the disk-door watcher setup below (watchRuntimePlugins)
|
|
// must NOT run twice — so discovery is guarded to a single pass, not re-run on
|
|
// HMR.
|
|
let loaded = false
|
|
|
|
export function discoverBundledPlugins(): void {
|
|
if (loaded) {
|
|
return
|
|
}
|
|
|
|
loaded = true
|
|
|
|
for (const [path, mod] of Object.entries(modules)) {
|
|
const plugin = mod.default
|
|
|
|
if (!plugin?.id || typeof plugin.register !== 'function') {
|
|
console.warn(`[plugins] ${path} has no valid default HermesPlugin export — skipped`)
|
|
|
|
continue
|
|
}
|
|
|
|
// Same inventory + live-toggle contract as runtime plugins: each bundled
|
|
// plugin publishes a record with activate/deactivate handles, and a
|
|
// persisted disable survives boots by skipping registration here.
|
|
const record = { id: plugin.id, name: plugin.name ?? plugin.id, kind: 'bundled' as const }
|
|
let disposers: (() => void)[] = []
|
|
|
|
const activate = () => {
|
|
disposers.forEach(dispose => dispose())
|
|
disposers = []
|
|
|
|
try {
|
|
plugin.register(createPluginContext(plugin.id, dispose => disposers.push(dispose)))
|
|
publishPlugin({ ...record, status: 'loaded' })
|
|
} catch (error) {
|
|
console.error(`[plugins] ${plugin.id} failed to register`, error)
|
|
publishPlugin({ ...record, status: 'error', error: error instanceof Error ? error.message : String(error) })
|
|
}
|
|
}
|
|
|
|
const deactivate = () => {
|
|
disposers.forEach(dispose => dispose())
|
|
disposers = []
|
|
}
|
|
|
|
publishPlugin({ ...record, status: 'disabled' }, { activate, deactivate })
|
|
|
|
if (pluginActive(plugin.id, plugin.defaultEnabled ?? true)) {
|
|
activate()
|
|
}
|
|
}
|
|
|
|
// The SELF-MAINTAINING disk door (fs-watched hot reloads, slow folder
|
|
// reconciliation) — the runtime loader pipeline's real, shipping consumer.
|
|
watchRuntimePlugins()
|
|
}
|