Glossary

TermMeaning
ItemAny first-class object in the catalog (operator, connection, payload, config, action, task, folder, report, asset, skill, agent, chat, usecase, table).
CatalogThe folder hierarchy that holds all items — the shared context the AI and the team work from.
lauiLeastAction Unique Identifier — the id of any catalog item.
OperatorPython code defining how a task runs (4 methods: initialize, run, check_completion, finish).
ConnectionCredentials + resource config + concurrency controls for an external system.
PayloadThe task-specific input (SQL, JSON, Python, string).
ConfigDefaults, schedule, retries, SLA, parameters — shared via an N-level hierarchy with locked/overridable values.
ActionReusable Python that runs at a lifecycle hook (pre / running / post / UI).
TaskAn instance: connection + operator + payload (+ config + actions), run on a schedule or on demand.
WorkflowA folder of related tasks.
PartitionA dimension of a task's primary key — same name + project + different partition = an independent instance.
logical_dateThe data period a run computes, injected as {{ds}} / {{logical_date}}.
next_run_dateThe scheduler trigger time; the cron fires when next_run_date ≤ now.
BackfillRunning a task for historical dates by assigning past logical_dates.
Catch-upAutomatic replay of missed cron slots after an outage/backfill, one logical date at a time.
SkillA markdown knowledge item the AI reads during generation or in the Report Explorer.
UsecaseA bundled pipeline blueprint (payloads + skills) an AI agent can read and implement; the runnable examples live in ai/usecases.
AgentA conversational AI item that backs the chat widget (optional MCP tool-calling).
ChatThe AI item that powers the generation wizard (AI > Operator/Action/Payload).
MCPModel Context Protocol — connect Claude Code / any MCP client to the catalog with your own AI subscription.
Report ExplorerThe business-user UI: ask in plain English, read live reports; skill-driven and permission-scoped.
MarketplaceWhere you discover, import, and publish operators, actions, payloads, skills, and usecases.

See also: Core concepts and the Concepts section.