
Two types of apps
Agents can create two types of applications:| Type | Best for |
|---|---|
| React apps | Rich interactive tools using Chakra UI, Recharts, and Lucide icons as built-in component libraries |
| HTML apps | Custom layouts, 3D and map visualizations, and anything that fits better as plain HTML/JS/CSS |
abundly (such as loadAgentDocument and queryDocumentData) use the same toolbox execution path as abundly.callTool with the matching tool names when the app runs in an agent context. The agent chooses the appropriate type based on your request, but you can tell it to use one or the other if you have a preference.
Multi-file apps
Simple apps live in a single document, but larger projects can be split across multiple files in a folder — for example, anindex.html entry file alongside separate CSS, JavaScript, and image files. When a folder contains an entry file named index.html, index.jsx, or index.tsx, a Run app button appears directly on the folder row, letting you launch the whole folder as one app without navigating into it.
Multi-file apps work across all document scopes — agent, workspace, team, and chat. Any folder with an entry file shows the Run app button, regardless of which library it lives in.
How apps work
Interactive apps are shown alongside your other agent documents in the Documents view. When you open an app document, you use a mode selector:- View mode — The live rendered application (default view)
- Text mode — The source code (React/JSX or HTML)
- Changes mode — A history of all changes made to the app
App scopes
Apps can live in multiple scopes depending on where they’re created:| Scope | Persistence | Best for |
|---|---|---|
| Chat document | Scoped to the current conversation; listed in the Chat Documents panel | One-off visualizations, quick prototypes, temporary tools |
| Agent document | Saved to the agent’s Documents panel, available outside the conversation | Reusable apps, apps you want to publish or share |
| Workspace / Team document | Shared across the workspace or team | Shared tools, team dashboards, cross-agent apps |
- Ask the agent: “Save this as an agent document”
- Or open the document menu in the panel and choose Save as agent document
Publishing apps with data
Like other agent documents, apps can be published with a public URL. Anyone with the link can view and interact with the app. If your app reads from an agent database, you need to publish that database too—otherwise the app won’t have data to display. When publishing a database, you choose what public viewers can do:
| Permission | What it allows |
|---|---|
| Read | View data (required for dashboards and data displays) |
| Create | Submit new records (enable for public forms) |
| Update | Modify existing records |
| Delete | Remove records |
Apps that call agent tools (for example, HTTP requests through an API capability) work in the agent chat but not on public share links — the publish dialog warns you if this applies to your app.
Typical use cases
Dashboards and data browsers- Sales metrics with filters by region and date
- Project status boards showing tasks by stage
- Inventory views with search and category filtering
- Customer feedback forms
- Event registration
- Order intake forms that write to a database
- Approval workflows with action buttons
- Scheduling views with drag-and-drop
- Comparison tools for evaluating options
- Pricing calculators for your website
- Quote generators for sales teams
- Interactive reports for clients
Real-world example
A TV production company used Abundly to build a photographer scheduling system. The agent created its own database and interactive dashboard for visualizing and managing schedules. Staff could view the schedule, and the agent could suggest and apply changes through conversation.
Behind the Scenes: Making a Scheduler Agent for SVT
Full case study showing how the agent built its own database and dashboard for a real production workflow
Learn more
Agent Databases
The data layer that powers interactive apps
Agent Documents
How apps fit into the document system
Code Execution and Scripts
Code that runs for processing and automation

