closeBot.listFolders lists the hierarchy that organizes bots and personas.
automations/list-closebot-folders.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List CloseBot bot and persona folders.
closeBot.listFolders lists the hierarchy that organizes bots and personas.
import { automation, onDashboardRun } from "automate.ax"
import { closeBot } from "automate.ax/closebot"
export default automation("List CloseBot folders", () => {
onDashboardRun({ title: "List folders" })
closeBot.listFolders()
})