> For the complete documentation index, see [llms.txt](https://docs.uptiq.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.uptiq.ai/start-here/glossary.md).

# Glossary

Reference entries for UI terms, acronyms, and platform-specific vocabulary used throughout the builder, plus richer concept entries for the domain ideas the screens reference. Reference entries are short (one to three sentences) and point to the page where the term is most fully discussed. Concept entries are longer (two to four sentences) and carry the teaching weight the screen pages keep light.

Entries are alphabetized. The page is intended for lookup — search the page, or follow an in-page anchor link from another page in the guide.

### A

#### Agent Builder <a href="#agent-builder" id="agent-builder"></a>

The UPTIQ surface you use to configure one AI agent — its identity, instructions, attached resources, runtime settings, and integrations. Reached at `/agent-builder/<agentId>`. See [Get Started](/agent-builder/get-started.md).

#### AI Gateway <a href="#ai-gateway" id="ai-gateway"></a>

The platform layer that every model request passes through. It enforces organization-level policies, including approved LLM families and providers.

#### Agent Capability <a href="#agent-capability" id="agent-capability"></a>

A dropdown on [Agent Behavior](/agent-builder/build/agent-behavior.md#agent-capability) that controls how deeply the agent thinks about each request. Default is `Auto`. Higher settings produce more thorough reasoning at higher latency and cost.

#### Agent Output Format <a href="#agent-output-format" id="agent-output-format"></a>

A dropdown on [Basic Details](/agent-builder/build/basic-details.md#agent-output-format) that controls how the agent's text responses are rendered. Options are `Markdown` and `Json`. Use `Markdown` for responses read by humans. Use `Json` when the host application parses the response.

#### Agent Preview <a href="#agent-preview" id="agent-preview"></a>

The chat-style left pane in the builder, where you can talk to the current draft of the agent without leaving the page. See [Get Started](/agent-builder/get-started.md).

#### API Call (skill) <a href="#api-call-skill" id="api-call-skill"></a>

A first-party skill type in the Skill Library that lets the agent reach external HTTP APIs at runtime. Use it for services not covered by [Apps & Services](/agent-builder/build/apps-and-services.md) connectors. Reached from [Adding a skill to the agent](/agent-builder/build/adding-a-skill-to-the-agent.md).

#### API Integration <a href="#api-integration" id="api-integration"></a>

One of the three deployment options for integrating an agent. See the **REST API** tab on [Agent Integration](/agent-builder/deploy/agent-integration.md). Produces credentials and endpoints for programmatic, server-side invocation of the agent.

#### App (in UPTIQ) <a href="#app-in-uptiq" id="app-in-uptiq"></a>

The container that an agent lives inside. Each agent is scoped to one app; the builder URL carries the `appId` query parameter. Apps are themselves scoped to an account.

#### App workspace <a href="#app-workspace" id="app-workspace"></a>

The editor for one app. It includes the build conversation, live preview, and action bar. See [App Workspace](/app-builder/app-workspace.md).

#### Autonomy <a href="#autonomy" id="autonomy"></a>

A slider on [Agent Behavior](/agent-builder/build/agent-behavior.md#autonomy) controlling how independently the agent commits to multi-step plans. Marked `Low` / `Med` / `High`; default `Med`. Higher autonomy means fewer confirmations between steps.

***

### B

#### Basic Details <a href="#basic-details" id="basic-details"></a>

The first section in [Manage Agent](/agent-builder/agent-builder.md), holding the agent's identity — avatar, name, description, and output format.

#### Build version <a href="#build-version" id="build-version"></a>

Each app build is a numbered version tied to a commit. The version selector marks the newest build as **Latest** and the live build as **Published**. Testing, security, and data flow reports each apply to one version.

***

### C

#### Checklist <a href="#checklist" id="checklist"></a>

A pre-built execution plan — a named sequence of skill calls the agent runs end-to-end when a request matches the checklist's criteria. See [Execution Plan/Checklist](/agent-builder/build/execution-plan-checklist.md) for the management page. See the [Planner](#planner) entry below for how a checklist fits into runtime execution.

#### CoT Reasoning <a href="#cot-reasoning" id="cot-reasoning"></a>

A toggle on [Agent Behavior](/agent-builder/build/agent-behavior.md#cot-reasoning-beta). When on, the agent generates a visible chain of thought as part of its response. See the [Chain of Thought](#chain-of-thought) entry below.

#### Chain of Thought <a href="#chain-of-thought" id="chain-of-thought"></a>

A reasoning approach where a language model produces, in addition to its final answer, the intermediate steps it took to reach the answer. Surfacing the chain of thought makes the agent's reasoning auditable — useful for high-stakes or compliance-sensitive tasks where the *how* matters as much as the *what*. The platform exposes this as the [CoT Reasoning](#cot-reasoning) toggle. The disabled `COT` nav entry is likely a richer view of the same concept that hasn't yet shipped.

#### Connect (button) <a href="#connect-button" id="connect-button"></a>

The action revealed on hover over an integration row in [Apps & Services](/agent-builder/build/apps-and-services.md). Initiates the integration's connection flow, typically OAuth, so the agent can call the service at runtime.

#### Connect BYOK <a href="#connect-byok" id="connect-byok"></a>

One of the three connect methods in [Connect Methods](/integrations/integrations-hub/connect-methods.md). Short for **Bring Your Own Key**. You supply the integration's credentials directly — usually an API key, OAuth client, or webhook secret — and the platform stores them encrypted for runtime use.

#### Connect Method <a href="#connect-method" id="connect-method"></a>

The authentication and connection pattern an integration uses in the [Integrations Hub](/integrations/integrations-hub.md). Every integration uses one of three connect methods — [Connect BYOK](#connect-byok), [Connect via UDG](#connect-via-udg), or [MCP Sandbox Account](#mcp-sandbox-account). See [Connect Methods](/integrations/integrations-hub/connect-methods.md).

#### Connect via UDG <a href="#connect-via-udg" id="connect-via-udg"></a>

One of the three connect methods in [Connect Methods](/integrations/integrations-hub/connect-methods.md). The integration authenticates through [UDG](#udg) instead of directly with the provider. Use it for partner-managed integrations where Uptiq handles the connection layer.

#### Custom Trigger <a href="#custom-trigger" id="custom-trigger"></a>

The detail form for editing or creating one trigger, reached from the expanded **Agent Triggers** modal. Carries three required fields: Trigger Source, Trigger Name, and Description. See [Triggers](/agent-builder/build/triggers.md).

#### Control Center <a href="#control-center" id="control-center"></a>

The Qore surface for monitoring and governing running apps account-wide. **Studio** is where you build apps and agents.

#### CVE / GHSA <a href="#cve-ghsa" id="cve-ghsa"></a>

Public advisory identifiers for vulnerabilities. CVE means Common Vulnerabilities and Exposures. GHSA means GitHub Security Advisory.

***

### D

#### DLP <a href="#dlp" id="dlp"></a>

Short for **Data Loss Prevention**. Google Cloud DLP detects sensitive data from a large catalog, including custom infoTypes.

#### Dataset <a href="#dataset" id="dataset"></a>

A collection of [test cases](#test-case) used to evaluate one agent. In [Evals](/agent-builder/test/evals.md), datasets can be created manually or generated with AI, and each agent can have up to 100 of them.

#### Draft Version <a href="#draft-version" id="draft-version"></a>

The header-strip popover that saves a snapshot of the current agent configuration as a recoverable version. See [The Builder Canvas](/agent-builder/the-canvas.md). Distinct from [Executor Version](#executor-version), which is the platform runtime version the agent is pinned to.

***

### E

#### Embed Agent <a href="#embed-agent" id="embed-agent"></a>

One of the three deployment options for integrating an agent. See the **Embed widget** tab on [Agent Integration](/agent-builder/deploy/agent-integration.md). Produces an embeddable widget that surfaces the agent as a chat on a web page.

#### Enforced (guardrail mode) <a href="#enforced-guardrail-mode" id="enforced-guardrail-mode"></a>

A guardrail mode under which the guardrail blocks execution when its check fails. Contrast with [Monitoring](#monitoring-guardrail-mode) mode, which logs but does not block. See [Guardrails (Beta)](broken://pages/OUgN2cy5TI1ktkNgAcjr).

#### Eval Run <a href="#eval-run" id="eval-run"></a>

One execution of a [dataset](#dataset) against a live agent in [Evals](/agent-builder/test/evals.md). An eval run tracks status, progress, per-test-case results, scores, and any generated suggestions.

#### Evals <a href="#evals" id="evals"></a>

The platform's offline evaluation framework for testing agent quality against scored datasets before deployment. Use it to build datasets, run them against a live agent, review scores, and apply AI-generated improvements. See [Evals](/agent-builder/test/evals.md).

#### Executor Version <a href="#executor-version" id="executor-version"></a>

The platform runtime version the agent is pinned to. Set on [Runtime & Versioning](/agent-builder/build/runtime-and-versioning.md#executor-version). Controls which features are available — for example, [PII Tokenization](broken://pages/ZryZVAnzLvPXJXz1em2n) is gated by executor version.

#### Export Agent <a href="#export-agent" id="export-agent"></a>

The action on [Export Agent](/agent-builder/deploy/export-agent.md) that packages the agent's full configuration into a portable bundle for reuse or deployment elsewhere.

***

### F

#### FAQ memory <a href="#faq-memory" id="faq-memory"></a>

A toggle on [Agent Behavior](/agent-builder/build/agent-behavior.md#faq-memory) controlling whether the agent uses stored FAQs and their canonical answers when a question matches a known FAQ. Default on.

***

### G

#### Guardrail <a href="#guardrail" id="guardrail"></a>

A validator that inspects content as it flows through the agent's execution pipeline. The platform organizes guardrails into four execution layers — input validation, pre-skill execution, post-skill execution, and output validation — and routes content through every active guardrail at the appropriate layer. A guardrail can pass content through, modify it, or block it. See [Guardrails (Beta)](broken://pages/OUgN2cy5TI1ktkNgAcjr).

***

### H

#### Headless Agent Integration <a href="#headless-agent-integration" id="headless-agent-integration"></a>

One of the three deployment options for integrating an agent. See the **JS SDK** tab on [Agent Integration](/agent-builder/deploy/agent-integration.md). The lowest-level invocation pattern — server-to-server, without UI scaffolding.

***

### I

#### Improve with AI <a href="#improve-with-ai" id="improve-with-ai"></a>

A button above the [Instructions](/agent-builder/build/instructions.md) editor. Runs an AI pass over the current instructions and proposes improvements for clarity, structure, and consistency.

#### Integrations Hub <a href="#integrations-hub" id="integrations-hub"></a>

The centralized catalog and management surface for third-party integrations in Uptiq. Use it to discover available integrations, configure credentials, and make integrations available to agents, skills, workflows, and apps. See [Integrations Hub](/integrations/integrations-hub.md).

#### infoType <a href="#infotype" id="infotype"></a>

Google Cloud DLP’s name for a detectable sensitive-data type. It includes built-in types, such as card numbers and emails, plus custom types.

***

### J

#### JavaScript Code (skill) <a href="#javascript-code-skill" id="javascript-code-skill"></a>

A first-party skill type in the Skill Library that lets the agent execute JavaScript code at runtime. Useful for custom logic that doesn't fit other skill types. Reached from [Adding a skill to the agent](/agent-builder/build/adding-a-skill-to-the-agent.md).

***

### K

#### Knowledge <a href="#knowledge" id="knowledge"></a>

The category of content the agent can read from at runtime — documents, files, and reference material — managed through the **Add Knowledge** action on the canvas. See [Attaching Knowledge to an Agent](/agent-builder/build/attaching-knowledge-to-an-agent.md).

***

### L

#### Layer 1: Input Validation <a href="#layer-1-input-validation" id="layer-1-input-validation"></a>

The first execution layer in [Guardrails (Beta)](broken://pages/OUgN2cy5TI1ktkNgAcjr#layer-1-input-validation). Runs on the inbound user message before any other processing.

#### Layer 2: Pre-Skill Execution <a href="#layer-2-pre-skill-execution" id="layer-2-pre-skill-execution"></a>

The second execution layer in [Guardrails (Beta)](broken://pages/OUgN2cy5TI1ktkNgAcjr#layer-2-pre-skill-execution). Runs before each skill is invoked by the planner.

#### Layer 3: Post-Skill Execution <a href="#layer-3-post-skill-execution" id="layer-3-post-skill-execution"></a>

The third execution layer in [Guardrails (Beta)](broken://pages/OUgN2cy5TI1ktkNgAcjr#layer-3-post-skill-execution). Runs after each skill completes, on the skill's output.

#### Layer 4: Output Validation <a href="#layer-4-output-validation" id="layer-4-output-validation"></a>

The fourth execution layer in [Guardrails (Beta)](broken://pages/OUgN2cy5TI1ktkNgAcjr#layer-4-output-validation). Runs on the final agent response before it leaves the agent.

#### Layout (tab) <a href="#layout-tab" id="layout-tab"></a>

The default tab on [The Builder Canvas](/agent-builder/the-canvas.md). Shows the agent and its attached resources as a node graph.

#### LLM <a href="#llm" id="llm"></a>

Short for **large language model**. An LLM reasons over requests and generates agent responses. Organization policies control which LLM families and providers an agent may use.

***

### M

#### Manage Agent <a href="#manage-agent" id="manage-agent"></a>

The configuration dialog that holds every substantive setting for the agent — basic details, instructions, behavior, skills, triggers, security, monitoring. Reached from the **Manage Agent** button in the header strip.

#### Markdown (output format) <a href="#markdown-output-format" id="markdown-output-format"></a>

One of two options for the [Agent Output Format](#agent-output-format). The agent's text responses render as Markdown — headings, bullets, code blocks, and links all formatted.

#### Masking provider <a href="#masking-provider" id="masking-provider"></a>

The tenant-level service that detects and tokenizes personally identifying information before it reaches the agent's model. The provider determines what entity types can be detected, which in turn determines what entity types can appear on the [PII Tokenization](broken://pages/ZryZVAnzLvPXJXz1em2n) exclusion list. If a tenant has no masking provider, the page shows the provider as `Off`.

#### Model family <a href="#model-family" id="model-family"></a>

A group of related models, such as GPT or Claude. An organization can restrict an agent to approved model families.

#### Model provider <a href="#model-provider" id="model-provider"></a>

The vendor that hosts a model, such as OpenAI, Anthropic, AWS Bedrock, or Azure OpenAI. An organization can restrict an agent to approved providers.

#### MCP <a href="#mcp" id="mcp"></a>

Short for **Model Context Protocol**. An open protocol for connecting language models to external tools and data sources through a standardized interface. The platform exposes MCP servers as a catalog under [MCP Tools](/agent-builder/build/mcp-tools.md); connecting an MCP server adds its tool set to the agent's reach. The same protocol underlies several Skill Library entries and the broader marketplace tabs in [Adding a skill to the agent](/agent-builder/build/adding-a-skill-to-the-agent.md).

#### MCP Marketplace <a href="#mcp-marketplace" id="mcp-marketplace"></a>

A filter tab in [Adding a skill to the agent](/agent-builder/build/adding-a-skill-to-the-agent.md) that lists third-party MCP servers beyond the first-party Skill Library and the Uptiq-curated marketplace.

#### MCP Sandbox Account <a href="#mcp-sandbox-account" id="mcp-sandbox-account"></a>

One of the three connect methods in [Connect Methods](/integrations/integrations-hub/connect-methods.md). Used for banking-core and certain financial-platform integrations delivered through Kinective. The connection exposes provider operations as MCP tools the agent can call at runtime.

#### MCP Server (skill) <a href="#mcp-server-skill" id="mcp-server-skill"></a>

A first-party skill type in the Skill Library that lets the agent connect to a third-party MCP server. Reached from [Adding a skill to the agent](/agent-builder/build/adding-a-skill-to-the-agent.md). Distinct from connecting an MCP through [MCP Tools](/agent-builder/build/mcp-tools.md), which uses the catalog flow.

#### Memory <a href="#memory" id="memory"></a>

A toggle on [Agent Behavior](/agent-builder/build/agent-behavior.md#memory) controlling whether the agent remembers user preferences across conversations. Default off. Distinct from [FAQ memory](#faq-memory).

#### Monitoring (guardrail mode) <a href="#monitoring-guardrail-mode" id="monitoring-guardrail-mode"></a>

A guardrail mode under which the guardrail runs its check but does not block execution on failure. Use as a staging step before promoting a new guardrail to [Enforced](#enforced-guardrail-mode) mode. See [Guardrails (Beta)](broken://pages/OUgN2cy5TI1ktkNgAcjr).

#### Monitoring (section) <a href="#monitoring-section" id="monitoring-section"></a>

The [Manage Agent](/agent-builder/agent-builder.md) section that lists the agent's historical executions, one row per run. Distinct from the guardrail mode above. See [Monitoring](broken://pages/cD46XWa7ZwMLNvtnC3yG).

#### Managed DB <a href="#managed-db" id="managed-db"></a>

The **Uptiq Managed DB** is a PostgreSQL database that Qore runs for an app.

***

### O

#### OnBuild <a href="#onbuild" id="onbuild"></a>

The trigger that runs automated tests when an app builds.

#### Online Evals <a href="#online-evals" id="online-evals"></a>

The platform's production-side evaluation system that scores real conversations in the background after an agent is deployed. It complements [Evals](#evals), which validates quality offline before deployment. See [Online-Eval](/agent-builder/monitor/online-eval.md).

***

### P

#### Pre-attached Skills <a href="#pre-attached-skills" id="pre-attached-skills"></a>

The set of skills the platform attaches to every agent by default — `display_to_user`, `reason`, `web_search`, `query_knowledge`, `list_files`, and others. Visible on the Layout canvas as a card and in [Skills & Capabilities](/agent-builder/build/skills-and-capabilities.md) as the top of the skill list.

#### PII tokenization <a href="#pii-tokenization" id="pii-tokenization"></a>

Replacing detected personally identifying values — names, account numbers, addresses, and emails — with opaque tokens before content reaches the agent's model, so the model never sees the underlying values. The platform performs this automatically through the tenant's [Masking provider](#masking-provider); the [PII Tokenization](broken://pages/ZryZVAnzLvPXJXz1em2n) page is the *exclusion* list on top of the automatic default. Tokenization is reversed downstream where authorized, so the user sees the original values in responses even if the model didn't.

#### PII <a href="#pii" id="pii"></a>

Short for **personally identifying information**. PII includes data that identifies a person, such as a Social Security number, card number, email address, or phone number.

#### Plan (tab) <a href="#plan-tab" id="plan-tab"></a>

The non-default tab on [The Builder Canvas](/agent-builder/the-canvas.md). Shows the agent's pre-built execution plan when [Execution Plan/Checklist](/agent-builder/build/execution-plan-checklist.md) entries have been configured. Reads `Plan is not available` when none have.

#### Planner <a href="#planner" id="planner"></a>

The part of the agent runtime that decides what skills to call, in what order, for each incoming request. The planner reads the agent's instructions and the user's input, then picks one or more skills from [Skills & Capabilities](/agent-builder/build/skills-and-capabilities.md). When a [Checklist](#checklist) matches the request, the planner follows the checklist's pre-built sequence; otherwise it generates a plan dynamically. Pair this with the [Executor](#executor) entry below.

#### Executor <a href="#executor" id="executor"></a>

The part of the agent runtime that actually invokes the skills the planner chose, passes their results back through the model, and renders the final response. The executor is what the [Execution Model](/agent-builder/build/agent-behavior.md#execution-model) setting selects.

#### Planning Model <a href="#planning-model" id="planning-model"></a>

A dropdown on [Agent Behavior](/agent-builder/build/agent-behavior.md#planning-model) selecting the model used for planning tasks. Can differ from the [Execution Model](/agent-builder/build/agent-behavior.md#execution-model); a common pattern is a heavier model for planning and a lighter model for execution.

#### Preprocessing Pipeline <a href="#preprocessing-pipeline" id="preprocessing-pipeline"></a>

A checkbox in the [Attaching Knowledge to an Agent](/agent-builder/build/attaching-knowledge-to-an-agent.md) flow that runs additional preparation on uploaded content — chunking, OCR for scanned PDFs, and layout-aware extraction — before indexing. Leave off for clean text documents. Turn it on if retrieval quality is poor or the source is scanned.

#### Prompt Sanitization <a href="#prompt-sanitization" id="prompt-sanitization"></a>

A toggle on [Agent Behavior](/agent-builder/build/agent-behavior.md#enable-prompt-sanitization) that, when enabled, detects malicious user prompts — prompt injection and jailbreaks — before they reach the model. Currently shown as `Not Supported` in the example agent's configuration. The gate is not documented in the UI.

#### Platform package <a href="#platform-package" id="platform-package"></a>

An app exported from Qore. Importing a Platform package restores it as exported. Git repositories and projects from other builders are converted into Platform apps.

#### Preview build vs. published build <a href="#preview-build-vs-published-build" id="preview-build-vs-published-build"></a>

An app has a **Preview** build and a **Published** build. Preview is the build you edit in the workspace. Published is the build users see at the live URL. DB Explorer and environment variables can use either scope.

#### Python Code (skill) <a href="#python-code-skill" id="python-code-skill"></a>

A first-party skill type in the Skill Library that lets the agent execute Python code at runtime. Useful for custom logic that fits Python better than JavaScript. Reached from [Adding a skill to the agent](/agent-builder/build/adding-a-skill-to-the-agent.md).

***

### Q

#### query\_knowledge <a href="#query_knowledge" id="query_knowledge"></a>

A pre-attached skill the agent uses to look up information from attached knowledge sources. Without `query_knowledge` attached, the agent can't reach attached knowledge — even if the knowledge has been imported. See [Attaching Knowledge to an Agent](/agent-builder/build/attaching-knowledge-to-an-agent.md).

***

### R

#### reason <a href="#reason" id="reason"></a>

A pre-attached skill the agent uses for reasoning, decision-making, or summarization. See [Skills & Capabilities](/agent-builder/build/skills-and-capabilities.md).

#### Response Mode <a href="#response-mode" id="response-mode"></a>

A dropdown on [Agent Behavior](/agent-builder/build/agent-behavior.md#response-mode) controlling the speed-versus-quality trade-off in responses. Default `Advanced` produces higher-quality but slower responses. Faster modes are available.

***

### S

#### Secret <a href="#secret" id="secret"></a>

An encrypted value — API key, token, or password — stored on [Secrets & Variables](/agent-builder/build/secrets-and-variables.md) and referenced elsewhere as `$secret.{name}`. See also [Variable](#variable).

#### Skill <a href="#skill" id="skill"></a>

A callable capability the agent can invoke at runtime — code, an API, a tool exposed by an MCP server, another agent, or anything cataloged in the skill library. Every skill the agent has appears in [Skills & Capabilities](/agent-builder/build/skills-and-capabilities.md).

#### Skill Library <a href="#skill-library" id="skill-library"></a>

A filter tab in [Adding a skill to the agent](/agent-builder/build/adding-a-skill-to-the-agent.md) that lists first-party skills authored by Uptiq — API Call, JavaScript Code, Python Code, MCP Server, Structured Data Query, and others.

#### SSN <a href="#ssn" id="ssn"></a>

Short for **Social Security number**. `SSN` is a US identity entity type available through the Regex masking provider.

#### Structured Data Query (skill) <a href="#structured-data-query-skill" id="structured-data-query-skill"></a>

A first-party skill type in the Skill Library that lets the agent ask questions of a database in natural language. The platform translates those questions to SQL and runs them. Reached from [Adding a skill to the agent](/agent-builder/build/adding-a-skill-to-the-agent.md).

#### Suggested Changes <a href="#suggested-changes" id="suggested-changes"></a>

AI-generated recommendations produced by [Evals](#evals) after a run completes with failures or a low average score. Suggestions can target instructions, skills, knowledge, or guardrails, and can be applied back to the agent from the run results.

#### Studio <a href="#studio" id="studio"></a>

The Qore surface where you build apps and agents. App Builder is part of Studio.

***

### T

#### Test Case <a href="#test-case" id="test-case"></a>

One evaluation item inside a [dataset](#dataset). In [Evals](/agent-builder/test/evals.md), a test case includes a question, an expected answer, and optional document context or attachments.

#### Toggle Panel <a href="#toggle-panel" id="toggle-panel"></a>

The rectangular split icon in the header strip that hides or shows the [Agent Preview](#agent-preview) pane. See [The Builder Canvas](/agent-builder/the-canvas.md).

#### Trigger <a href="#trigger" id="trigger"></a>

A named condition described in prose that, when met, fires the agent. Each trigger has a Source, Name, and Description. The description is interpreted by a runtime model rather than parsed as a rules expression. See [Triggers](/agent-builder/build/triggers.md).

#### Trigger Source <a href="#trigger-source" id="trigger-source"></a>

A required dropdown on the [Custom Trigger](#custom-trigger) form selecting the kind of event the trigger watches for. `App` is the only source observed in the example agent.

#### Trivy <a href="#trivy" id="trivy"></a>

The scanner that [Security](/app-builder/security-scans.md) uses to find dependency vulnerabilities.

#### Try Agent <a href="#try-agent" id="try-agent"></a>

The green button in the header strip that initiates agent import into the [Agent Preview](#agent-preview) pane. After import, the chat composer becomes active.

***

### U

#### UDG <a href="#udg" id="udg"></a>

Short for **Uptiq Data Gateway**. A managed integration layer that brokers connections to partner services in the [Integrations Hub](/integrations/integrations-hub.md). UDG handles connection infrastructure and provider compatibility for integrations that use [Connect via UDG](#connect-via-udg).

#### Uptiq MCP Marketplace <a href="#uptiq-mcp-marketplace" id="uptiq-mcp-marketplace"></a>

A filter tab in [Adding a skill to the agent](/agent-builder/build/adding-a-skill-to-the-agent.md) that lists MCP-server-backed skills curated by Uptiq. Distinct from the broader third-party `MCP Marketplace` tab.

***

### V

#### Variable <a href="#variable" id="variable"></a>

A non-sensitive value stored on [Secrets & Variables](/agent-builder/build/secrets-and-variables.md) — base URLs, identifiers, and defaults — referenced elsewhere as `$agent.{name}`. See also [Secret](#secret).

#### Vault <a href="#vault" id="vault"></a>

The secure store that maps an original PII value to its opaque token. Authorized downstream steps can restore the original value when needed.

***

### W

#### web\_search <a href="#web_search" id="web_search"></a>

A pre-attached skill the agent uses to retrieve current information from the web. Useful when the agent's training data may be out of date. See [Skills & Capabilities](/agent-builder/build/skills-and-capabilities.md).

#### Whitelisted Domains <a href="#whitelisted-domains" id="whitelisted-domains"></a>

The allowlist on [Whitelisted Domains](/agent-builder/deploy/whitelisted-domains.md) of web origins where the agent's embedded widget is permitted to run. Calls from origins not on the list are refused.

#### Widget Key <a href="#widget-key" id="widget-key"></a>

A key type in [Authentication](/agent-builder/deploy/authentication.md) used by the agent's embedded widget. The widget includes the key in its calls to the platform. The key is scoped to allow the widget to run on the [Whitelisted Domains](#whitelisted-domains).

***

### X

#### x-platform-key <a href="#x-platform-key" id="x-platform-key"></a>

The request header that carries an API key for the App Builder MCP endpoint.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.uptiq.ai/start-here/glossary.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
