test-plugin.ts 293 B

1234567891011
  1. import * as plugin from "@opencode-ai/plugin"
  2. console.log("Available exports:", Object.keys(plugin))
  3. // Try to import tool
  4. try {
  5. const { tool } = await import("@opencode-ai/plugin")
  6. console.log("Tool function:", typeof tool)
  7. } catch (e) {
  8. console.log("Tool import error:", e.message)
  9. }