diff --git a/.opencode/plugin/build.ts b/.opencode/plugin/build.ts index 21e20c5..440a224 100644 --- a/.opencode/plugin/build.ts +++ b/.opencode/plugin/build.ts @@ -9,6 +9,7 @@ enum AppStatus { PROVISIONING = "PROVISIONING", RUNNING = "RUNNING", FAILED = "FAILED", + BUSY = "BUSY", TERMINATED = "TERMINATED", } @@ -159,7 +160,7 @@ export const BuildPlugin: Plugin = async ({ client, $ }) => { }, "chat.message": async () => { - await updateAppStatus(AppStatus.PROVISIONING); + await updateAppStatus(AppStatus.BUSY); }, }; };