closeBot.listLibraryFiles lists uploaded, web-scraped, and synchronized knowledge files.
automations/list-closebot-library-files.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List files in the CloseBot agency library.
closeBot.listLibraryFiles lists uploaded, web-scraped, and synchronized knowledge files.
import { automation, onDashboardRun } from "automate.ax"
import { closeBot } from "automate.ax/closebot"
export default automation("List CloseBot library files", () => {
onDashboardRun({ title: "List library files" })
closeBot.listLibraryFiles()
})