export default { name: "example-plugin", tasks: [ { id: "hello-plugin", create() { return { id: "hello-plugin", title: "Hello From Plugin", async run() { return { plugin: "example-plugin", message: "Plugin task executed" }; } }; } } ] };